aboutsummaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-06 20:04:12 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-06 20:04:12 +1300
commitf694ce70af82c06e58f233ad5890c39067185903 (patch)
tree1426fc116fc422cc6aaf53a59d2cfa177f91b883 /plugin
parentUnfold excessive :execute loop (diff)
downloadvim-nextag-f694ce70af82c06e58f233ad5890c39067185903.tar.gz
vim-nextag-f694ce70af82c06e58f233ad5890c39067185903.zip
Use non-interpolating single quotes in remaps
Diffstat (limited to 'plugin')
-rw-r--r--plugin/nextag.vim12
1 files changed, 6 insertions, 6 deletions
diff --git a/plugin/nextag.vim b/plugin/nextag.vim
index 973bec5..2523204 100644
--- a/plugin/nextag.vim
+++ b/plugin/nextag.vim
@@ -39,9 +39,9 @@ endfunction
"
" Default remappings.
"
-nmap <silent> <leader>. :<C-U>call <SID>MoveToSGMLTag("next", "n", v:count1)<CR>
-nmap <silent> <leader>, :<C-U>call <SID>MoveToSGMLTag("prev", "n", v:count1)<CR>
-omap <silent> <leader>. :<C-U>call <SID>MoveToSGMLTag("next", "o", v:count1)<CR>
-omap <silent> <leader>, :<C-U>call <SID>MoveToSGMLTag("prev", "o", v:count1)<CR>
-vmap <silent> <leader>. :<C-U>call <SID>MoveToSGMLTag("next", "v", v:count1)<CR>
-vmap <silent> <leader>, :<C-U>call <SID>MoveToSGMLTag("prev", "v", v:count1)<CR>
+nmap <silent> <leader>. :<C-U>call <SID>MoveToSGMLTag('next', 'n', v:count1)<CR>
+nmap <silent> <leader>, :<C-U>call <SID>MoveToSGMLTag('prev', 'n', v:count1)<CR>
+omap <silent> <leader>. :<C-U>call <SID>MoveToSGMLTag('next', 'o', v:count1)<CR>
+omap <silent> <leader>, :<C-U>call <SID>MoveToSGMLTag('prev', 'o', v:count1)<CR>
+vmap <silent> <leader>. :<C-U>call <SID>MoveToSGMLTag('next', 'v', v:count1)<CR>
+vmap <silent> <leader>, :<C-U>call <SID>MoveToSGMLTag('prev', 'v', v:count1)<CR>