diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2025-01-15 02:01:44 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-01-15 02:01:44 -0800 |
| commit | 3ee63edc1b0ca6fe664c9d5368aba05ae9a22e9d (patch) | |
| tree | a696adf2e1449b17d8ff8a44ecf83a90e78d5cea /test/functional/ex_cmds | |
| parent | 0a7e4e9e5f28f3b6b3c83040430d0a36fcd71fad (diff) | |
| parent | 575f4bc7d5069792188520d1f0e5ed12cc035002 (diff) | |
| download | rneovim-3ee63edc1b0ca6fe664c9d5368aba05ae9a22e9d.tar.gz rneovim-3ee63edc1b0ca6fe664c9d5368aba05ae9a22e9d.tar.bz2 rneovim-3ee63edc1b0ca6fe664c9d5368aba05ae9a22e9d.zip | |
Merge #32001 from MariaSolOs/consistent-namespaces
Diffstat (limited to 'test/functional/ex_cmds')
| -rw-r--r-- | test/functional/ex_cmds/swapfile_preserve_recover_spec.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/functional/ex_cmds/swapfile_preserve_recover_spec.lua b/test/functional/ex_cmds/swapfile_preserve_recover_spec.lua index d1f598a9d8..f84fc140d2 100644 --- a/test/functional/ex_cmds/swapfile_preserve_recover_spec.lua +++ b/test/functional/ex_cmds/swapfile_preserve_recover_spec.lua @@ -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') |
