diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-09-23 18:51:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-23 18:51:39 +0200 |
commit | f8f83579ff42ce01e9fe852ec7d9202c4891db87 (patch) | |
tree | 5fbd8e27cd1e2fabfef672e8c3ec8045c5cdc75e /test/functional/ui/highlight_spec.lua | |
parent | d3c90cbbb420dd9ea7fc0e1523e9c89a0f8476d0 (diff) | |
parent | 990c147de39dfbe587927c9261cbb9f928cfd730 (diff) | |
download | rneovim-f8f83579ff42ce01e9fe852ec7d9202c4891db87.tar.gz rneovim-f8f83579ff42ce01e9fe852ec7d9202c4891db87.tar.bz2 rneovim-f8f83579ff42ce01e9fe852ec7d9202c4891db87.zip |
Merge #9034 'swapfile: always show dialog'
Diffstat (limited to 'test/functional/ui/highlight_spec.lua')
-rw-r--r-- | test/functional/ui/highlight_spec.lua | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/test/functional/ui/highlight_spec.lua b/test/functional/ui/highlight_spec.lua index 4b6fbc0d74..7f3bf3e97b 100644 --- a/test/functional/ui/highlight_spec.lua +++ b/test/functional/ui/highlight_spec.lua @@ -40,24 +40,24 @@ describe('highlight: `:syntax manual`', function() end) it("works with buffer switch and 'hidden'", function() - feed_command('e tmp1.vim') - feed_command('e Xtest-functional-ui-highlight.tmp.vim') - feed_command('filetype on') - feed_command('syntax manual') - feed_command('set ft=vim') - feed_command('set syntax=ON') + command('e tmp1.vim') + command('e Xtest-functional-ui-highlight.tmp.vim') + command('filetype on') + command('syntax manual') + command('set ft=vim') + command('set syntax=ON') feed('iecho 1<esc>0') - feed_command('set hidden') - feed_command('w') - feed_command('bn') + command('set hidden') + command('w') + command('bn') feed_command('bp') screen:expect([[ {1:^echo} 1 | {0:~ }| {0:~ }| {0:~ }| - <f 1 --100%-- col 1 | + :bp | ]]) end) @@ -919,7 +919,7 @@ describe("'winhighlight' highlight", function() aa | {0:~ }| {4:[No Name] [+] }| - <f 1 --100%-- col 1 | + | ]]) end) |