aboutsummaryrefslogtreecommitdiff
path: root/plugin/nextag.vim
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/nextag.vim')
-rw-r--r--plugin/nextag.vim24
1 files changed, 18 insertions, 6 deletions
diff --git a/plugin/nextag.vim b/plugin/nextag.vim
index ad503c1..eb543c6 100644
--- a/plugin/nextag.vim
+++ b/plugin/nextag.vim
@@ -39,9 +39,21 @@ endfunction
"
" Default remappings.
"
-nnoremap <silent> <leader>. :<C-U>call <SID>MoveToSGMLTag('next', 'n', v:count1)<CR>
-nnoremap <silent> <leader>, :<C-U>call <SID>MoveToSGMLTag('prev', 'n', v:count1)<CR>
-onoremap <silent> <leader>. :<C-U>call <SID>MoveToSGMLTag('next', 'o', v:count1)<CR>
-onoremap <silent> <leader>, :<C-U>call <SID>MoveToSGMLTag('prev', 'o', v:count1)<CR>
-vnoremap <silent> <leader>. :<C-U>call <SID>MoveToSGMLTag('next', 'v', v:count1)<CR>
-vnoremap <silent> <leader>, :<C-U>call <SID>MoveToSGMLTag('prev', 'v', v:count1)<CR>
+nnoremap <silent>
+ \ <leader>.
+ \ :<C-U>call <SID>MoveToSGMLTag('next', 'n', v:count1)<CR>
+nnoremap <silent>
+ \ <leader>,
+ \ :<C-U>call <SID>MoveToSGMLTag('prev', 'n', v:count1)<CR>
+onoremap <silent>
+ \ <leader>.
+ \ :<C-U>call <SID>MoveToSGMLTag('next', 'o', v:count1)<CR>
+onoremap <silent>
+ \ <leader>,
+ \ :<C-U>call <SID>MoveToSGMLTag('prev', 'o', v:count1)<CR>
+vnoremap <silent>
+ \ <leader>.
+ \ :<C-U>call <SID>MoveToSGMLTag('next', 'v', v:count1)<CR>
+vnoremap <silent>
+ \ <leader>,
+ \ :<C-U>call <SID>MoveToSGMLTag('prev', 'v', v:count1)<CR>