Last active
October 18, 2024 08:36
-
-
Save AndrewRadev/6feb32a3f5441bd881c140eb3874331f to your computer and use it in GitHub Desktop.
Jump to placeholders with <c-j> and <c-k>
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Install by saving as plugin/placeholder_jump.vim in your config files. | |
" | |
" Search for <+text+>, <+other text+>, <++> etc, and enter select mode on top | |
" of the placeholders. | |
let s:placeholder_pattern = '<+.\{-}+>' | |
function! s:Next() abort | |
if search(s:placeholder_pattern) | |
exe "normal! va<o\<c-g>" | |
endif | |
endfunction | |
function! s:Prev() abort | |
if search(s:placeholder_pattern, 'b') | |
exe "normal! va<o\<c-g>" | |
endif | |
endfunction | |
nnoremap <c-j> :call <SID>Next()<cr> | |
snoremap <c-j> <esc>:call <SID>Next()<cr> | |
nnoremap <c-k> :call <SID>Prev()<cr> | |
snoremap <c-k> <esc>:call <SID>Prev()<cr> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For insert-mode,
inoremap
is the one you want, yeah 👍. I haven't usednoremap!
myself, but it's apparently for both insert and command-line, and in your case, command-line doesn't matter.