]> git.madduck.net Git - etc/vim.git/commitdiff

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Merge pull request #141 from blueyed/use-noremap
authorCiro Santilli <ciro.santilli@gmail.com>
Fri, 21 Nov 2014 08:25:04 +0000 (00:25 -0800)
committerCiro Santilli <ciro.santilli@gmail.com>
Fri, 21 Nov 2014 08:25:04 +0000 (00:25 -0800)
Use `noremap` for mappings

ftplugin/mkd.vim

index 312c2a4d92910adb5d7cbeb1fd4cb32a895b7079..916e47f3ec390d519d450a13ea199c34bdfb04f1 100644 (file)
@@ -421,19 +421,19 @@ call <sid>MapNormVis('<Plug>(Markdown_MoveToParentHeader)', '<sid>Markdown_MoveT
 call <sid>MapNormVis('<Plug>(Markdown_MoveToCurHeader)', '<sid>Markdown_MoveToCurHeader')
 
 if !get(g:, 'vim_markdown_no_default_key_mappings', 0)
-    nmap <buffer> ]] <Plug>(Markdown_MoveToNextHeader)
-    nmap <buffer> [[ <Plug>(Markdown_MoveToPreviousHeader)
-    nmap <buffer> ][ <Plug>(Markdown_MoveToNextSiblingHeader)
-    nmap <buffer> [] <Plug>(Markdown_MoveToPreviousSiblingHeader)
-    nmap <buffer> ]u <Plug>(Markdown_MoveToParentHeader)
-    nmap <buffer> ]c <Plug>(Markdown_MoveToCurHeader)
+    nnoremap <buffer> ]] <Plug>(Markdown_MoveToNextHeader)
+    nnoremap <buffer> [[ <Plug>(Markdown_MoveToPreviousHeader)
+    nnoremap <buffer> ][ <Plug>(Markdown_MoveToNextSiblingHeader)
+    nnoremap <buffer> [] <Plug>(Markdown_MoveToPreviousSiblingHeader)
+    nnoremap <buffer> ]u <Plug>(Markdown_MoveToParentHeader)
+    nnoremap <buffer> ]c <Plug>(Markdown_MoveToCurHeader)
 
-    vmap <buffer> ]] <Plug>(Markdown_MoveToNextHeader)
-    vmap <buffer> [[ <Plug>(Markdown_MoveToPreviousHeader)
-    vmap <buffer> ][ <Plug>(Markdown_MoveToNextSiblingHeader)
-    vmap <buffer> [] <Plug>(Markdown_MoveToPreviousSiblingHeader)
-    vmap <buffer> ]u <Plug>(Markdown_MoveToParentHeader)
-    vmap <buffer> ]c <Plug>(Markdown_MoveToCurHeader)
+    vnoremap <buffer> ]] <Plug>(Markdown_MoveToNextHeader)
+    vnoremap <buffer> [[ <Plug>(Markdown_MoveToPreviousHeader)
+    vnoremap <buffer> ][ <Plug>(Markdown_MoveToNextSiblingHeader)
+    vnoremap <buffer> [] <Plug>(Markdown_MoveToPreviousSiblingHeader)
+    vnoremap <buffer> ]u <Plug>(Markdown_MoveToParentHeader)
+    vnoremap <buffer> ]c <Plug>(Markdown_MoveToCurHeader)
 endif
 
 command! -buffer -range=% HeaderDecrease call s:HeaderDecrease(<line1>, <line2>)