Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
alexherbo2 committed Jun 13, 2021
1 parent d758bbf commit ad1dc79
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion VIMTOKAK
Original file line number Diff line number Diff line change
Expand Up @@ -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
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>
* kak: <a-i>Bsword<ret>creplacement<esc>

Expand Down
2 changes: 1 addition & 1 deletion doc/pages/faces.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ areas of the user interface:
*BufferPadding*::
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.
(See <<highlighters#,`:doc highlighters`>>).
Expand Down
2 changes: 1 addition & 1 deletion rc/windowing/new-client.kak
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
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 optional arguments are passed as commands to the new client' \
%{
Expand Down
2 changes: 1 addition & 1 deletion rc/windowing/wayland.kak
Original file line number Diff line number Diff line change
Expand Up @@ -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 '
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' \
%{
evaluate-commands -save-regs 'a' %{
Expand Down
2 changes: 1 addition & 1 deletion rc/windowing/x11.kak
Original file line number Diff line number Diff line change
Expand Up @@ -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 '
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' \
%{
evaluate-commands -save-regs 'a' %{
Expand Down
4 changes: 2 additions & 2 deletions src/normal.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1379,8 +1379,8 @@ void select_object(Context& context, NormalParams params)
}, get_title(),
build_autoinfo_for_mapping(context, KeymapMode::Object,
{{{'b','(',')'}, "parenthesis block"},
{{'B','{','}'}, "braces block"},
{{'r','[',']'}, "brackets block"},
{{'B','{','}'}, "brace block"},
{{'r','[',']'}, "bracket block"},
{{'a','<','>'}, "angle block"},
{{'"','Q'}, "double quote string"},
{{'\'','q'}, "single quote string"},
Expand Down

0 comments on commit ad1dc79

Please sign in to comment.