Surf your buffers with pokemons.
Add pokemon.kak
to your autoload directory: ~/.config/kak/autoload/
, or source it manually.
- no persistence, yes this is a feature.
- linked list pokemons.
- optionally set/restore cursor location.
It's highly recommended to apply default keybindings with pokemon-keys-map
command which will add following mappings:
map global normal <a-1> ':pokemon-open 1<ret>'
map global normal <a-2> ':pokemon-open 2<ret>'
map global normal <a-3> ':pokemon-open 3<ret>'
map global normal <a-4> ':pokemon-open 4<ret>'
map global normal <a-5> ':pokemon-open 5<ret>'
map global normal <a-6> ':pokemon-open 6<ret>'
map global normal <a-7> ':pokemon-open 7<ret>'
map global normal <a-8> ':pokemon-open 8<ret>'
map global normal <a-9> ':pokemon-open 9<ret>'
map global normal <a-0> ':pokemon-open<ret>' -docstring 'open last pinned one'
Index mappings are self adjusted (not fixed). Let say 3 buffers named A, B, C
were pinned to the list so buffer A
can be accessed by <a-1>
, buffer B
by <a-2>
, and so on. Dropping buffer B
makes <a-2>
access buffer C
and <a-3>
becomes no-op.
Use pokemon-pin
command directly or map it to your liking. Following is just example mappings:
map global normal <a-y> ':pokemon-pin prompt<ret>' -docstring 'prompt before pin; enter user mode afterwards'
map global normal <a-Y> ':pokemon-pin<ret>' -docstring 'pin without prompt; enter user mode afterwards'
pokemon-pin
: pin current buffer and enter user modepokemon-drop
: drop pokemon by index or current one if index is omittedpokemon-open
: open pokemon by index or last pinned one if index is omittedpokemon-prev
: goto previous pokemon if available in the current contextpokemon-next
: goto next pokemon if available in the current contextpokemon-list
: list all pokemons in the*pokemons*
bufferpokemon-keys-map
: map default keybindingspokemon-user-mode-disable
: don't show user mode afterpokemon-pin
commandpokemon-user-mode-enable
: show user mode afterpokemon-pin
command