diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-01-05 07:12:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-05 07:12:02 +0800 |
commit | ae64772a88125153a438a0e9e43d5f6bcb4eeb28 (patch) | |
tree | 2c086cc06b2aa63549b5bd45716e3ee74a027bf4 /test/functional/ui/diff_spec.lua | |
parent | 89232b8b4890824f93121483626af582f13758fe (diff) | |
download | rneovim-ae64772a88125153a438a0e9e43d5f6bcb4eeb28.tar.gz rneovim-ae64772a88125153a438a0e9e43d5f6bcb4eeb28.tar.bz2 rneovim-ae64772a88125153a438a0e9e43d5f6bcb4eeb28.zip |
fix(diff): avoid restoring invalid 'foldcolumn' value (#21650)
Use "0" for 'foldcolumn' when w_p_fdc_save is empty, like how
"manual" is used for 'foldmethod' when w_p_fdm_save is empty.
Diffstat (limited to 'test/functional/ui/diff_spec.lua')
-rw-r--r-- | test/functional/ui/diff_spec.lua | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/functional/ui/diff_spec.lua b/test/functional/ui/diff_spec.lua index dd35f47ca1..dbdf3823ec 100644 --- a/test/functional/ui/diff_spec.lua +++ b/test/functional/ui/diff_spec.lua @@ -8,6 +8,8 @@ local insert = helpers.insert local write_file = helpers.write_file local dedent = helpers.dedent local exec = helpers.exec +local eq = helpers.eq +local meths = helpers.meths describe('Diff mode screen', function() local fname = 'Xtest-functional-diff-screen-1' @@ -1491,6 +1493,26 @@ it('Align the filler lines when changing text in diff mode', function() ]]} end) +it("diff mode doesn't restore invalid 'foldcolumn' value #21647", function() + clear() + local screen = Screen.new(60, 6) + screen:set_default_attr_ids({ + [0] = {foreground = Screen.colors.Blue, bold = true}; + }) + screen:attach() + eq('0', meths.get_option_value('foldcolumn', {})) + command('diffsplit | bd') + screen:expect([[ + ^ | + {0:~ }| + {0:~ }| + {0:~ }| + {0:~ }| + | + ]]) + eq('0', meths.get_option_value('foldcolumn', {})) +end) + -- oldtest: Test_diff_binary() it('diff mode works properly if file contains NUL bytes vim-patch:8.2.3925', function() clear() |