fix a few typos

This commit is contained in:
Joachim Henke 2019-07-06 17:37:30 +02:00
parent ab87d2b2cb
commit 4c61f82fb2
4 changed files with 6 additions and 6 deletions

View File

@ -493,7 +493,7 @@ Changes
tabstop option or the count parameter for tabstop.
* `<a-)>`: rotate selections content, if specified, the count groups
selections, so `3<a-">` rotate (1, 2, 3) and (3, 4, 6)
selections, so `3<a-)>` rotate (1, 2, 3) and (3, 4, 6)
independently.
* `<a-(>`: rotate selections content backwards

View File

@ -746,10 +746,10 @@ The following keys are recognized by this mode to help with editing
erase to previous WORD begin, save erased content to *clipboard*
*<a-d>*::
erase to previous word end, save erased content to *clipboard*
erase to next word begin, save erased content to *clipboard*
*<a-D>*::
erase to previous WORD end, save erased content to *clipboard*
erase to next WORD begin, save erased content to *clipboard*
*<c-k>*::
erase to end of line, save erased content to *clipboard*

View File

@ -261,7 +261,7 @@ are exclusively available to built-in options.
timeout, in milliseconds, with no user input that will trigger the
*PromptIdle*, *InsertIdle* and *NormalIdle* hooks, and autocompletion.
*fs_checkout_timeout* `int`::
*fs_check_timeout* `int`::
_default_ 500 +
timeout, in milliseconds, between checks in normal mode of modifications
of the file associated with the current buffer on the filesystem.

View File

@ -490,7 +490,7 @@ public:
}
else if (key == alt('f'))
to_next_word_begin<Word>(m_cursor_pos, m_line);
else if (key == alt('W'))
else if (key == alt('F'))
to_next_word_begin<WORD>(m_cursor_pos, m_line);
else if (key == alt('b'))
to_prev_word_begin<Word>(m_cursor_pos, m_line);
@ -514,7 +514,7 @@ public:
else if (key == ctrl('w') or key == alt(Key::Backspace))
erase_move(&to_prev_word_begin<Word>);
else if (key == ctrl('W'))
erase_move(&to_prev_word_begin<Word>);
erase_move(&to_prev_word_begin<WORD>);
else if (key == alt('d'))
erase_move(&to_next_word_begin<Word>);
else if (key == alt('D'))