diff --git a/README.asciidoc b/README.asciidoc index 2b061275..125ddc37 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -790,37 +790,21 @@ Custom key shortcuts can be registered through mappings. See <>. -Defining Commands +Defining Commands and Aliases ~~~~~~~~~~~~~~~~~ New commands can be created using `:define-command`. See <>. +They can be given additional short names depending of the scope with `:alias`. + +See <>. + Some helper commands are available to define composite commands. See <>. -Aliases -~~~~~~~ - -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. The following command defines `` as an alias for ``: - --------------------------------- -:alias --------------------------------- - -`` can be one of `global`, `buffer` or `window`. - -------------------------------------- -:unalias [] -------------------------------------- - -Will remove the given alias in the given scope. If `` is specified -the alias will only be removed if its current value is ``. - FIFO Buffers ~~~~~~~~~~~ diff --git a/doc/pages/commands.asciidoc b/doc/pages/commands.asciidoc index 125371a4..cc1b06af 100644 --- a/doc/pages/commands.asciidoc +++ b/doc/pages/commands.asciidoc @@ -150,12 +150,12 @@ of the file onto the filesystem *alias* :: define a new alias named *name* in *scope* - (See <>) + (See <> and <>) *unalias* []:: remove an alias if its current value is the same as the one passed as an optional parameter, remove it unconditionally otherwise - (See <>) + (See <> and <>) *evaluate-commands* [] ...:: *alias* eval + @@ -404,3 +404,30 @@ Kakoune's state: -------------------------------------------------------- def " print_selection %{ echo %sh{ ${kak_selection} } }" -------------------------------------------------------- + +== Aliases + +With `:alias`, commands can be given additional names. +As aliases are intended to be used interactively most of the time, +they are often short. For example `:reg` is an alias for `:set-register`. + +They are scoped, so that an alias can refer to one command for a buffer, +and to another for another buffer. For instance `:next` could be an alias +for `grep-next-match` in a `*grep*` buffer while pointing to +`:make-next-error` in a `*make*` buffer. + +The following command defines `` as an alias for ``: + +-------------------------------- +:alias +-------------------------------- + +`` can be one of `global`, `buffer` or `window`. + +------------------------------------- +:unalias [] +------------------------------------- + +Will remove the given alias in the given scope. If `` is specified +the alias will only be removed if its current value is ``. +