We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm a long time emacs user and I'm used to split window with C-x 3 (vertical) and C-x 2 (horizontal). Right now this config doesn't work:
C-x 3
C-x 2
"C-x" = { "3" = "vsplit", "2" = "hsplit", "0" = "wclose" }
this is my setup for neovim:
local map = function(mode, key, cmd, opts) vim.api.nvim_set_keymap(mode, key, cmd, opts or { noremap = true, silent = true }) end map('n', '<C-x>0', '<C-w>q') map('n', '<C-x>2', '<C-w>s') map('n', '<C-x>3', '<C-w>v')
I know numbers are reserved for movements but being inspired by vim, I can't see why helix shouldn't be able to do the same.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I'm a long time emacs user and I'm used to split window with
C-x 3
(vertical) andC-x 2
(horizontal).Right now this config doesn't work:
this is my setup for neovim:
I know numbers are reserved for movements but being inspired by vim, I can't see why helix shouldn't be able to do the same.
The text was updated successfully, but these errors were encountered: