diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2017-01-12 21:53:00 +0100 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2017-01-12 21:53:00 +0100 |
| commit | 9e776fae96d12c41f59edd2862a73e98dfcf51ac (patch) | |
| tree | dcf105f18307db749dd90fd64a7b048b9d2d6476 /lua | |
| parent | e6d4c35a80b2aed4a0b60ba9d32599545e0a36fd (diff) | |
| download | vis-9e776fae96d12c41f59edd2862a73e98dfcf51ac.tar.gz vis-9e776fae96d12c41f59edd2862a73e98dfcf51ac.tar.xz | |
tests: make :help output actually visible
The problem is that :qall in the win open event would immediately
close the window before anyting gets executed.
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/visrc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/visrc.lua b/lua/visrc.lua index ed23e60..af40306 100644 --- a/lua/visrc.lua +++ b/lua/visrc.lua @@ -8,6 +8,6 @@ vis.events.win_open = function(win) -- use the corresponding test.lua file lua_file = string.gsub(in_file, '%.in$', '.lua') dofile(lua_file) + vis:command('qall!') end - vis:command('qall!') end |
