Merge branch 'master' of http://github.com/jo-he/kakoune
This commit is contained in:
commit
9e62d2c345
|
@ -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
|
||||
|
||||
|
|
|
@ -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*
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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'))
|
||||
|
|
Loading…
Reference in New Issue
Block a user