aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>