diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-09-30 14:41:34 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-30 14:41:34 +0800 |
commit | dc6d0d2daf69e2fdadda81feb97906dbc962a239 (patch) | |
tree | 7cf93549ec3282e1f42baf89e97d7890daeb5d70 /test/unit/undo_spec.lua | |
parent | cf8b2c0e74fd5e723b0c15c2ce84e6900fd322d3 (diff) | |
download | rneovim-dc6d0d2daf69e2fdadda81feb97906dbc962a239.tar.gz rneovim-dc6d0d2daf69e2fdadda81feb97906dbc962a239.tar.bz2 rneovim-dc6d0d2daf69e2fdadda81feb97906dbc962a239.zip |
refactor: reorganize option header files (#25437)
- Move vimoption_T to option.h
- option_defs.h is for option-related types
- option_vars.h corresponds to Vim's option.h
- option_defs.h and option_vars.h don't include each other
Diffstat (limited to 'test/unit/undo_spec.lua')
-rw-r--r-- | test/unit/undo_spec.lua | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/unit/undo_spec.lua b/test/unit/undo_spec.lua index 9261eca19d..ee4203b94c 100644 --- a/test/unit/undo_spec.lua +++ b/test/unit/undo_spec.lua @@ -11,10 +11,7 @@ local neq = helpers.neq local eq = helpers.eq local mkdir = helpers.mkdir -cimport('./src/nvim/ex_cmds_defs.h') -cimport('./src/nvim/buffer_defs.h') -local options = cimport('./src/nvim/option_defs.h') --- TODO: remove: local vim = cimport('./src/nvim/vim.h') +local options = cimport('./src/nvim/option_vars.h') local undo = cimport('./src/nvim/undo.h') local buffer = cimport('./src/nvim/buffer.h') |