aboutsummaryrefslogtreecommitdiff
path: root/test/functional/legacy/listchars_spec.lua
diff options
context:
space:
mode:
authorJakob Schnitzer <mail@jakobschnitzer.de>2017-04-24 11:35:10 +0200
committerJakob Schnitzer <mail@jakobschnitzer.de>2017-04-24 11:35:10 +0200
commitff8b2eb435c518f0eafd0e509afe1f5ee4a81fd1 (patch)
tree526b1df09b06121bdbc6ef5254ef53821958a6cb /test/functional/legacy/listchars_spec.lua
parent4049492b6d7b8805686b14dbacb3b729abd03308 (diff)
parent7f6d3d305269fd1139bc2aec9a91bf98ad595199 (diff)
downloadrneovim-ff8b2eb435c518f0eafd0e509afe1f5ee4a81fd1.tar.gz
rneovim-ff8b2eb435c518f0eafd0e509afe1f5ee4a81fd1.tar.bz2
rneovim-ff8b2eb435c518f0eafd0e509afe1f5ee4a81fd1.zip
Merge branch 'master' into option-fixes
Diffstat (limited to 'test/functional/legacy/listchars_spec.lua')
-rw-r--r--test/functional/legacy/listchars_spec.lua40
1 files changed, 20 insertions, 20 deletions
diff --git a/test/functional/legacy/listchars_spec.lua b/test/functional/legacy/listchars_spec.lua
index d2838cddb6..3c0fa48e76 100644
--- a/test/functional/legacy/listchars_spec.lua
+++ b/test/functional/legacy/listchars_spec.lua
@@ -2,12 +2,12 @@
local helpers = require('test.functional.helpers')(after_each)
local feed, insert, source = helpers.feed, helpers.insert, helpers.source
-local clear, execute, expect = helpers.clear, helpers.execute, helpers.expect
+local clear, feed_command, expect = helpers.clear, helpers.feed_command, helpers.expect
describe("'listchars'", function()
before_each(function()
clear()
- execute('set listchars&vi')
+ feed_command('set listchars&vi')
end)
it("works with 'list'", function()
@@ -26,14 +26,14 @@ describe("'listchars'", function()
dd ee
]])
- execute('let g:lines = []')
+ feed_command('let g:lines = []')
-- Set up 'listchars', switch on 'list', and use the "GG" mapping to record
-- what the buffer lines look like.
- execute('set listchars+=tab:>-,space:.,trail:<')
- execute('set list')
- execute('/^start:/')
- execute('normal! jzt')
+ feed_command('set listchars+=tab:>-,space:.,trail:<')
+ feed_command('set list')
+ feed_command('/^start:/')
+ feed_command('normal! jzt')
feed('GG<cr>')
feed('GG<cr>')
feed('GG<cr>')
@@ -41,7 +41,7 @@ describe("'listchars'", function()
feed('GGH')
-- Repeat without displaying "trail" spaces.
- execute('set listchars-=trail:<')
+ feed_command('set listchars-=trail:<')
feed('GG<cr>')
feed('GG<cr>')
feed('GG<cr>')
@@ -49,8 +49,8 @@ describe("'listchars'", function()
feed('GG')
-- Delete the buffer contents and :put the collected lines.
- execute('%d')
- execute('put =g:lines', '1d')
+ feed_command('%d')
+ feed_command('put =g:lines', '1d')
-- Assert buffer contents.
expect([[
@@ -76,21 +76,21 @@ describe("'listchars'", function()
-- Set up 'listchars', switch 'list' *off* (:list must show the 'listchars'
-- even when 'list' is off), then run :list and collect the output.
- execute('set listchars+=tab:>-,space:.,trail:<')
- execute('set nolist')
- execute('/^start:/')
- execute('redir! => g:lines')
- execute('+1,$list')
- execute('redir END')
+ feed_command('set listchars+=tab:>-,space:.,trail:<')
+ feed_command('set nolist')
+ feed_command('/^start:/')
+ feed_command('redir! => g:lines')
+ feed_command('+1,$list')
+ feed_command('redir END')
-- Delete the buffer contents and :put the collected lines.
- execute('%d')
- execute('put =g:lines', '1d')
+ feed_command('%d')
+ feed_command('put =g:lines', '1d')
-- Assert buffer contents.
expect([[
-
-
+
+
..fff>--<<$
>-------gg>-----$
.....h>-$