
kak
List of commands for kak:
-
kak:tldr:03bc1 kak: Open a file and enter normal mode, to execute commands.$ kak ${filename}try on your machineexplain this command
-
kak:tldr:297ae kak: Escape insert mode, to go back to normal mode.$try on your machineexplain this command
-
kak:tldr:39971 kak: Replace all instances of "foo" in the current file with "bar".$ %s${foo}
c${bar} try on your machineexplain this command -
kak:tldr:865c0 kak: Enter insert mode from normal mode, to write text into the file.$ itry on your machineexplain this command
-
kak:tldr:8de95 kak: Unselect all secondary selections, and keep only the main one.$try on your machineexplain this command
-
kak:tldr:f71d3 kak: Search for numbers and select the first two.$ /\d+
N try on your machineexplain this command -
kak:tldr:f75d5 kak: Insert the contents of a file.$ !cat ${filename}try on your machineexplain this command