mirror of
https://github.com/neovim/neovim.git
synced 2025-09-26 21:18:34 +00:00
feat: defaults: set undo points in <C-U> and <C-W> (#15400)
This commit is contained in:
@@ -841,6 +841,14 @@ static void init_typebuf(void)
|
||||
}
|
||||
}
|
||||
|
||||
void init_default_mappings(void)
|
||||
{
|
||||
add_map((char_u *)"Y y$", NORMAL, true);
|
||||
add_map((char_u *)"<C-L> <Cmd>nohlsearch<Bar>diffupdate<CR><C-L>", NORMAL, true);
|
||||
add_map((char_u *)"<C-U> <C-G>u<C-U>", INSERT, true);
|
||||
add_map((char_u *)"<C-W> <C-G>u<C-W>", INSERT, true);
|
||||
}
|
||||
|
||||
// Insert a string in position 'offset' in the typeahead buffer (for "@r"
|
||||
// and ":normal" command, vgetorpeek() and check_termcode())
|
||||
//
|
||||
|
Reference in New Issue
Block a user