diff --git a/README.md b/README.md index 09613b704..03879b728 100644 --- a/README.md +++ b/README.md @@ -257,6 +257,26 @@ Custom remappings are defined on a per-mode basis. ] ``` +* Bind `m` to add a bookmark and `b` to open the list of all bookmarks (using the [Bookmarks](https://github.com/alefragnani/vscode-bookmarks) extension): + * *Note:* `"commands": [ "cmd" ]` is equivalent to `"commands": [ { "command": "cmd", "args": [] } ]`. + +```json + "vim.normalModeKeyBindingsNonRecursive": [ + { + "before": ["", "m"], + "commands": [ + "bookmarks.toggle" + ] + }, + { + "before": ["", "b"], + "commands": [ + "bookmarks.list" + ] + } + ] +``` + * Bind `ZZ` to the vim command `:wq` (save and close the current file): ```json