vim-patch:8.2.0128: cannot list options one per line

Problem:    Cannot list options one per line.
Solution:   Use ":set!" to list one option per line.
6b915c0c0e
This commit is contained in:
zeertzjq
2022-01-20 14:34:24 +08:00
parent 431915fe6a
commit aa4eadd2be
6 changed files with 53 additions and 36 deletions

View File

@@ -9600,18 +9600,6 @@ static void ex_digraphs(exarg_T *eap)
}
}
static void ex_set(exarg_T *eap)
{
int flags = 0;
if (eap->cmdidx == CMD_setlocal) {
flags = OPT_LOCAL;
} else if (eap->cmdidx == CMD_setglobal) {
flags = OPT_GLOBAL;
}
(void)do_set(eap->arg, flags);
}
void set_no_hlsearch(bool flag)
{
no_hlsearch = flag;