mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 9.0.0346: :horizontal modifier not fully supported
Problem: :horizontal modifier not fully supported. Solution: Also use :horizontal for completion and user commands. (closes #11025)
This commit is contained in:
@@ -1443,6 +1443,9 @@ add_win_cmd_modifers(char_u *buf, cmdmod_T *cmod, int *multi_mods)
|
||||
// :vertical
|
||||
if (cmod->cmod_split & WSP_VERT)
|
||||
result += add_cmd_modifier(buf, "vertical", multi_mods);
|
||||
// :horizontal
|
||||
if (cmod->cmod_split & WSP_HOR)
|
||||
result += add_cmd_modifier(buf, "horizontal", multi_mods);
|
||||
return result;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user