mirror of
https://github.com/neovim/neovim.git
synced 2025-09-28 05:58:33 +00:00
refactor(options)!: graduate some more shortmess flags
A lot of updated places in the docs were already incorrect since long since they did not reflect the default behaviour. "[dos format]" could've been argued being better for discoverability but that ship has already sailed as it is no longer displayed by default.
This commit is contained in:
@@ -132,11 +132,12 @@ static char *(p_rdb_values[]) = { "compositor", "nothrottle", "invalid", "nodelt
|
||||
static char *(p_sloc_values[]) = { "last", "statusline", "tabline", NULL };
|
||||
|
||||
/// All possible flags for 'shm'.
|
||||
static char SHM_ALL[] = { SHM_RO, SHM_MOD, SHM_FILE, SHM_LAST, SHM_TEXT, SHM_LINES, SHM_NEW,
|
||||
/// the literal chars before 0 are removed flags. these are safely ignored
|
||||
static char SHM_ALL[] = { SHM_RO, SHM_MOD, SHM_LINES,
|
||||
SHM_WRI, SHM_ABBREVIATIONS, SHM_WRITE, SHM_TRUNC, SHM_TRUNCALL,
|
||||
SHM_OVER, SHM_OVERALL, SHM_SEARCH, SHM_ATTENTION, SHM_INTRO,
|
||||
SHM_COMPLETIONMENU, SHM_COMPLETIONSCAN, SHM_RECORDING, SHM_FILEINFO,
|
||||
SHM_SEARCHCOUNT, 0, };
|
||||
SHM_SEARCHCOUNT, 'n', 'f', 'x', 'i', 0, };
|
||||
|
||||
/// After setting various option values: recompute variables that depend on
|
||||
/// option values.
|
||||
|
Reference in New Issue
Block a user