0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

patch 8.0.0900: :tab options doesn't open a new tab page

Problem:    :tab options doesn't open a new tab page. (Aviany)
Solution:   Support the :tab modifier. (closes #1960)
This commit is contained in:
Bram Moolenaar
2017-08-11 17:15:09 +02:00
parent 2d33e90f81
commit ab6c8587ba
3 changed files with 12 additions and 12 deletions

View File

@@ -3749,6 +3749,7 @@ ex_packadd(exarg_T *eap)
ex_options(
exarg_T *eap UNUSED)
{
vim_setenv((char_u *)"OPTWIN_CMD", (char_u *)(cmdmod.tab ? "tab" : ""));
cmd_source((char_u *)SYS_OPTWIN_FILE, NULL);
}
#endif