X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/46c859c8a10b9f420cc73087182f0c9a6b272f71..44ac1f42e98063e8148d1a67ed22dca86af79380:/README.md?ds=inline diff --git a/README.md b/README.md index 8389667..894037a 100644 --- a/README.md +++ b/README.md @@ -113,17 +113,25 @@ The following work on normal and visual modes: Known limitation: does not work for links that span multiple lines. -- `]]`: go to next header. `(Markdown_MoveToNextHeader)` +- `]]`: go to next header. `Markdown_MoveToNextHeader` -- `[[`: go to previous header. Contrast with `]c`. `(Markdown_MoveToPreviousHeader)` +- `[[`: go to previous header. Contrast with `]c`. `Markdown_MoveToPreviousHeader` -- `][`: go to next sibling header if any. `(Markdown_MoveToNextSiblingHeader)` +- `][`: go to next sibling header if any. `Markdown_MoveToNextSiblingHeader` -- `[]`: go to previous sibling header if any. `(Markdown_MoveToPreviousSiblingHeader)` +- `[]`: go to previous sibling header if any. `Markdown_MoveToPreviousSiblingHeader` -- `]c`: go to Current header. `(Markdown_MoveToCurHeader)` +- `]c`: go to Current header. `Markdown_MoveToCurHeader` -- `]u`: go to parent header (Up). `(Markdown_MoveToParentHeader)` +- `]u`: go to parent header (Up). `Markdown_MoveToParentHeader` + +This plugging follows the recommended Vim plugin mapping interface, so if you want to change the map `]u` to `asdf`, add to your `.vimrc`: + + map asdf Markdown_MoveToParentHeader + +To disable a map, use: + + map Markdown_MoveToParentHeader ## Commands