diff options
| author | Evgeni Chasnovski <evgeni.chasnovski@gmail.com> | 2023-03-25 18:58:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-25 09:58:48 -0700 |
| commit | fe9cbcb3a5c82932ecfb8f49d07e98a1fc2b31e5 (patch) | |
| tree | b2828838c29b0a30befd703cf49a8d6cd16b89a0 /test/functional/autocmd | |
| parent | 257d894d75bc583bb16f4dbe441907eb273d20ad (diff) | |
| download | rneovim-fe9cbcb3a5c82932ecfb8f49d07e98a1fc2b31e5.tar.gz rneovim-fe9cbcb3a5c82932ecfb8f49d07e98a1fc2b31e5.tar.bz2 rneovim-fe9cbcb3a5c82932ecfb8f49d07e98a1fc2b31e5.zip | |
feat(api): nvim_exec2(), deprecate nvim_exec() #19032
Problem:
The signature of nvim_exec() is not extensible per ":help api-contract".
Solution:
Introduce nvim_exec2() and deprecate nvim_exec().
Diffstat (limited to 'test/functional/autocmd')
| -rw-r--r-- | test/functional/autocmd/autocmd_oldtest_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/autocmd/autocmd_oldtest_spec.lua b/test/functional/autocmd/autocmd_oldtest_spec.lua index ad3687d7b0..7d475e5015 100644 --- a/test/functional/autocmd/autocmd_oldtest_spec.lua +++ b/test/functional/autocmd/autocmd_oldtest_spec.lua @@ -6,7 +6,7 @@ local meths = helpers.meths local funcs = helpers.funcs local exec = function(str) - meths.exec(str, false) + meths.exec2(str, { output = false }) end describe('oldtests', function() |