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> |
Or do I want inoremap
? I guess, yeah.
For insert-mode, inoremap
is the one you want, yeah 👍. I haven't used noremap!
myself, but it's apparently for both insert and command-line, and in your case, command-line doesn't matter.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Many thanks, this helped me achieve my goal (I know nothing about plugins and vimscript so far). To work exactly like in vim-latex (where you can trigger these while in insert mode), I had to add two lines that look like the
snoremap
ones but start withnoremap!
instead. Hope I did that right