Soft wrap navigation into wrapped line #32814
samvv
started this conversation in
Ideas From Vim
Replies: 1 comment 1 reply
-
{
"context": "VimControl && !menu",
"bindings": {
"g k": "vim::Up",
"g j": "vim::Down",
"j": ["vim::Down", { "display_lines": true }],
"k": ["vim::Up", { "display_lines": true }],
}
}But I prefer the style of lazyvim {
"context": "VimControl && !menu",
"bindings": {
"j": ["vim::Down", { "display_lines": true }],
"k": ["vim::Up", { "display_lines": true }]
}
},
{
"context": "VimControl && !menu && VimCount",
"bindings": {
"j": "vim::Down",
"k": "vim::Up"
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I have the following defined in my
init.luafor Neovim:It allows me to treat every soft-wrapped line like an actual line I can go into.
I really like this feature when editing prose. Is there any equivalent in Zed?
Beta Was this translation helpful? Give feedback.
All reactions