diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-05-25 14:49:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-25 14:49:43 +0200 |
commit | 2f023f40b275a904c96d5b287e9e9abe6df1aec7 (patch) | |
tree | 36f2b5bec81f7144c5bd3787f33959bd60c59e0e /test | |
parent | 4769deb36a54c3b2a4a2d2addb2937c1aa7dd629 (diff) | |
parent | eddd1bff3e7bf8df7405f6b0bfd01a5bb8ba20a9 (diff) | |
download | rneovim-2f023f40b275a904c96d5b287e9e9abe6df1aec7.tar.gz rneovim-2f023f40b275a904c96d5b287e9e9abe6df1aec7.tar.bz2 rneovim-2f023f40b275a904c96d5b287e9e9abe6df1aec7.zip |
Merge #10046 from justinmk/xfree
refactor: introduce XFREE_CLEAR()
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/autocmd/autocmd_spec.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/autocmd/autocmd_spec.lua b/test/functional/autocmd/autocmd_spec.lua index 337c5442ef..1eeaa62864 100644 --- a/test/functional/autocmd/autocmd_spec.lua +++ b/test/functional/autocmd/autocmd_spec.lua @@ -148,10 +148,10 @@ describe('autocmd', function() funcs.execute('autocmd Tabnew')) end) - it('window works', function() - -- Nvim uses a special window to execute certain actions for an invisible buffer, - -- internally called autcmd_win and mentioned in the docs at :help E813 - -- Do some safety checks for redrawing and api accesses to this window. + it('internal `aucmd_win` window', function() + -- Nvim uses a special internal window `aucmd_win` to execute certain + -- actions for an invisible buffer (:help E813). + -- Check redrawing and API accesses to this window. local screen = Screen.new(50, 10) screen:attach() |