diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2019-10-13 23:43:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-13 23:43:06 +0200 |
commit | ba082885d23fe4e1de94474fb616428bd6e00d6e (patch) | |
tree | 4574533679c6ac166b7424a8f0c4fb4c735aba01 /test/functional/ui/inccommand_spec.lua | |
parent | 5cf6beb22178a844bc1b6e75e744eb04508b865c (diff) | |
parent | cc0d7252304f10ed6cdc0bc58789100093f7d021 (diff) | |
download | rneovim-ba082885d23fe4e1de94474fb616428bd6e00d6e.tar.gz rneovim-ba082885d23fe4e1de94474fb616428bd6e00d6e.tar.bz2 rneovim-ba082885d23fe4e1de94474fb616428bd6e00d6e.zip |
Merge pull request #11206 from bfredl/testattr
tests/refactor: make screen.ui use "linegrid" representation internally
Diffstat (limited to 'test/functional/ui/inccommand_spec.lua')
-rw-r--r-- | test/functional/ui/inccommand_spec.lua | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/test/functional/ui/inccommand_spec.lua b/test/functional/ui/inccommand_spec.lua index e9a7c8c2df..d60cd08fb0 100644 --- a/test/functional/ui/inccommand_spec.lua +++ b/test/functional/ui/inccommand_spec.lua @@ -556,7 +556,6 @@ describe(":substitute, 'inccommand' preserves undo", function() ]]) end end - screen:detach() end) it('with undolevels=2', function() @@ -647,7 +646,6 @@ describe(":substitute, 'inccommand' preserves undo", function() Already ...t change | ]]) end - screen:detach() end end) @@ -713,7 +711,6 @@ describe(":substitute, 'inccommand' preserves undo", function() Already ...t change | ]]) end - screen:detach() end) end) @@ -726,10 +723,6 @@ describe(":substitute, inccommand=split", function() common_setup(screen, "split", default_text .. default_text) end) - after_each(function() - screen:detach() - end) - it("preserves 'modified' buffer flag", function() feed_command("set nomodified") feed(":%s/tw") @@ -1241,10 +1234,6 @@ describe("inccommand=nosplit", function() common_setup(screen, "nosplit", default_text .. default_text) end) - after_each(function() - if screen then screen:detach() end - end) - it("works with :smagic, :snomagic", function() feed_command("set hlsearch") insert("Line *.3.* here") @@ -1719,10 +1708,6 @@ describe("'inccommand' split windows", function() common_setup(screen, "split", default_text) end - after_each(function() - screen:detach() - end) - it('work after more splits', function() refresh() |