Replies: 2 comments 5 replies
-
Surely it is hassle to have to create a mapping to call a native function, as is current win-vind. About first ideaThe first is very cool and unique. About second ideaThe expression enmap ff <shift-f><<ctrl-s>><<shift-f>> An alternative is to have such feature in the command itself, as in Vim. For example. enmap gg <move_cursor_down>
enmap <num>G gg<num>j
" <num>G -> <move_cursor_down><num><move_cursor_down> ennoremap gg <move_cursor_down>
ennoremap <num>G gg<num>j
" <num>G -> <jump_caret_to_BOF><num><move_cursor_down> However, in this case, this is a major version change because the current Please give me your opinion. |
Beta Was this translation helpful? Give feedback.
-
I posted #104 |
Beta Was this translation helpful? Give feedback.
-
I think that would be a cool idea to add a way of calling the functions with a macro
For example:
enmap <num>gg <jump_caret_to_BOF><num><move_cursor_down>
Or better:
enmap <num>gg <gg><num><j>
I really love this project!
Beta Was this translation helpful? Give feedback.
All reactions