mirror of
https://github.com/neovim/neovim.git
synced 2025-10-18 07:41:51 +00:00
refactor: use nvim.foo.bar format for autocommand groups
This commit is contained in:
@@ -32,7 +32,7 @@ describe('default', function()
|
||||
describe('popupmenu', function()
|
||||
it('can be disabled by user', function()
|
||||
n.clear {
|
||||
args = { '+autocmd! nvim_popupmenu', '+aunmenu PopUp' },
|
||||
args = { '+autocmd! nvim.popupmenu', '+aunmenu PopUp' },
|
||||
}
|
||||
local screen = Screen.new(40, 8)
|
||||
n.insert([[
|
||||
|
@@ -173,7 +173,7 @@ describe('swapfile detection', function()
|
||||
local screen2 = Screen.new(256, 40)
|
||||
screen2._default_attr_ids = nil
|
||||
exec(init)
|
||||
command('autocmd! nvim_swapfile') -- Delete the default handler (which skips the dialog).
|
||||
command('autocmd! nvim.swapfile') -- Delete the default handler (which skips the dialog).
|
||||
|
||||
-- With shortmess+=F
|
||||
command('set shortmess+=F')
|
||||
@@ -277,7 +277,7 @@ describe('swapfile detection', function()
|
||||
set_session(nvim1)
|
||||
screen:attach()
|
||||
exec(init)
|
||||
command('autocmd! nvim_swapfile') -- Delete the default handler (which skips the dialog).
|
||||
command('autocmd! nvim.swapfile') -- Delete the default handler (which skips the dialog).
|
||||
feed(':split Xfile1\n')
|
||||
-- The default SwapExists handler does _not_ skip this prompt.
|
||||
screen:expect({
|
||||
@@ -296,7 +296,7 @@ describe('swapfile detection', function()
|
||||
set_session(nvim2)
|
||||
screen:attach()
|
||||
exec(init)
|
||||
command('autocmd! nvim_swapfile') -- Delete the default handler (which skips the dialog).
|
||||
command('autocmd! nvim.swapfile') -- Delete the default handler (which skips the dialog).
|
||||
command('set more')
|
||||
command('au bufadd * let foo_w = wincol()')
|
||||
feed(':e Xfile1<CR>')
|
||||
@@ -327,7 +327,7 @@ describe('swapfile detection', function()
|
||||
|
||||
exec(init)
|
||||
if not swapexists then
|
||||
command('autocmd! nvim_swapfile') -- Delete the default handler (which skips the dialog).
|
||||
command('autocmd! nvim.swapfile') -- Delete the default handler (which skips the dialog).
|
||||
end
|
||||
command('set nohidden')
|
||||
|
||||
|
@@ -351,7 +351,7 @@ describe(':terminal buffer', function()
|
||||
end)
|
||||
|
||||
it('TermRequest synchronization #27572', function()
|
||||
command('autocmd! nvim_terminal TermRequest')
|
||||
command('autocmd! nvim.terminal TermRequest')
|
||||
local term = exec_lua([[
|
||||
_G.input = {}
|
||||
local term = vim.api.nvim_open_term(0, {
|
||||
|
@@ -176,7 +176,7 @@ local function test_terminal_with_fake_shell(backslash)
|
||||
end)
|
||||
|
||||
it('with no argument, acts like jobstart(…,{term=true})', function()
|
||||
command('autocmd! nvim_terminal TermClose')
|
||||
command('autocmd! nvim.terminal TermClose')
|
||||
feed_command('terminal')
|
||||
screen:expect([[
|
||||
^ready $ |
|
||||
@@ -246,7 +246,7 @@ local function test_terminal_with_fake_shell(backslash)
|
||||
end)
|
||||
|
||||
it('ignores writes if the backing stream closes', function()
|
||||
command('autocmd! nvim_terminal TermClose')
|
||||
command('autocmd! nvim.terminal TermClose')
|
||||
feed_command('terminal')
|
||||
feed('iiXXXXXXX')
|
||||
poke_eventloop()
|
||||
@@ -258,14 +258,14 @@ local function test_terminal_with_fake_shell(backslash)
|
||||
end)
|
||||
|
||||
it('works with findfile()', function()
|
||||
command('autocmd! nvim_terminal TermClose')
|
||||
command('autocmd! nvim.terminal TermClose')
|
||||
feed_command('terminal')
|
||||
eq('term://', string.match(eval('bufname("%")'), '^term://'))
|
||||
eq('scripts/shadacat.py', eval('findfile("scripts/shadacat.py", ".")'))
|
||||
end)
|
||||
|
||||
it('works with :find', function()
|
||||
command('autocmd! nvim_terminal TermClose')
|
||||
command('autocmd! nvim.terminal TermClose')
|
||||
feed_command('terminal')
|
||||
screen:expect([[
|
||||
^ready $ |
|
||||
|
@@ -644,7 +644,7 @@ describe('TUI', function()
|
||||
|
||||
aunmenu PopUp
|
||||
" Delete the default MenuPopup event handler.
|
||||
autocmd! nvim_popupmenu
|
||||
autocmd! nvim.popupmenu
|
||||
menu PopUp.foo :let g:menustr = 'foo'<CR>
|
||||
menu PopUp.bar :let g:menustr = 'bar'<CR>
|
||||
menu PopUp.baz :let g:menustr = 'baz'<CR>
|
||||
|
@@ -1094,7 +1094,7 @@ describe('ext_multigrid', function()
|
||||
end)
|
||||
|
||||
it('supports mouse', function()
|
||||
command('autocmd! nvim_popupmenu') -- Delete the default MenuPopup event handler.
|
||||
command('autocmd! nvim.popupmenu') -- Delete the default MenuPopup event handler.
|
||||
insert('some text\nto be clicked')
|
||||
screen:expect{grid=[[
|
||||
## grid 1
|
||||
|
@@ -841,7 +841,7 @@ describe('ui/ext_popupmenu', function()
|
||||
|
||||
aunmenu PopUp
|
||||
" Delete the default MenuPopup event handler.
|
||||
autocmd! nvim_popupmenu
|
||||
autocmd! nvim.popupmenu
|
||||
menu PopUp.foo :let g:menustr = 'foo'<CR>
|
||||
menu PopUp.bar :let g:menustr = 'bar'<CR>
|
||||
menu PopUp.baz :let g:menustr = 'baz'<CR>
|
||||
@@ -4089,7 +4089,7 @@ describe('builtin popupmenu', function()
|
||||
set mouse=a mousemodel=popup
|
||||
|
||||
" Delete the default MenuPopup event handler.
|
||||
autocmd! nvim_popupmenu
|
||||
autocmd! nvim.popupmenu
|
||||
aunmenu PopUp
|
||||
menu PopUp.foo :let g:menustr = 'foo'<CR>
|
||||
menu PopUp.bar :let g:menustr = 'bar'<CR>
|
||||
@@ -4946,7 +4946,7 @@ describe('builtin popupmenu', function()
|
||||
it(':popup command', function()
|
||||
exec([[
|
||||
" Delete the default MenuPopup event handler.
|
||||
autocmd! nvim_popupmenu
|
||||
autocmd! nvim.popupmenu
|
||||
|
||||
func ChangeMenu()
|
||||
aunmenu PopUp.&Paste
|
||||
@@ -5106,7 +5106,7 @@ describe('builtin popupmenu', function()
|
||||
exec([[
|
||||
set mousemodel=popup_setpos
|
||||
" Delete the default MenuPopup event handler.
|
||||
autocmd! nvim_popupmenu
|
||||
autocmd! nvim.popupmenu
|
||||
aunmenu *
|
||||
source $VIMRUNTIME/menu.vim
|
||||
call setline(1, join(range(20)))
|
||||
|
@@ -65,7 +65,7 @@ mapclear
|
||||
mapclear!
|
||||
aunmenu *
|
||||
tlunmenu *
|
||||
autocmd! nvim_popupmenu
|
||||
autocmd! nvim.popupmenu
|
||||
|
||||
" Undo the 'grepprg' and 'grepformat' setting in _defaults.lua.
|
||||
set grepprg& grepformat&
|
||||
|
Reference in New Issue
Block a user