= Commands Some commands take an exclamation mark (*!*), which can be used to force the execution of the command (i.e. to quit a modified buffer, the command *q!* has to be used). Aliases are mentionned below each commands. *doc* :: *alias* help + display documentation about a topic. The completion list displays the available topics == Files and Buffers For the following *write* commands, the *-sync* switch forces the synchronization of the file onto the filesystem *change-directory* []:: *alias* cd + change the current directory to *directory*, or the home directory if unspecified *edit[!]* [] [ []]:: *alias* e + open buffer on file, go to given line and column. If file is already opened, just switch to this file. Use edit! to force reloading *-debug*::: The new buffer (if any) will be created as a debug buffer. (See <>) *-existing*::: If the named file does not exist, fail instead of creating a new buffer. *-readonly*::: The new buffer (if any) will be set read-only. *-fifo* ::: Creates a new scratch buffer named , and continually appends data from the fifo (named pipe) as it arrives. (See <>) *-scratch*::: Creates a new buffer named , which doesn't correspond to any file on disk. (See <>) *-scroll*::: If used with `-fifo`, when new data arrives Kakoune will scroll the buffer down to make the new data visible. Otherwise, does nothing. *write[!]* [-sync] []:: *alias* w + write buffer to or use its name if filename is not given. If the file is write-protected, its permissions are temporarily changed to allow saving the buffer and restored afterwards when the write! command is used. *write-all* [-sync]:: *alias* wa + write all changed buffers that are associated to a file *quit[!]* []:: *alias* q + exit Kakoune, use quit! to force quitting even if there is some unsaved buffers remaining. If specified, the client exit status will be set to *write-quit[!]* [-sync] []:: *alias* wq + write current buffer and quit current client. If specified, the client exit status will be set to *write-all-quit* [-sync] []:: *alias* waq + write all buffers and quit. If specified, the client exit status will be set to *buffer* :: *alias* b + switch to buffer *buffer-next*:: *alias* bn + switch to the next buffer. Debug buffers are skipped. (See <>) *buffer-prev*:: *alias* bp + switch to the previous buffer. Debug buffers are skipped. (See <>) *delete-buffer[!]* []:: *alias* db + delete current buffer or the buffer if specified *rename-buffer* :: set current buffer name *source* ...:: execute commands in parameters are available in the sourced script as `%arg{0}`, `%arg{1}`, … == Clients and Sessions *rename-client* :: *alias* nc + set current client name *rename-session* :: set current session name *kill[!]* []:: terminate the current session, all the clients as well as the server. If specified, the server and clients exit status will be set to == Options *declare-option* [] []:: *alias* decl + declare a new option, the -hidden switch hides the option in completion suggestions (See <>) *set-option* [] :: *alias* set + change the value of an option in *scope* (See <> and <>) *unset-option* :: *alias* unset + unset the value of an option in *scope*, so the value from an outer scope is used (See <> and <>) *update-option* :: update the value of an option if its type supports that operation (See <> and <>) == Commands and Keys *define-command* [] :: *alias* def + define a new command (See <>) *alias* :: define a new alias named *name* in *scope* (See <>) *unalias* []:: remove an alias if its current value is the same as the one passed as an optional parameter, remove it unconditionally otherwise (See <>) *evaluate-commands* [] ...:: *alias* eval + evaluate commands, as if they were entered in the command prompt (See <>) *execute-keys* [] ...:: *alias* exec + execute a series of keys, as if they were hit (See <>) *map* [] :: bind a list of keys to a combination (See <> and <>) *unmap* []:: unbind a key combination (See <> and <>) *declare-user-mode* :: declare a new user keymap mode *enter-user-mode* [] :: enable keymap mode for next key *-lock*::: stay in mode until `` is pressed == Hooks *hook* [-group ] :: execute *command* whenever an *hook_name* is triggered in *scope* (See <> and <>) *remove-hooks* :: *alias* rmhooks + remove every hooks in *scope* that are part of the given *group* (See <> and <>) == Display *echo* [] :: show *text* in status line, with the following *switches*: *-markup*::: expand the markup strings in *text* (See <>) *-debug*::: print the given text to the *\*debug** buffer *-to-file* ::: write the given text to the given file on the host filesystem. *set-face* :: *alias* face + define a face in *scope* (See <> and <>) *unset-face* :: Remove a face definition from *scope* (See <> and <>) *colorscheme* :: load named colorscheme *add-highlighter* ...:: *alias* addhl + add a highlighter to the current window (See <>) *remove-highlighter* :: *alias* rmhl + remove the highlighter whose id is *highlighter_id* (See <>) == Helpers Kakoune provides some helper commands that can be used to define composite commands in scripts. They are also available in the interactive mode, but not really useful in that context. *prompt* [] :: prompt the user for a string, when the user validates, executes the command. The entered text is available in the `text` value accessible through `$kak_text` in shells or `%val{text}` in commands. The *-init * switch allows setting initial content, the *-password* switch hides the entered text and clears the register after command execution. The *-on-change* and *-on-abort* switches, followed by a command will have this command executed whenever the prompt content changes or the prompt is aborted, respectively. Completion support can be controlled with the same switches provided by the *define-command* command, see <>. For *-shell-script-completions* and *-shell-script-candidates* completions, token_to_complete will always be 1, and the full prompt content will be passed as a single token. In other words, word splitting does not take place. *on-key* :: wait for next key from user, then execute , the key is available through the `key` value, accessible through `$kak_key` in shells, or `%val{key}` in commands. *menu* [] ...:: display a menu using labels, the selected label’s commands are executed. The *menu* command can take an *-auto-single* argument, to automatically run commands when only one choice is provided, and a *-select-cmds* argument, in which case menu takes three argument per item, the last one being a command to execute when the item is selected (but not validated) *info* [] :: display text in an information box with the following *switches*: *-anchor* .::: print the text at the given coordinates *-placement* {above,below}::: set the placement relative to the anchor *-title* ::: set the title of the message box *try* [catch ]...:: prevent an error in *commands* from aborting the whole command execution, execute *on_error_commands* instead. If nothing is to be done on error, the catch part can be omitted. If an error is raised in the *on_error_commands*, that error is propagated, except if another *catch* and *on_error_commands* parameter follows, in which case those commands get executed, and so-on. During error commands, the description of the last raised error is available as `$kak_error` in the shell, or `%val{error}` in commands. *nop*:: does nothing, but arguments will be evaluated (e.g. shell expansion) *fail* :: raise an error, uses as its description *set-register* ...:: *alias* reg + set register *name* to *content*, each content parameter is assigned to a different string in the register. (See <>) *select* .,....:: replace the current selections with the ones described in the arguments *debug* {info,buffers,options,memory,shared-strings,profile-hash-maps,faces,mappings}:: print some debug information in the *\*debug** buffer == Multiple commands Commands (c.f. previous sections) can be chained, by being separated either by new lines or by semicolons, as such a semicolon must be escaped with a backslash (\;) to be considered as a literal semicolon argument == Declaring new commands New commands can be defined using the *define-command* command: *define-command* [] :: *commands* is a string containing the commands to execute, and *switches* can be any combination of the following parameters: *-params* ::: the command accepts a *num* parameter, which can be either a number, or of the form .., with both and omittable *-file-completion*::: try file completion on any parameter passed to this command *-client-completion*::: try client name completion on any parameter passed to this command *-buffer-completion*::: try buffer name completion on any parameter passed to this command *-command-completion*::: try command completion on any parameter passed to this command *-shell-completion*::: try shell command completion on any parameter passed to this command *-shell-script-completion*::: following string is a shell command which takes parameters as positional params and output one completion candidate per line. The provided shell command will run after each keypress during the executing of the shell command, the following env vars are available: - *kak_token_to_complete*:::: Index of the token being completed in the command line. - *kak_pos_in_token*:::: Position of the cursor inside the token being completed, in bytes from token start. *-shell-script-candidates*::: following string is a shell command which takes parameters as positional params and output one completion candidate per line. The provided shell command will run once at the beginning of each completion session, candidates are cached and then used by kakoune internal fuzzy engine during the executing of the shell command, the following env vars are available: - *kak_token_to_complete*:::: Index of the token being completed in the command line. *-override*::: allow the new command to replace an existing one with the same name *-hidden*::: do not show the command in command name completions *-docstring*::: define the documentation string for the command Using shell expansion allows defining complex commands or accessing Kakoune's state: -------------------------------------------------------- def " print_selection %{ echo %sh{ ${kak_selection} } }" --------------------------------------------------------