From 2cb8db34e3a275dec3dacb10fdc75640f4ec8174 Mon Sep 17 00:00:00 2001 From: Gregory Anders Date: Mon, 16 Aug 2021 19:28:52 -0600 Subject: feat: defaults: set undo points in and (#15400) --- src/nvim/getchar.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/nvim/getchar.c') diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c index 63da6f7922..4bf1c90830 100644 --- a/src/nvim/getchar.c +++ b/src/nvim/getchar.c @@ -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 *)" nohlsearchdiffupdate", NORMAL, true); + add_map((char_u *)" u", INSERT, true); + add_map((char_u *)" u", INSERT, true); +} + // Insert a string in position 'offset' in the typeahead buffer (for "@r" // and ":normal" command, vgetorpeek() and check_termcode()) // -- cgit