diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-11-05 21:56:06 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-11-09 12:02:10 +0530 |
| commit | 73a9be025659a9b36a9284e160a9aee995db5314 (patch) | |
| tree | 8b6caa34e2f4795e09779ff006b1e182d7ecde8d /autoload/marks.kak | |
| parent | 17b59f5ed7acac5dc852c831e1650daac7f169d7 (diff) | |
| download | kakoune-config-73a9be025659a9b36a9284e160a9aee995db5314.tar.gz kakoune-config-73a9be025659a9b36a9284e160a9aee995db5314.zip | |
Add some buffer keys and buffers-show command
Diffstat (limited to '')
| -rw-r--r-- | autoload/marks.kak | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/autoload/marks.kak b/autoload/marks.kak index 43e7126..2f58c22 100644 --- a/autoload/marks.kak +++ b/autoload/marks.kak @@ -38,8 +38,8 @@ define-command marks-switch -params 1 %{ } declare-user-mode marks -map global user a ':enter-user-mode-with-count marks<ret>' -docstring 'Marks mode' -map global user <space> ':marks-switch %val{count}<ret>' -docstring 'Switch marks' -map global marks a ':marks-add %val{buffile} %opt{user_mode_count}<ret>' -docstring 'Create new mark from buffer' -map global marks d ':marks-delete %val{buffile}<ret>' -docstring 'Delete mark' -map global marks C ':marks-clear<ret>' -docstring 'Clear mark' +map global user a ': enter-user-mode-with-count marks<ret>' -docstring 'Marks mode' +map global user <space> ': marks-switch %val{count}<ret>' -docstring 'Switch marks' +map global marks a ': marks-add %val{buffile} %opt{user_mode_count}<ret>' -docstring 'Create new mark from buffer' +map global marks d ': marks-delete %val{buffile}<ret>' -docstring 'Delete mark' +map global marks C ': marks-clear<ret>' -docstring 'Clear mark' |
