diff options
Diffstat (limited to 'src/nvim/normal.c')
-rw-r--r-- | src/nvim/normal.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/normal.c b/src/nvim/normal.c index 2a530db934..a92376a3ec 100644 --- a/src/nvim/normal.c +++ b/src/nvim/normal.c @@ -397,6 +397,11 @@ void init_normal_cmds(void) nv_max_linear = i - 1; } +void init_default_mappings(void) +{ + add_map((char_u *)"Y y$", NORMAL | VISUAL); +} + /* * Search for a command in the commands table. * Returns -1 for invalid command. |