diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-04-12 03:21:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-12 03:21:21 +0200 |
commit | dd391bfca1f37093ba556f5da6a7f3eb81147fc0 (patch) | |
tree | 853aea222ea79998c63a0ef2e17e3e44101166e6 /test/functional/terminal/edit_spec.lua | |
parent | 2d72d85b23761383ac7838faed2f7b53bdce8817 (diff) | |
parent | 7c4e5dfd2722b8c25641cbbc66c5b0133d0e2f03 (diff) | |
download | rneovim-dd391bfca1f37093ba556f5da6a7f3eb81147fc0.tar.gz rneovim-dd391bfca1f37093ba556f5da6a7f3eb81147fc0.tar.bz2 rneovim-dd391bfca1f37093ba556f5da6a7f3eb81147fc0.zip |
Merge #6497 from justinmk/win-quot
win: system('...'): special-case cmd.exe
Diffstat (limited to 'test/functional/terminal/edit_spec.lua')
-rw-r--r-- | test/functional/terminal/edit_spec.lua | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/functional/terminal/edit_spec.lua b/test/functional/terminal/edit_spec.lua index 42a5c768bb..d2b2d8a60c 100644 --- a/test/functional/terminal/edit_spec.lua +++ b/test/functional/terminal/edit_spec.lua @@ -45,11 +45,8 @@ describe(':edit term://*', function() local bufcontents = {} local winheight = curwinmeths.get_height() local buf_cont_start = rep_size - sb - winheight + 2 - local function bufline (i) - return ('%d: foobar'):format(i) - end for i = buf_cont_start,(rep_size - 1) do - bufcontents[#bufcontents + 1] = bufline(i) + bufcontents[#bufcontents + 1] = ('%d: foobar'):format(i) end bufcontents[#bufcontents + 1] = '' bufcontents[#bufcontents + 1] = '[Process exited 0]' |