Fix typos

This commit is contained in:
Taupiqueur 2021-06-13 04:12:03 +02:00
parent d758bbf09b
commit ad1dc79789
6 changed files with 7 additions and 7 deletions

View File

@ -37,7 +37,7 @@ and <esc> goes back to normal mode.
Note that the Kakoune version is one key less, and is not a special Note that the Kakoune version is one key less, and is not a special
feature per se, but just a nice way Kakoune features work together. feature per se, but just a nice way Kakoune features work together.
replace in current curly braces block: replace in current curly brace block:
* vim: viB:s/word/replacement<ret> * vim: viB:s/word/replacement<ret>
* kak: <a-i>Bsword<ret>creplacement<esc> * kak: <a-i>Bsword<ret>creplacement<esc>

View File

@ -121,7 +121,7 @@ areas of the user interface:
*BufferPadding*:: *BufferPadding*::
face applied on the `~` characters that follow the last line of a buffer face applied on the `~` characters that follow the last line of a buffer
=== Builtin highlighters faces === Builtin highlighter faces
The following faces are used by builtin highlighters if enabled. The following faces are used by builtin highlighters if enabled.
(See <<highlighters#,`:doc highlighters`>>). (See <<highlighters#,`:doc highlighters`>>).

View File

@ -1,5 +1,5 @@
define-command new -params .. -command-completion -docstring ' define-command new -params .. -command-completion -docstring '
new [<commands>]: create a new kakoune client new [<commands>]: create a new Kakoune client
The ''terminal'' alias is being used to determine the user''s preferred terminal emulator The ''terminal'' alias is being used to determine the user''s preferred terminal emulator
The optional arguments are passed as commands to the new client' \ The optional arguments are passed as commands to the new client' \
%{ %{

View File

@ -28,7 +28,7 @@ A shell command is appended to the one set in this option at runtime} \
} }
define-command wayland-terminal -params 1.. -shell-completion -docstring ' define-command wayland-terminal -params 1.. -shell-completion -docstring '
wayland-terminal <program> [<arguments>]: create a new terminal as an wayland window wayland-terminal <program> [<arguments>]: create a new terminal as a Wayland window
The program passed as argument will be executed in the new terminal' \ The program passed as argument will be executed in the new terminal' \
%{ %{
evaluate-commands -save-regs 'a' %{ evaluate-commands -save-regs 'a' %{

View File

@ -34,7 +34,7 @@ A shell command is appended to the one set in this option at runtime} \
} }
define-command x11-terminal -params 1.. -shell-completion -docstring ' define-command x11-terminal -params 1.. -shell-completion -docstring '
x11-terminal <program> [<arguments>]: create a new terminal as an x11 window x11-terminal <program> [<arguments>]: create a new terminal as an X11 window
The program passed as argument will be executed in the new terminal' \ The program passed as argument will be executed in the new terminal' \
%{ %{
evaluate-commands -save-regs 'a' %{ evaluate-commands -save-regs 'a' %{

View File

@ -1379,8 +1379,8 @@ void select_object(Context& context, NormalParams params)
}, get_title(), }, get_title(),
build_autoinfo_for_mapping(context, KeymapMode::Object, build_autoinfo_for_mapping(context, KeymapMode::Object,
{{{'b','(',')'}, "parenthesis block"}, {{{'b','(',')'}, "parenthesis block"},
{{'B','{','}'}, "braces block"}, {{'B','{','}'}, "brace block"},
{{'r','[',']'}, "brackets block"}, {{'r','[',']'}, "bracket block"},
{{'a','<','>'}, "angle block"}, {{'a','<','>'}, "angle block"},
{{'"','Q'}, "double quote string"}, {{'"','Q'}, "double quote string"},
{{'\'','q'}, "single quote string"}, {{'\'','q'}, "single quote string"},