kakoune/README.asciidoc

1247 lines
47 KiB
Plaintext
Raw Normal View History

= image:{logo}[K,30,30] Kakoune image:{travis-img}[link="{travis-url}"]
:logo: https://rawgit.com/mawww/kakoune/master/doc/kakoune_logo.svg
:travis-img: https://travis-ci.org/mawww/kakoune.svg?branch=master
:travis-url: https://travis-ci.org/mawww/kakoune
2015-04-03 19:42:12 +02:00
:icons: font
:toc: right
2011-11-04 10:09:27 +01:00
TL;DR
-----
2014-10-06 21:23:56 +02:00
*Vim inspired* -- *Faster as in less keystrokes* --
*Multiple selections* -- *Orthogonal design*
2014-07-31 01:08:00 +02:00
---------------------------------------------
git clone http://github.com/mawww/kakoune.git
cd kakoune/src
make
make userconfig
./kak
2014-07-31 01:08:00 +02:00
---------------------------------------------
See http://github.com/mawww/golf for kakoune solutions to vimgolf challenges,
regularly beating the best vim solution.
:numbered:
Introduction
------------
2011-11-04 10:09:27 +01:00
2014-01-28 14:53:44 +01:00
Kakoune is a code editor heavily inspired by Vim, as such most of it's
2011-11-04 10:09:27 +01:00
commands are similar to vi's ones.
Kakoune can operate in two modes, normal and insertion. In insertion mode,
keys are directly inserted into the current buffer. In normal mode, keys
are used to manipulate the current selection and to enter insertion mode.
2014-01-28 14:53:44 +01:00
Kakoune has a strong focus on interactivity, most commands provide immediate
and incremental results, while still being competitive (as in keystroke count)
with Vim.
Kakoune works on selections, which are oriented, inclusive range of characters,
selections have an anchor and a cursor character. Most commands move both of
them, except when extending selection where the anchor character stays fixed
and the cursor one moves around.
2011-11-04 10:09:27 +01:00
2013-12-26 12:59:30 +01:00
see http://vimeo.com/82711574
Join us on freenode IRC `#Kakoune`
2014-01-03 21:17:33 +01:00
2013-12-31 20:40:09 +01:00
Features
2015-04-03 19:42:12 +02:00
~~~~~~~~
2013-12-31 20:40:09 +01:00
2014-03-23 21:35:11 +01:00
* Multiple selections as a central way of interacting
2013-12-31 20:40:09 +01:00
* Powerful selection manipulation primitives
- Select all regex matches in current selections
2014-01-28 14:53:44 +01:00
- Keep selections containing/not containing a match for a given regex
2013-12-31 20:40:09 +01:00
- Split current selections with a regex
- Text objects (paragraph, sentence, nestable blocks)
* Powerful text manipulation primitives
- Align selections
- Rotate selection contents
- Case manipulation
- Indentation
- Piping each selection to external filter
* Client-Server architecture
- Multiple clients on the same editing session
- Use tmux or your X11 window manager to manage windows
2013-12-31 20:40:09 +01:00
* Simple interaction with external programs
2014-01-28 14:53:44 +01:00
* Automatic contextual help
* Automatic as you type completion
2013-12-31 20:40:09 +01:00
* Macros
* Hooks
* Syntax Highlighting
- Supports multiple languages in the same buffer
- Highlight a buffer differently in different windows
2013-12-31 20:40:09 +01:00
2015-05-07 01:34:50 +02:00
Screenshots
~~~~~~~~~~~
2015-05-07 01:34:50 +02:00
[[screenshow-i3]]
.Kakoune in i3
image::doc/screenshot-i3.gif[Kakoune in i3]
[[screenshot-tmux]]
.Kakoune in tmux
image::doc/screenshot-tmux.gif[Kakoune in tmux]
2015-04-03 19:42:12 +02:00
Getting started
---------------
2011-11-04 15:05:05 +01:00
Building
2015-04-03 19:42:12 +02:00
~~~~~~~~
2011-11-04 15:05:05 +01:00
Kakoune dependencies are:
2011-11-04 15:28:29 +01:00
2015-05-26 20:05:54 +02:00
* A C++11 compliant compiler (GCC >= 4.8 or clang >= 3.4)
* boost (>= 1.50)
* ncurses with wide-characters support (>= 5.3, generally refered as libncursesw)
2011-11-04 15:05:05 +01:00
To build, just type *make* in the src directory
2011-11-04 10:09:27 +01:00
2013-12-31 20:40:09 +01:00
Kakoune can be built on Linux, MacOS, and Cygwin. Due to Kakoune relying heavily
on being in an Unix like environment, no native Windows version is planned.
2013-01-04 18:32:26 +01:00
To setup a basic configuration on your account, type *make userconfig* in the
src directory, this will setup an initial $XDG_CONFIG_HOME/kak directory. See
the _Kakrc_ section for more information.
2013-12-23 22:41:42 +01:00
Installing
2015-04-03 19:42:12 +02:00
~~~~~~~~~~
2013-12-23 22:41:42 +01:00
In order to install kak on your system, rather than running it directly from
it's source directory, type *make install*, you can specify the `PREFIX` and
`DESTDIR` if needed.
2013-12-23 22:41:42 +01:00
Note that by default, no script files will be read if you do not add links
to them in $XDG_CONFIG_HOME/kak/autoload. Available script files will be
installed in $PREFIX/share/kak/rc
If you want to enable all files, set $XDG_CONFIG_HOME/kak/autoload to be
a symbolic link to the $PREFIX/share/kak/rc directory.
----------------------------------------------
ln -s /usr/share/kak/rc ~/.config/kak/autoload
----------------------------------------------
2015-04-03 19:42:12 +02:00
[TIP]
.Homebrew (OSX)
====
-----------------------------------------------------------------------------------------------
brew install --HEAD https://raw.githubusercontent.com/mawww/kakoune/homebrew/contrib/kakoune.rb
-----------------------------------------------------------------------------------------------
2015-04-03 19:42:12 +02:00
====
2015-04-03 19:42:12 +02:00
[TIP]
.Fedora 20/21/22/Rawhide & Epel 7
====
2015-03-31 16:29:50 +02:00
Use the https://copr.fedoraproject.org/coprs/jkonecny/kakoune/[copr] repository.
---------------------------------
dnf copr enable jkonecny/kakoune
dnf install kakoune
---------------------------------
2015-04-03 19:42:12 +02:00
====
2015-04-03 19:42:12 +02:00
[TIP]
.Arch Linux
====
2015-03-31 16:29:50 +02:00
A PKGBUILD https://aur.archlinux.org/packages/kakoune-git[kakoune-git]
to install Kakoune is available in the https://wiki.archlinux.org/index.php/Arch_User_Repository[AUR].
2015-03-30 20:13:04 +02:00
--------------------------------
2015-03-31 16:29:50 +02:00
# For example build and install Kakoune via yaourt
2015-03-30 20:13:04 +02:00
yaourt -Sy kakoune-git
--------------------------------
2015-04-03 19:42:12 +02:00
====
2015-03-30 20:13:04 +02:00
2015-04-03 19:42:12 +02:00
[TIP]
.Exherbo
====
--------------------------------
cave resolve -x repository/mawww
cave resolve -x kakoune
--------------------------------
2015-04-03 19:42:12 +02:00
====
Running
2015-04-03 19:42:12 +02:00
~~~~~~~
Just running *kak* launch a new kak session with a client on local terminal.
*kak* accepts some switches:
* `-c <session>`: connect to given session, sessions are unix sockets
`/tmp/kak-<session>`
* `-e <commands>`: execute commands on startup
* `-n`: ignore kakrc file
* `-s <session>`: set the session name, by default it will be the pid
2013-09-19 20:54:17 +02:00
of the initial kak process.
* `-d`: run Kakoune in daemon mode, without user interface. This requires
the session name to be specified with -s. In this mode, the Kakoune
server will keep running even if there is no connected client, and
will quit when receiving SIGTERM.
* `-p <session>`: read stdin, and then send its content to the given session
2014-03-30 12:13:13 +02:00
acting as a remote control.
* `-f <keys>`: Work as a filter, read every file given on the command line
2014-08-17 19:06:06 +02:00
and stdin if piped in, and apply given keys on each.
At startup, if `-n` is not specified, Kakoune will try to source the file
2013-12-23 22:41:42 +01:00
../share/kak/kakrc relative to the kak binary. This kak file will then try
to source any files in $XDG_CONFIG_HOME/kak/autoload (with $XDG_CONFIG_HOME
defaulting to $HOME/.config), and finally $XDG_CONFIG_HOME/kak/kakrc.
2013-12-23 22:41:42 +01:00
The common pattern is to add links to $XDG_CONFIG_HOME/kak/autoload to the
scripts in $PREFIX/share/kak/rc that the user wants sourced at kak launch.
2015-04-03 19:42:12 +02:00
Basic Interaction
-----------------
Selections
~~~~~~~~~~
The main concept in Kakoune is the selection. A selection is an inclusive,
directed range of character. A selection has two ends, the anchor and the
cursor.
There is always at least one selection, and a selection is always at least
one character (in which case the anchor and cursor of the selections are
on the same character).
Normal Mode
~~~~~~~~~~~
In normal mode, keys are not inserted directly inside the buffer, but are editing
commands. These commands provides ways to manipulate either the selections themselves,
or the selected text.
Insert Mode
~~~~~~~~~~~
When entering insert mode, keys are now directly inserted before each selections
cursor. A few additional keys are supported, like arrow keys to move around, however
their use is not encouraged. You can go back to normal mode by pressing the `<esc>`
2015-04-03 19:42:12 +02:00
key.
Movement
~~~~~~~~
2011-11-04 10:09:27 +01:00
* `h`: select the character on the right of selection end
* `j`: select the character below the selection end
* `k`: select the character above the selection end
* `l`: select the character on the left of selection end
2011-11-04 10:09:27 +01:00
* `w`: select the word and following whitespaces on the right of selection end
* `b`: select preceding whitespaces and the word on the left of selection end
* `e`: select preceding whitespaces and the word on the right of selection end
* `alt-[wbe]`: same as [wbe] but select WORD instead of word
2011-11-04 10:09:27 +01:00
* `x`: select line on which selection end lies (or next line when end lies on
2011-11-22 15:32:05 +01:00
an end-of-line)
* `alt-x`: expand selections to contain full lines (including end-of-lines)
* `alt-X`: trim selections to only contain full lines (not including last
2013-04-16 14:30:11 +02:00
end-of-line)
2011-11-22 15:32:05 +01:00
* `%`: select whole buffer
2011-11-04 10:09:27 +01:00
* `alt-H`: select to line begin
* `alt-L`: select to line end
2011-11-04 10:09:27 +01:00
* `/`: search (select next match)
* `?`: search (extend to next match)
* `n`: select next match
* `N`: add a new selection with next match
* `alt-n`: select previous match
* `alt-N`: add a new selection with previous match
2013-01-03 14:01:48 +01:00
* `pageup`: scroll up
* `pagedown`: scroll down
2012-10-16 18:53:05 +02:00
* `alt-r`: rotate selections (the main selection becomes the next one)
* `;`: reduce selections to their cursor
* `alt-;`: flip the selections direction
* `alt-:`: ensure selections are in forward direction (cursor after anchor)
2014-03-23 21:35:11 +01:00
A word is a sequence of alphanumeric characters or underscore, a WORD is a
sequence of non whitespace characters.
2011-11-04 10:09:27 +01:00
Appending
2015-04-03 19:42:12 +02:00
~~~~~~~~~
2011-11-04 10:09:27 +01:00
2013-01-03 14:01:48 +01:00
for most selection commands, using shift permits to extend current selection
instead of replacing it. for example, `wWW` selects 3 consecutive words
2011-11-04 10:09:27 +01:00
Using Counts
2015-04-03 19:42:12 +02:00
~~~~~~~~~~~~
2011-11-04 10:09:27 +01:00
Most selection commands also support counts, which are entered before the
command itself.
for example, `3W` selects 3 consecutive words and `3w` select the third word on
2011-11-04 10:09:27 +01:00
the right of selection end.
Changes
2015-04-03 19:42:12 +02:00
~~~~~~~
2011-11-04 10:09:27 +01:00
* `i`: enter insert mode before current selection
* `a`: enter insert mode after current selection
* `d`: yank and delete current selection
* `c`: yank and delete current selection and enter insert mode
* `.`: repeat last insert mode change (`i`, `a`, or `c`, including
2014-05-05 19:09:16 +02:00
the inserted text)
2011-11-04 10:09:27 +01:00
* `I`: enter insert mode at current selection begin line start
* `A`: enter insert mode at current selection end line end
* `o`: enter insert mode in a new line below current selection end
* `O`: enter insert mode in a new line above current selection begin
2011-11-04 10:09:27 +01:00
* `y`: yank selections
* `p`: paste after current selection end
* `P`: paste before current selection begin
* `alt-p`: paste all after current selection end, and
select each pasted string.
* `alt-P`: paste all before current selection begin, and
select each pasted string.
* `R`: replace current selection with yanked text
* `r`: replace each character with the next entered one
2011-11-04 10:09:27 +01:00
* `alt-j`: join selected lines
* `alt-J`: join selected lines and select spaces inserted
in place of line breaks
2011-11-22 15:32:05 +01:00
* `>`: indent selected lines
* `alt->`: indent selected lines, including empty lines
* `<`: deindent selected lines
* `alt-<`: deindent selected lines, do not remove incomplete
indent (3 leading spaces when indent is 4)
2013-01-03 14:01:48 +01:00
* `|`: pipe each selections through the given external filter program
and replace the selection with it's output.
* `alt-|`: pipe each selections through the given external filter program
2014-12-13 14:17:05 +01:00
and ignore its output
* `!`: insert command output before selection
* `a-!`: append command output after selection
2011-12-28 20:09:54 +01:00
* `u`: undo last change
* `U`: redo last change
2013-01-03 14:01:48 +01:00
* `&`: align selection, align the cursor of selections by inserting
2014-01-28 14:53:44 +01:00
spaces before the first character of the selection
* `alt-&`: copy indent, copy the indentation of the main selection
2014-01-28 14:53:44 +01:00
(or the count one if a count is given) to all other ones
* ```: to lower case
* `~`: to upper case
* `alt-``: swap case
2013-05-15 18:47:58 +02:00
* `@`: convert tabs to spaces in current selections, uses the buffer
tabstop option or the count parameter for tabstop.
* `alt-@`: convert spaces to tabs in current selections, uses the buffer
tabstop option or the count parameter for tabstop.
* `alt-R`: rotate selections content, if specified, the count groups
selections, so `3<a-R>` rotate (1, 2, 3) and (3, 4, 6)
independently.
2013-04-11 21:15:54 +02:00
Goto Commands
2015-04-03 19:42:12 +02:00
~~~~~~~~~~~~~
2013-04-11 21:15:54 +02:00
Commands begining with g are used to goto certain position and or buffer:
* `gh`: select to line begin
* `gl`: select to line end
2013-04-11 21:15:54 +02:00
* `gg`, `gk`: go to the first line
* `gj`: go to the last line
2013-04-11 21:15:54 +02:00
* `gt`: go to the first displayed line
* `gc`: go to the middle displayed line
* `gb`: go to the last displayed line
2013-04-11 21:15:54 +02:00
* `ga`: go to the previous (alternate) buffer
* `gf`: open the file whose name is selected
2013-04-11 21:15:54 +02:00
* `g.`: go to last buffer modifiction position
View commands
2015-04-03 19:42:12 +02:00
~~~~~~~~~~~~~
2013-04-11 21:15:54 +02:00
Some commands, all begining with v permit to manipulate the current
view.
2013-04-11 21:15:54 +02:00
* `vv` or `vc`: center the main selection in the window
* `vt`: scroll to put the main selection on the top line of the window
* `vb`: scroll to put the main selection on the bottom line of the window
* `vh`: scroll the window count columns left
* `vj`: scroll the window count line downward
* `vk`: scroll the window count line upward
* `vl`: scroll the window count columns right
2013-04-11 21:15:54 +02:00
Jump list
2015-04-03 19:42:12 +02:00
~~~~~~~~~
Some commands, like the goto commands, buffer switch or search commands,
push the previous selections to the client's jump list. It is possible
to forward or backward in the jump list using:
* `control-i`: Jump forward
* `control-o`: Jump backward
* `control-s`: save current selections
2011-11-16 15:15:40 +01:00
Multi Selection
2015-04-03 19:42:12 +02:00
~~~~~~~~~~~~~~~
2011-11-16 15:15:40 +01:00
Kak was designed from the start to handle multiple selections.
One way to get a multiselection is via the `s` key.
2011-11-16 15:15:40 +01:00
For example, to change all occurences of word 'roger' to word 'marcel'
in a paragraph, here is what can be done:
select the paragraph with enough `x`. press `s` and enter roger then enter.
2011-11-16 15:15:40 +01:00
now paragraph selection was replaced with multiselection of each roger in
the paragraph. press `c` and marcel<esc> to replace rogers with marcels.
2011-11-16 15:15:40 +01:00
A multiselection can also be obtained with `S`, which splits the current
2011-11-21 20:35:02 +01:00
selection according to the regex entered. To split a comma separated list,
use `S` then ', *'
`s` and `S` share the search pattern with `/`, and hence entering an empty
pattern uses the last one.
As a convenience, `alt-s` allows you to split the current selections on
line boundaries.
2011-11-21 20:35:02 +01:00
To clear multiple selections, use `space`. To keep only the nth selection
use `n` followed by `space`, in order to remove a selection, use `alt-space`.
2012-01-25 22:26:41 +01:00
`alt-k` allows you to enter a regex and keep only the selections that
contains a match for this regex. using `alt-K` you can keep the selections
not containing a match.
`C` copies the current selection to the next line (or lines if a count is given)
`alt-C` does the same to previous lines.
`$` allows you to enter a shell command and pipe each selections to it.
Selections whose shell command returns 0 will be kept, other will be dropped.
2012-05-29 13:32:29 +02:00
Object Selection
2015-04-03 19:42:12 +02:00
~~~~~~~~~~~~~~~~
2012-05-29 13:32:29 +02:00
2013-03-14 14:11:06 +01:00
Some keys allow you to select a text object:
* `alt-a`: selects the whole object
* `alt-i`: selects the inner object, that is the object excluding it's surrounder.
2013-03-14 14:11:06 +01:00
for example, for a quoted string, this will not select the quote, and
for a word this will not select trailing spaces.
* `[`: selects to object start
* `]`: selects to object end
* `{`: extends selections to object start
* `}`: extends selections to object end
2013-03-14 14:11:06 +01:00
After this key, you need to enter a second key in order to specify which
object you want.
2012-05-29 13:32:29 +02:00
* `b`, `(` or `)`: select the enclosing parenthesis
* `B`, `{` or `}`: select the enclosing {} block
* `r`, `[` or `]`: select the enclosing [] block
* `a`, `<` or `>`: select the enclosing <> block
* `"`: select the enclosing double quoted string
* `'`: select the enclosing single quoted string
* ```: select the enclosing grave quoted string
* `w`: select the whole word
* `W`: select the whole WORD
* `s`: select the sentence
* `p`: select the paragraph
* `␣`: select the whitespaces
* `i`: select the current indentation block
* `n`: select the number
2012-05-29 13:32:29 +02:00
For nestable objects, a count can be used in order to specify which surrounding
level to select.
2015-04-03 19:42:12 +02:00
Commands
--------
When pressing `:` in normal mode, Kakoune will open a prompt to enter a command.
2015-04-03 19:42:12 +02:00
Commands are used for non editing tasks, such as opening a buffer, writing the
current one, quitting, etc...
Basic Commands
2015-04-03 19:42:12 +02:00
~~~~~~~~~~~~~~
* `e[dit] <filename> [<line> [<column>]]`: 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.
* `w[rite] [<filename>]`: write buffer to <filename> or use it's name if
filename is not given.
* `w[rite]a[ll]`: write all buffers that are associated to a file.
* `q[uit]`: exit Kakoune, use quit! to force quitting even if there is some
unsaved buffers remaining.
* `wq`: write current buffer and quit
* `b[uffer] <name>`: switch to buffer <name>
* `d[el]b[uf] [<name>]`: delete the buffer <name>, use d[el]b[uf]! to force
2013-01-03 14:01:48 +01:00
deleting a modified buffer.
* `source <filename>`: execute commands in <filename>
* `runtime <filename>`: execute commands in <filename>, <filename>
is relative to kak executable path.
* `nameclient <name>`: set current client name
* `namebuf <name>`: set current buffer name
* `echo <text>`: show <text> in status line
* `nop`: does nothing, but as with every other commands, arguments may be
evaluated. So nop can be used for example to execute a shell command
while being sure that it's output will not be interpreted by kak.
`:%sh{ echo echo tchou }` will echo tchou in Kakoune, whereas
`:nop %sh{ echo echo tchou }` will not, but both will execute the
shell command.
String syntax
2015-04-03 19:42:12 +02:00
~~~~~~~~~~~~~
When entering a command, parameters are separated by whitespace (shell like),
if you want to give parameters with spaces, you should quote them.
Kakoune support three string syntax:
* `'strings'`: uninterpreted strings, you can use `\'` to escape the separator,
every other char is itself.
* `"strings"`: expanded strings, % strings (see <<Expansions>>) contained
are expended. Use \% to escape a % inside them, and \\ to escape a slash.
* `%{strings}`: these strings are very useful when entering commands
- the `{` and `}` delimiter are configurable: you can use any non
alphanumeric character. like `%[string]`, `%<string>`, `%(string)`,
`%\~string~` or `%!string!`...
- if the character following the % is one of {[(<, then the closing one is
the matching }])> and the delimiters are not escapable but are nestable.
for example `%{ roger {}; }` is a valid string, `%{ marcel \}` as well.
2015-04-03 19:42:12 +02:00
Expansions
^^^^^^^^^^
A special kind of `%{strings}` can be used, with a type between
`%` and the opening delimiter (which cannot be alphanumeric). These
2015-04-03 19:42:12 +02:00
strings are expanded according to their type.
For example `%opt{autoinfo}` is of type 'opt'. opt expansions are replaced
by the value of the given option (here `autoinfo`).
2015-04-03 19:42:12 +02:00
Supported types are:
* `sh`: shell expansion, similar to posix shell $(...) construct, see
<<Shell expansion>> for more details.
* `reg`: register expansion, will be replaced by the content of the given
2015-04-03 19:42:12 +02:00
register.
* `opt`: option expansion, will be replaced with the value of the given
2015-04-03 19:42:12 +02:00
option
* `val`: value expansion, gives access to the environment variable available
to the Shell expansion. The `kak_` prefix is not used there.
2015-04-03 19:42:12 +02:00
for example you can display last search pattern with
-------------
:echo %reg{/}
-------------
Shell expansion
^^^^^^^^^^^^^^^
The `%sh{...}` expansion replaces it's content with the output of the shell
2015-04-03 19:42:12 +02:00
commands in it, it is similar to the shell $(...) syntax and is evaluated
only when needed.
for example: %sh{ ls } is replaced with the output of the ls command.
Some of Kakoune state is available through environment variables:
* `kak_selection`: content of the main selection
* `kak_selections`: content of the selection separated by colons, colons in
2015-04-03 19:42:12 +02:00
the selection contents are escapted with a backslash.
* `kak_bufname`: name of the current buffer
* `kak_buflist`: the current buffer list, each buffer seperated by a colon
* `kak_timestamp`: timestamp of the current buffer, the timestamp is an
2015-04-03 19:42:12 +02:00
integer value which is incremented each time the buffer is modified.
* `kak_runtime`: directory containing the kak binary
* `kak_opt_<name>`: value of option <name>
* `kak_reg_<r>`: value of register <r>
* `kak_socket`: filename of session socket (/tmp/kak-<session>)
* `kak_client`: name of current client
* `kak_cursor_line`: line of the end of the main selection
* `kak_cursor_column`: column of the end of the main selection (in byte)
* `kak_cursor_char_column`: column of the end of the main selection (in character)
* `kak_hook_param`: filtering text passed to the currently executing hook
2015-04-03 19:42:12 +02:00
Note that in order to make only needed information available, Kakoune needs
to find the environment variable reference in the shell script executed.
Hence `%sh{ ./script.sh }` with `script.sh` referencing an environment
2015-04-03 19:42:12 +02:00
variable will not work.
for example you can print informations on the current file in the status
line using:
-------------------------------
:echo %sh{ ls -l $kak_bufname }
-------------------------------
Kakrc
-----
The kakrc file in `../share/kak/kakrc` (relative to the `kak` binary)
2015-04-03 19:42:12 +02:00
is a list of kak commands to be executed at startup.
The current behaviour is to execute local user commands in the file
$HOME/.config/kak/kakrc and in all files in $HOME/.config/kak/autoload
directory
Place links to the files in `rc/` in your autoload directory in order to
2015-04-03 19:42:12 +02:00
execute them on startup, or use the runtime command (which sources relative
to the kak binary) to load them on demand.
Existing commands files are:
* *rc/kakrc.kak*: provides kak commands files autodetection and highlighting
* *rc/cpp.kak*: provides C/CPP files autodetection and highlighting and the
`:alt` command for switching from C/CPP file to h/hpp one.
2015-04-03 19:42:12 +02:00
* *rc/asciidoc.kak*: provides asciidoc files autodetection and highlighting
* *rc/diff.kak*: provides patches/diff files autodetection and highlighting
* *rc/git.kak*: provides various git format highlighting (commit message editing,
interactive rebase)
* *rc/git-tools.kak*: provides some git integration, like `:git-blame`, `:git-show`
or `:git-diff-show`
* *rc/make.kak*: provides the `:make` and `:errjump` commands along with
2015-04-03 19:42:12 +02:00
highlighting for compiler output.
* *rc/man.kak*: provides the `:man` command
* *rc/grep.kak*: provides the `:grep` and `:gjump` commands along with highlighting
2015-04-03 19:42:12 +02:00
for grep output.
* *rc/ctags.kak*: provides the `:tag` command to jump on a tag definition using
2015-04-03 19:42:12 +02:00
exuberant ctags files, this script requires the *readtags* binary, available
in the exuberant ctags package but not installed by default.
* *rc/client.kak*: provides the `:new` command to launch a new client on the current
2015-04-03 19:42:12 +02:00
session, if tmux is detected, launch the client in a new tmux split, else
launch in a new terminal emulator.
* *rc/clang.kak*: provides the `:clang-enable-autocomplete` command for C/CPP
2015-04-03 19:42:12 +02:00
insert mode completion support. This requires the clang++ compiler to be
available. You can use the `clang_options` option to specify switches to
2015-04-03 19:42:12 +02:00
be passed to the compiler.
Certain command files defines options, such as `grepcmd` (for `:grep`) `makecmd`
(for `:make`) or `termcmd` (for `:new`).
2015-04-03 19:42:12 +02:00
Some options are shared with commands. `:grep` and `:make` honor the `toolsclient` option,
2015-04-03 19:42:12 +02:00
if specified, to open their buffer in it rather than the current client. man honor
the `docsclient` option for the same purpose.
2015-04-03 19:42:12 +02:00
2013-07-24 23:16:32 +02:00
Options
-------
For user configuration, Kakoune supports options.
Options are typed, their type can be
* `int`: an integer number
* `bool`: a boolean value, `yes/true` or `no/false`
* `yesnoask`: similar to a boolean, but the additional
value `ask` is supported.
* `str`: a string, some freeform text
* `coord`: a line,column pair (separated by comma)
* `regex`: as a string but the `set` commands will complain
2013-07-24 23:16:32 +02:00
if the entered text is not a valid regex.
* `{int,str}-list`: a list, elements are separated by a colon (:)
2013-12-31 20:40:09 +01:00
if an element needs to contain a colon, it can be escaped with a
2013-07-24 23:16:32 +02:00
backslash.
Options value can be changed using the `set` commands:
2013-07-24 23:16:32 +02:00
2015-04-03 19:42:12 +02:00
------------------------------------------------------------------------------
:set [global,buffer,window] <option> <value> # buffer, window, or global scope
2015-04-03 19:42:12 +02:00
------------------------------------------------------------------------------
2013-07-24 23:16:32 +02:00
Option values can be different by scope, an option can have a global
value, a buffer value and a window value. The effective value of an
option depends on the current context. If we have a window in the
context (interactive edition for example), then the window value
(if any) is used, if not we try the buffer value (if we have a buffer
in the context), and if not we use the global value.
That means that two windows on the same buffer can use different options
(like different filetype, or different tabstop). However some options
might end up ignored if their scope is not in the command context:
Writing a file never uses the window options for example, so any
options related to writing wont be taken into account if set in the
window scope (`BOM` or `eolformat` for example).
2013-07-24 23:16:32 +02:00
New options can be declared using the `:decl` command:
2013-07-24 23:16:32 +02:00
---------------------------------------
:decl [-hidden] <type> <name> [<value>]
---------------------------------------
the `-hidden` parameter makes the option invisible in completion, but
still modifiable.
2013-07-24 23:16:32 +02:00
2014-01-28 14:53:44 +01:00
Some options are built in Kakoune, and can be used to control it's behaviour:
2013-07-24 23:16:32 +02:00
* `tabstop` _int_: width of a tab character.
* `indentwidth` _int_: width (in spaces) used for indentation.
0 means a tab character.
* `scrolloff` _coord_: number of lines,columns to keep visible around
2013-07-24 23:16:32 +02:00
the cursor when scrolling.
* `eolformat` _string_ ('lf' or 'crlf'): the format of end of lines when
2013-07-24 23:16:32 +02:00
writing a buffer, this is autodetected on load.
* `BOM` _string_ ("no" or "utf-8"): define if the file should be written
2013-07-24 23:16:32 +02:00
with an unicode byte order mark.
* `complete_prefix` _bool_: when completing in command line, and multiple
2013-07-24 23:16:32 +02:00
candidates exist, enable completion with common prefix.
* `incsearch` _bool_: execute search as it is typed
* `aligntab` _bool_: use tabs for alignement command
* `autoinfo` _bool_: display automatic information box for certain commands.
* `autoshowcompl` _bool_: automatically display possible completions when
editing a prompt.
* `ignored_files` _regex_: filenames matching this regex wont be considered
2013-07-24 23:16:32 +02:00
as candidates on filename completion (except if the text being completed
already matches it).
* `disabled_hooks` _regex_: hooks whose group matches this regex wont be
executed. For example indentation hooks can be disabled with '.*-indent'.
* `filetype` _str_: arbitrary string defining the type of the file
2013-07-24 23:16:32 +02:00
filetype dependant actions should hook on this option changing for
activation/deactivation.
* `path` _str-list_: directories to search for gf command.
* `completers` _str-list_: completion systems to use for insert mode
completion. given completers are tried in order until one generate some
completion candidates. Existing completers are:
- `word=all` or `word=buffer` which complete using words in all buffers
(`word=all`) or only the current one (`word=buffer`)
- `filename` which tries to detect when a filename is being entered and
provides completion based on local filesystem.
- `option=<opt-name>` where <opt-name> is a _str-list_ option. The first
element of the list should follow the format:
_<line>.<column>[+<length>]@<timestamp>_ to define where the completion
apply in the buffer, and the other strings are the candidates.
* `autoreload` _yesnoask_: auto reload the buffers when an external
2013-10-26 01:51:19 +02:00
modification is detected.
* `ui_options`: colon separated list of key=value pairs that are forwarded to
2014-11-11 00:35:45 +01:00
the user interface implementation. The NCurses UI support the following option:
- `ncurses_status_on_top`: if `yes`, or `true` the status line will be placed
2014-11-11 00:35:45 +01:00
at the top of the terminal rather than at the bottom.
- `ncurses_assistant`: specify the nice assistant you get in info boxes, can
be 'clippy' (the default), 'cat' or 'none'
- `ncurses_wheel_down_button` and `ncurses_wheel_up_button`: specify which
button send for wheel down/up events.
2013-07-24 23:16:32 +02:00
2015-04-03 19:42:12 +02:00
Faces
-----
A Face refer the how specified text is displayed, a Face has a foreground
color, a background color, and some attributes.
Faces can be defined and modified with the face command.
-----------------------
:face <name> <facespec>
-----------------------
Any place requiring a face can take either a face name defined with the `face`
2015-04-03 19:42:12 +02:00
command or a direct face description (called _facespec_) with the following
syntax:
--------------------------------
fg_color[,bg_color][+attributes]
--------------------------------
fg_color and bg_color can be:
* A named color: `black, red, green, yellow, blue, magenta, cyan, white`.
* `default`, which keeps the existing color
* An rgb color: `rgb:RRGGBB`, with RRGGBB the hexadecimal value of the color.
2015-04-03 19:42:12 +02:00
not specifying bg_color uses `default`
2015-04-03 19:42:12 +02:00
attributes is a string of letters each defining an attributes:
* `u`: Underline
* `r`: Reverse
* `b`: Bold
2015-04-03 19:42:12 +02:00
Using named faces instead of facespec permits to change the effective faces
afterward.
there are some builtins faces used by internal Kakoune functionalities:
* `PrimarySelection`: main selection face for every selected character except
2015-04-03 19:42:12 +02:00
the cursor
* `SecondarySelection`: secondary selection face for every selected character
2015-04-03 19:42:12 +02:00
except the cursor
* `PrimaryCursor`: cursor of the primary selection
* `SecondaryCursor`: cursor of the secondary selection
* `LineNumbers`: face used by the number_lines highlighter
* `LineNumberAbsolute`: face used to highlight the line number of the main
2015-04-03 19:42:12 +02:00
selection
* `MenuForeground`: face for the selected element in menus
* `MenuBackground`: face for the not selected elements in menus
* `Information`: face for the informations windows and information messages
* `Error`: face of error messages
* `StatusLine`: face used for the status line
* `StatusCursor`: face used for the status line cursor
* `Prompt`: face used prompt displayed on the status line
2015-04-03 19:42:12 +02:00
Advanced topics
---------------
Registers
~~~~~~~~~
Registers are named list of text. They are used for various purpose, like
storing the last yanked test, or the captures groups associated with the
selections.
Yanking and pasting uses the register `"`, however most commands using register
can have their default register overriden by using the `"` key followed by the
register. For example `"sy` will yank (`y` command) in the `s` register. `"sp`
will paste from the `s` register.
2015-04-03 19:42:12 +02:00
While in insert mode or in a prompt, `ctrl-r` followed by a register name
2015-04-03 19:42:12 +02:00
(one character) inserts it.
For example, `ctrl-r` followed by " will insert the currently yanked text.
`ctrl-r` followed by 2 will insert the second capture group from the last regex
2015-04-03 19:42:12 +02:00
selection.
Registers are lists, instead of simply text in order to interact well with
multiselection. Each selection have it's own captures, or yank buffer.
Macros
~~~~~~
Kakoune can record and replay a sequence of key press.
When pressing the `Q` key, followed by an alphabetic key for the macro name,
2015-04-03 19:42:12 +02:00
Kakoune begins macro recording: every pressed keys will be added to the
macro until the `Q` key is pressed again.
2015-04-03 19:42:12 +02:00
To replay a macro, use the `q` key, followed by the macro name.
2015-04-03 19:42:12 +02:00
macros are actually stored as a key sequence into a register, a macro name
is a register name.
Search selection
~~~~~~~~~~~~~~~~
Using the `*` key, you can set the search pattern to the current selection.
2015-04-03 19:42:12 +02:00
This tries to be intelligent. It will for example detect if current selection
begins and/or end at word boundaries, and set the search pattern accordingly.
with `alt-*` you can set the search pattern to the current seletion without
2015-04-03 19:42:12 +02:00
Kakoune trying to be smart.
Exec and Eval
~~~~~~~~~~~~~
the `:exec` and `:eval` commands can be used for running Kakoune commands.
`:exec` run keys as if they were pressed, whereas `:eval` executes it's given
2015-04-03 19:42:12 +02:00
paremeters as if they were entered in the command prompt. By default,
they do their execution in the context of the current client.
Some parameters provide a way to change the context of execution:
* `-client <name>`: execute in the context of the client named <name>
* `-try-client <name>`: execute in the context of the client named
2015-04-03 19:42:12 +02:00
<name> if such client exists, or else in the current context.
* `-draft`: execute in a copy of the context of the selected client
2015-04-03 19:42:12 +02:00
modifications to the selections or input state will not affect
the client. This permits to make some modification to the buffer
without modifying the user's selection.
* `-itersel` (requires `-draft`): execute once per selection, in a
2015-04-03 19:42:12 +02:00
context with only the considered selection. This permits to avoid
cases where the selections may get merged.
* `-buffer <names>`: execute in the context of each buffers in the
comma separated list <names>, '*' as a name can be used to iterate
on all buffers.
* `-no-hooks`: disable hook execution while executing the keys/commands
2015-04-03 19:42:12 +02:00
The execution stops when the last key/command is reached, or an error
is raised.
key parameters gets concatenated, so the following commands are equivalent.
----------------------
:exec otest<space>1
:exec o test <space> 1
----------------------
2015-04-03 19:42:12 +02:00
Insert mode completion
~~~~~~~~~~~~~~~~~~~~~~
Kakoune can propose completions while inserting text, the `completers` option
control automatic completion, which kicks in when a certain idle timeout is
reached (100 milliseconds). Insert mode completion can be explicitely triggered
using *control-x*, followed, by:
* *f* : filename completion
* *w* : buffer word completion
2014-01-31 08:45:20 +01:00
* *l* : buffer line completion
* *o* : option based completion
Highlighters
2015-04-03 19:42:12 +02:00
~~~~~~~~~~~~
2011-11-08 15:30:10 +01:00
Manipulation of the displayed text is done through highlighters, which can be added
or removed with the command
2013-01-03 18:57:30 +01:00
-----------------------------------------------------
:addhl <highlighter_name> <highlighter_parameters...>
-----------------------------------------------------
2013-01-03 18:57:30 +01:00
and
2013-01-03 18:57:30 +01:00
----------------------
:rmhl <highlighter_id>
----------------------
2011-11-08 15:30:10 +01:00
2015-04-13 12:48:21 +02:00
`highlighter_id` is a name generated by the highlighter specified with `highlighter_name`,
possibly dependent on the parameters. Use command completion on rmhl to see the existing
highlighters id.
2014-06-14 13:46:26 +02:00
general highlighters are:
2011-11-08 15:30:10 +01:00
* `regex <ex> <capture_id>:<face>...`: highlight a regex, takes the regex as
first parameter, followed by any number of face parameters.
For example: `:addhl regex //(\h`TODO:)?[^\n]` 0:cyan 1:yellow,red`
2013-03-14 14:11:06 +01:00
will highlight C++ style comments in cyan, with an eventual 'TODO:' in
yellow on red background.
* `search`: highlight every matches to the current search pattern with the
`Search` face
* `flag_lines <flag> <option_name>`: add a column in front of text, and display the
2013-03-14 14:11:06 +01:00
given flag in it for everly lines contained in the int-list option named
<option_name>.
* `show_matching`: highlight matching char of the character under the selections
cursor using `MatchingChar` face.
* `number_lines <-relative> <-hlcursor>`: show line numbers. The -relative switch
will show line numbers to main cursor line, the -hlcursor switch will
highlight the cursor line with a separate face..
* `fill <face>`: fill using given face, mostly useful with <<Regions highlighters>>
2014-06-14 13:46:26 +02:00
Highlighting Groups
2015-04-03 19:42:12 +02:00
^^^^^^^^^^^^^^^^^^^
2014-06-14 13:46:26 +02:00
the `group` highlighter is a container for other highlighters. You can add
2014-06-14 13:46:26 +02:00
a group to the current window using
------------------
addhl group <name>
------------------
and then the `-group` switch of `addhl` provides a mean to add highlighters
2014-06-14 13:46:26 +02:00
inside this group.
--------------------------------------
addhl -group <name> <type> <params>...
--------------------------------------
groups can contain other groups, the `-group` switch can be used to define a path.
2014-06-14 13:46:26 +02:00
------------------------------------------------
addhl -group <name> group <subname>
addhl -group <name>/<subname> <type> <params>...
------------------------------------------------
Regions highlighters
2015-04-03 19:42:12 +02:00
^^^^^^^^^^^^^^^^^^^^
A special highlighter provide a way to segment the buffer into regions, which are
to be highlighted differently.
2014-06-14 13:46:26 +02:00
A region is defined by 4 parametes:
2014-06-14 13:46:26 +02:00
------------------------------------
<name> <opening> <closing> <recurse>
------------------------------------
2014-06-14 13:46:26 +02:00
`name` is user defined, `opening`, `closing` and `recurse` are regexes.
2014-06-14 13:46:26 +02:00
* `opening` defines the region start text
* `closing` defines the region end text
* `recurse` defines the text that matches recursively an end token into the region.
2014-06-14 13:46:26 +02:00
`recurse` is useful for regions that can be nested, for example the `%sh{ ... }`
construct in kakoune accept nested `{ ... }` so `%sh{ ... { ... } ... }` is valid.
2014-06-14 13:46:26 +02:00
this region can be defined with:
------------------------
shell_expand %sh\{ \} \{
------------------------
2014-06-14 13:46:26 +02:00
Regions are used in the `regions` highlighter which can take any number
of regions.
2014-06-14 13:46:26 +02:00
-----------------------------------------------------------------------
addhl regions <name> <region_name1> <opening1> <closing1> <recurse1> \
<region_name2> <opening2> <closing2> <recurse2>...
-----------------------------------------------------------------------
2014-06-14 13:46:26 +02:00
defines multiple regions in which other highlighters can be added
-------------------------------------
addhl -group <name>/<region_name> ...
-------------------------------------
Regions are matched using the left-most rule: the left-most region opening starts
a new region. when a region closes, the closest next opening start another region.
That matches the rule governing most programming language parsing.
`regions` also supports a `-default <default_region>` switch to define the
2014-06-14 13:46:26 +02:00
default region, when no other region matches the current buffer range.
most programming languages can then be properly highlighted using a `regions`
2014-06-14 13:46:26 +02:00
highlighter as root:
-----------------------------------------------------------------
addhl multi_region -default code <lang> \
string <str_opening> <str_closing> <str_recurse> \
comment <comment_opening> <comment_closing> <comment_recurse>
addhl -group <lang>/code ...
addhl -group <lang>/string ...
addhl -group <lang>/comment ...
-----------------------------------------------------------------
2011-12-02 15:30:10 +01:00
2013-12-03 23:20:33 +01:00
Shared Highlighters
2015-04-03 19:42:12 +02:00
^^^^^^^^^^^^^^^^^^^
2013-12-03 23:20:33 +01:00
Highlighters are often defined for a specific filetype, and it makes then sense to
share the highlighters between all the windows on the same filetypes.
A shared highlighter can be defined with the `:addhl` command
2013-12-03 23:20:33 +01:00
2014-06-14 13:46:26 +02:00
------------------------------
addhl -group /<group_name> ...
------------------------------
when the group switch values starts with a '/', it references a group in the
shared highlighters, rather than the window highlighters.
2013-12-03 23:20:33 +01:00
2014-06-14 13:46:26 +02:00
The common case would be to create a named shared group, and then fill it
with highlighters:
---------------------------
addhl -group / group <name>
addhl -group /name regex ...
---------------------------
2013-12-03 23:20:33 +01:00
It can then be referenced in a window using the `ref` highlighter.
2013-12-03 23:20:33 +01:00
2014-06-14 13:46:26 +02:00
----------------
addhl ref <name>
----------------
the `ref` can reference any named highlighter in the shared namespace.
2013-12-03 23:20:33 +01:00
2011-11-26 20:19:08 +01:00
Hooks
2015-04-03 19:42:12 +02:00
~~~~~
2011-11-26 20:19:08 +01:00
commands can be registred to be executed when certain events arise.
to register a hook, use the hook command.
2013-01-03 18:57:30 +01:00
2014-06-16 21:46:27 +02:00
-----------------------------------------------------------------------
:hook [-group <group>] <scope> <hook_name> <filtering_regex> <commands>
-----------------------------------------------------------------------
2013-01-03 18:57:30 +01:00
2013-10-26 01:51:19 +02:00
<scope> can be either global, buffer or window (or any of their prefixes),
the scope are hierarchical, meaning that a Window calling a hook will
execute it's own, the buffer ones and the global ones.
2011-11-26 20:19:08 +01:00
<command> is a string containing the commands to execute when the hook is
called.
2012-01-25 22:26:41 +01:00
for example, to automatically use line numbering with .cc files,
2011-11-26 20:19:08 +01:00
use the following command:
2013-01-03 18:57:30 +01:00
-----------------------------------------------------
:hook global WinCreate .*\.cc %{ addhl number_lines }
-----------------------------------------------------
2012-01-25 22:26:41 +01:00
2014-06-16 21:46:27 +02:00
if <group> is given, make this hook part of the named group. groups
are used for removing hooks with the `rmhooks` command
2014-06-16 21:46:27 +02:00
-----------------------
rmhooks <scope> <group>
-----------------------
will remove every hooks in <scope> that are part of the given group.
2013-03-20 19:10:16 +01:00
existing hooks are:
* `NormalIdle`: A certain duration has passed since last key was pressed in
2013-03-20 19:10:16 +01:00
normal mode.
* `NormalBegin`: Entering normal mode
* `NormalEnd`: Leaving normal mode
* `NormalKey`: A key is received in normal mode, the key is used for filtering
* `InsertIdle`: A certain duration has passed since last key was pressed in
2013-03-20 19:10:16 +01:00
insert mode.
* `InsertBegin`: Entering insert mode
* `InsertEnd`: Leaving insert mode
* `InsertKey`: A key is received in insert mode, the key is used for filtering
* `InsertMove`: The cursor moved (without inserting) in insert mode, the key
2013-03-20 19:10:16 +01:00
that triggered the move is used for filtering
* `WinCreate`: A window was created, the filtering text is the buffer name
* `WinClose`: A window was detroyed, the filtering text is the buffer name
* `WinDisplay`: A window was bound a client, the filtering text is the buffer
2013-03-22 13:41:48 +01:00
name
* `WinSetOption`: An option was set in a window context, the filtering text
2013-03-20 19:10:16 +01:00
is '<option_name>=<new_value>'
* `BufSetOption`: An option was set in a buffer context, the filtering text
2013-11-12 21:41:14 +01:00
is '<option_name>=<new_value>'
* `BufNew`: A buffer for a new file has been created, filename is used for
2013-03-20 19:10:16 +01:00
filtering
* `BufOpen`: A buffer for an existing file has been created, filename is
2013-03-20 19:10:16 +01:00
used for filtering
* `BufCreate`: A buffer has been created, filename is used for filtering
* `BufWritePre`: Executed just before a buffer is written, filename is
2013-12-11 14:58:38 +01:00
used for filtering.
* `BufWritePost`: Executed just after a buffer is written, filename is
2013-12-11 14:58:38 +01:00
used for filtering.
* `BufClose`: Executed when a buffer is deleted, while it is still valid.
* `BufCloseFifo`: Executed when a fifo buffer closes its fifo file descriptor
either because the buffer is being deleted, or because the writing
end has been closed.
* `RuntimeError`: an error was encountered while executing an user command
2013-03-20 19:10:16 +01:00
the error message is used for filtering
* `KakBegin`: Kakoune started, this is called just after reading the user
2013-04-19 13:45:44 +02:00
configuration files
* `KakEnd`: Kakoune is quitting.
2013-03-20 19:10:16 +01:00
when not specified, the filtering text is an empty string.
2013-10-26 01:51:19 +02:00
Key Mapping
2015-04-03 19:42:12 +02:00
~~~~~~~~~~~
2013-10-26 01:51:19 +02:00
You can redefine keys meaning using the map command
------------------------------------------------------
:map <scope> <mode> <key> <keys>
------------------------------------------------------
with `scope` being one of `global, buffer or window` (or any prefix),
mode being `insert, normal, prompt, menu or user` (or any prefix), `key` being
a single key name and `keys` a list of keys.
2013-10-26 01:51:19 +02:00
`user` mode allows for user mapping behind the `,` key. Keys will be executed in
2014-12-15 14:16:32 +01:00
normal mode.
Defining Commands
2015-04-03 19:42:12 +02:00
~~~~~~~~~~~~~~~~~
new commands can be defined using the `:def` command.
2013-01-03 18:57:30 +01:00
------------------------------
:def <command_name> <commands>
------------------------------
2013-01-03 18:57:30 +01:00
<commands> is a string containing the commands to execute
def can also takes some flags:
* `-env-params`: pass parameters given to commands in the environment as
kak_paramN with N the parameter number
* `-shell-params`: pass parameters given to commands as positional parameters
2012-09-11 13:54:43 +02:00
to any shell expansions used in the command.
* `-file-completion`: try file completion on any parameter passed
to this command
* `-shell-completion`: following string is a shell command which takes
2012-09-11 13:54:43 +02:00
parameters as positional params and output one
completion candidate per line.
* `-allow-override`: allow the new command to replace an exisiting 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 permits to define complex commands or to access
2014-01-28 14:53:44 +01:00
Kakoune state:
2013-01-03 18:57:30 +01:00
------------------------------------------------------
:def print_selection %{ echo %sh{ ${kak_selection} } }
------------------------------------------------------
2013-01-03 18:57:30 +01:00
Some helper commands can be used to define composite commands:
* `:prompt <prompt> <register> <command>`: Prompt the user for a string, when
2014-04-26 16:09:42 +02:00
the user validates, store the result in given <register> and run <commmand>.
the -init <str> switch allows setting initial content.
* `:onkey <register> <command>`: Wait for next key from user, writes it into given
<register> and execute commands.
* `:menu <label1> <commands1> <label2> <commands2>...`: display a menu using
labels, the selected label's commands are executed.
`menu` can take a -auto-single argument, to automatically run commands
2013-01-03 14:01:48 +01:00
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 <text>`: display text in an information box, at can take a -anchor
option, which accepts `left`, `right` and `cursor` as value, in order to
2013-03-20 19:10:16 +01:00
specify where the info box should be anchored relative to the main selection.
* `:try <commands> catch <on_error_commands>`: prevent an error in <commands>
from aborting the whole commands execution, execute <on_error_commands>
instead. If nothing is to be done on error, the catch part can be ommitted.
* `:reg <name> <content>`: set register <name> to <content>
2012-05-29 13:32:29 +02:00
Note that these commands are available in interactive command mode, but are
not that useful in this context.
2012-09-11 13:54:43 +02:00
Aliases
2015-04-03 19:42:12 +02:00
~~~~~~~
With `:alias` commands can be given additional names. aliases are scoped, so
that an alias can refer to one command for a buffer, and to another for another
buffer.
--------------------------------
:alias <scope> <alias> <command>
--------------------------------
with `<scope>` being `global`, `buffer` or `window`, will define `<alias>` as
an alias for `<command>`
-------------------------------------
:unalias <scope> <alias> [<expected>]
-------------------------------------
Will remove the given alias in the given scope. If `<expected>` is specified
the alias will only be removed if its current value is `<expected>`.
2012-09-11 13:54:43 +02:00
FIFO Buffer
2015-04-03 19:42:12 +02:00
~~~~~~~~~~~
2012-09-11 13:54:43 +02:00
the `:edit` command can take a -fifo parameter:
2013-01-03 18:57:30 +01:00
2014-06-14 13:46:26 +02:00
---------------------------------------------
:edit -fifo <filename> [-scroll] <buffername>
---------------------------------------------
2013-01-03 18:57:30 +01:00
in this case, a buffer named `<buffername>` is created which reads its content
from fifo `<filename>`. When the fifo is written to, the buffer is automatically
2012-09-11 13:54:43 +02:00
updated.
if the `-scroll` switch is specified, the initial cursor position will be made
2014-06-14 13:46:26 +02:00
such as the window displaying the buffer will scroll as new data is read.
2012-09-11 13:54:43 +02:00
This is very useful for running some commands asynchronously while displaying
their result in a buffer. See rc/make.kak and rc/grep.kak for examples.
When the buffer is deleted, the fifo will be closed, so any program writing
to it will receive SIGPIPE. This is usefull as it permits to stop the writing
program when the buffer is deleted.
2012-11-09 18:30:24 +01:00
Menus
2015-04-03 19:42:12 +02:00
~~~~~
2012-11-09 18:30:24 +01:00
When a menu is displayed, you can use `j`, `<ctrl-n>` or `<tab>` to select the next
entry, and `k`, `<ctrl-p>` or `<shift-tab>` to select the previous one.
2012-11-09 18:30:24 +01:00
Using the `/` key, you can enter some regex in order to restrict available choices
2012-11-09 18:30:24 +01:00
to the matching ones.