diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-03-01 18:28:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-01 18:28:45 +0100 |
commit | 2c408c0c94915b6c38c1eccdb68b2645829130c2 (patch) | |
tree | a4712c411404a6125d3428c57d08bf019c7b9c28 /test/functional/legacy | |
parent | 4e4c7850635dfa3218f2461b50a0b2b2c84d7242 (diff) | |
parent | 4306e5ae0c2a31ea6798af41f7033771af9af6d5 (diff) | |
download | rneovim-2c408c0c94915b6c38c1eccdb68b2645829130c2.tar.gz rneovim-2c408c0c94915b6c38c1eccdb68b2645829130c2.tar.bz2 rneovim-2c408c0c94915b6c38c1eccdb68b2645829130c2.zip |
Merge #6185 from justinmk/term-cursor
terminal: Keep cursor position; Disable 'cursorline'
Diffstat (limited to 'test/functional/legacy')
3 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/legacy/007_ball_buffer_list_spec.lua b/test/functional/legacy/007_ball_buffer_list_spec.lua index 07e3fe6e7a..e54525fd06 100644 --- a/test/functional/legacy/007_ball_buffer_list_spec.lua +++ b/test/functional/legacy/007_ball_buffer_list_spec.lua @@ -40,7 +40,7 @@ describe(':ball', function() -- Write contents of this file execute('%yank A') - -- Append contents of second window (Xxx1) + -- Append contents of second window (Xxx1) feed('') execute('%yank A') diff --git a/test/functional/legacy/054_buffer_local_autocommands_spec.lua b/test/functional/legacy/054_buffer_local_autocommands_spec.lua index 494ea8f927..1f7c4dee6a 100644 --- a/test/functional/legacy/054_buffer_local_autocommands_spec.lua +++ b/test/functional/legacy/054_buffer_local_autocommands_spec.lua @@ -13,7 +13,7 @@ describe('BufLeave <buffer>', function() execute('au BufLeave <buffer> update') -- Here, autocommand for xx shall append a line - -- But autocommand shall not apply to buffer named <buffer> + -- But autocommand shall not apply to buffer named <buffer> execute('e somefile') -- Here, autocommand shall be auto-deleted diff --git a/test/functional/legacy/074_global_var_in_viminfo_spec.lua b/test/functional/legacy/074_global_var_in_viminfo_spec.lua index 2fc30c9d83..e8292db8c1 100644 --- a/test/functional/legacy/074_global_var_in_viminfo_spec.lua +++ b/test/functional/legacy/074_global_var_in_viminfo_spec.lua @@ -31,8 +31,8 @@ describe('storing global variables in ShaDa files', function() 'set visualbell', 'set shada+=!', "let MY_GLOBAL_DICT={'foo': 1, 'bar': 0, 'longvarible': 1000}", - -- Store a really long list. Initially this was testing line wrapping in - -- viminfo, but shada files has no line wrapping, no matter how long the + -- Store a really long list. Initially this was testing line wrapping in + -- viminfo, but shada files has no line wrapping, no matter how long the -- list is. 'let MY_GLOBAL_LIST=range(1,100)' ) |