aboutsummaryrefslogtreecommitdiff
path: root/test/functional/legacy/listchars_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-04-09 22:51:59 +0200
committerGitHub <noreply@github.com>2017-04-09 22:51:59 +0200
commitd7fb7de70aee3dff48abc61986818dee86afed07 (patch)
treea9263b8deb57161f2b5315117371af026759c79b /test/functional/legacy/listchars_spec.lua
parentdbdd69e418a3baa4750abc25fae7516a36776e75 (diff)
parentdbe67868b53774443521129ef30d74346592e3bb (diff)
downloadrneovim-d7fb7de70aee3dff48abc61986818dee86afed07.tar.gz
rneovim-d7fb7de70aee3dff48abc61986818dee86afed07.tar.bz2
rneovim-d7fb7de70aee3dff48abc61986818dee86afed07.zip
Merge #6481 from ZyX-I/rename-execute
Rename execute() function to feed_command()
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>-$