diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-09-19 18:05:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-19 18:05:27 +0800 |
commit | 7dbbaaec3fae62667b273c4c2d362bee91316083 (patch) | |
tree | 4d3c134477abbb78c08fd2ba89f6e7103edc4d65 /src/nvim/optionstr.c | |
parent | 0fe4362e216e659e5236cf49beba0e10cce0579d (diff) | |
download | rneovim-7dbbaaec3fae62667b273c4c2d362bee91316083.tar.gz rneovim-7dbbaaec3fae62667b273c4c2d362bee91316083.tar.bz2 rneovim-7dbbaaec3fae62667b273c4c2d362bee91316083.zip |
refactor!: rename 'jumpoptions' flag "unload" to "clean" (#30418)
Follow-up to #29347
Diffstat (limited to 'src/nvim/optionstr.c')
-rw-r--r-- | src/nvim/optionstr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/optionstr.c b/src/nvim/optionstr.c index 8e853b6ee0..8eadd52972 100644 --- a/src/nvim/optionstr.c +++ b/src/nvim/optionstr.c @@ -139,7 +139,7 @@ static char *(p_fdc_values[]) = { "auto", "auto:1", "auto:2", "auto:3", "auto:4" "5", "6", "7", "8", "9", NULL }; static char *(p_spo_values[]) = { "camel", "noplainbuffer", NULL }; static char *(p_icm_values[]) = { "nosplit", "split", NULL }; -static char *(p_jop_values[]) = { "stack", "view", "unload", NULL }; +static char *(p_jop_values[]) = { "stack", "view", "clean", NULL }; static char *(p_tpf_values[]) = { "BS", "HT", "FF", "ESC", "DEL", "C0", "C1", NULL }; static char *(p_rdb_values[]) = { "compositor", "nothrottle", "invalid", "nodelta", "line", "flush", NULL }; |