diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-12-24 14:25:08 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-24 14:25:08 +0800 |
commit | 0b66ab42c76c41494a9d7fc715d310f1a1da929d (patch) | |
tree | 40e4807c0dfd00e37bfa0d01e0a2d9180b4eb5d7 /src/nvim/options.lua | |
parent | eae6727325111e596b49bb04337a467e8833397c (diff) | |
parent | 4587912527f48974e5b339af85db1c74bdd3cb43 (diff) | |
download | rneovim-0b66ab42c76c41494a9d7fc715d310f1a1da929d.tar.gz rneovim-0b66ab42c76c41494a9d7fc715d310f1a1da929d.tar.bz2 rneovim-0b66ab42c76c41494a9d7fc715d310f1a1da929d.zip |
Merge pull request #26642 from famiu/refactor/options/misc
refactor(options): miscellanous refactors
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r-- | src/nvim/options.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index d599e0452d..8295483954 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -1269,6 +1269,7 @@ return { }, { abbreviation = 'co', + cb = 'did_set_lines_or_columns', defaults = { if_true = macros('DFLT_COLS'), doc = '80 or terminal width', @@ -4744,6 +4745,7 @@ return { type = 'boolean', }, { + cb = 'did_set_lines_or_columns', defaults = { if_true = macros('DFLT_ROWS'), doc = '24 or terminal height', |