mirror of
https://github.com/neovim/neovim.git
synced 2025-09-23 03:28:33 +00:00
fix(defaults): do not map Y in visual-mode #15387
Y in visual-mode is unrelated to the normal-mode behavior. reverts part of #13268
This commit is contained in:
@@ -399,7 +399,7 @@ void init_normal_cmds(void)
|
||||
|
||||
void init_default_mappings(void)
|
||||
{
|
||||
add_map((char_u *)"Y y$", NORMAL | VISUAL);
|
||||
add_map((char_u *)"Y y$", NORMAL);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user