diff options
author | Gregory Anders <greg@gpanders.com> | 2021-08-16 19:28:52 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-16 18:28:52 -0700 |
commit | 2cb8db34e3a275dec3dacb10fdc75640f4ec8174 (patch) | |
tree | d49331f40470d9084e6198439c08cac4d5478e74 /src/nvim/normal.c | |
parent | 3954537b9e243fb3df3672d47fe3d9529fa4e544 (diff) | |
download | rneovim-2cb8db34e3a275dec3dacb10fdc75640f4ec8174.tar.gz rneovim-2cb8db34e3a275dec3dacb10fdc75640f4ec8174.tar.bz2 rneovim-2cb8db34e3a275dec3dacb10fdc75640f4ec8174.zip |
feat: defaults: set undo points in <C-U> and <C-W> (#15400)
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r-- | src/nvim/normal.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index f3869e7e44..2a530db934 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -397,12 +397,6 @@ void init_normal_cmds(void) nv_max_linear = i - 1; } -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); -} - /* * Search for a command in the commands table. * Returns -1 for invalid command. |