mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 17:28:23 +00:00
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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user