aboutsummaryrefslogtreecommitdiff
path: root/test/functional/autocmd/bufenter_spec.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/autocmd/bufenter_spec.lua')
-rw-r--r--test/functional/autocmd/bufenter_spec.lua25
1 files changed, 12 insertions, 13 deletions
diff --git a/test/functional/autocmd/bufenter_spec.lua b/test/functional/autocmd/bufenter_spec.lua
index 47f4adb0d6..af0dd887fa 100644
--- a/test/functional/autocmd/bufenter_spec.lua
+++ b/test/functional/autocmd/bufenter_spec.lua
@@ -12,9 +12,9 @@ describe('autocmd BufEnter', function()
it("triggered by nvim_command('edit <dir>')", function()
command("autocmd BufEnter * if isdirectory(expand('<afile>')) | let g:dir_bufenter = 1 | endif")
- request("nvim_command", "split .")
- eq(1, eval("exists('g:dir_bufenter')")) -- Did BufEnter for the directory.
- eq(2, eval("bufnr('%')")) -- Switched to the dir buffer.
+ request('nvim_command', 'split .')
+ eq(1, eval("exists('g:dir_bufenter')")) -- Did BufEnter for the directory.
+ eq(2, eval("bufnr('%')")) -- Switched to the dir buffer.
end)
it('triggered by "try|:split <dir>|endtry" in a function', function()
@@ -27,21 +27,20 @@ describe('autocmd BufEnter', function()
endtry
endfunction
]])
- command("call Test()")
- eq(1, eval("exists('g:dir_bufenter')")) -- Did BufEnter for the directory.
- eq(2, eval("bufnr('%')")) -- Switched to the dir buffer.
+ command('call Test()')
+ eq(1, eval("exists('g:dir_bufenter')")) -- Did BufEnter for the directory.
+ eq(2, eval("bufnr('%')")) -- Switched to the dir buffer.
end)
it('triggered by ":split normal|:help|:bw"', function()
helpers.add_builddir_to_rtp()
- command("split normal")
- command("wincmd j")
- command("help")
- command("wincmd L")
- command("autocmd BufEnter normal let g:bufentered = 1")
- command("bw")
+ command('split normal')
+ command('wincmd j')
+ command('help')
+ command('wincmd L')
+ command('autocmd BufEnter normal let g:bufentered = 1')
+ command('bw')
eq(1, eval('bufnr("%")')) -- The cursor is back to the bottom window
eq(0, eval("exists('g:bufentered')")) -- The autocmd hasn't been triggered
end)
-
end)