diff options
author | Uthman Mohamed <83053931+uthmanmoh@users.noreply.github.com> | 2024-10-18 05:22:15 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-18 02:22:15 -0700 |
commit | f4b620c4e6430ea8cbc5632d6853b24da09d7dfc (patch) | |
tree | 5878a1f1b3e2675c222099cb2bb4bbc4307e5880 /test/functional/lua/ui_spec.lua | |
parent | 564173e5568ccf11bf6554680922d3716fb6862b (diff) | |
download | rneovim-f4b620c4e6430ea8cbc5632d6853b24da09d7dfc.tar.gz rneovim-f4b620c4e6430ea8cbc5632d6853b24da09d7dfc.tar.bz2 rneovim-f4b620c4e6430ea8cbc5632d6853b24da09d7dfc.zip |
feat(vim.ui.open): support lemonade #30845
Diffstat (limited to 'test/functional/lua/ui_spec.lua')
-rw-r--r-- | test/functional/lua/ui_spec.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/lua/ui_spec.lua b/test/functional/lua/ui_spec.lua index d5eede2885..5c727b3347 100644 --- a/test/functional/lua/ui_spec.lua +++ b/test/functional/lua/ui_spec.lua @@ -153,7 +153,7 @@ describe('vim.ui', function() vim.fn.executable = function() return 0 end ]] eq( - 'vim.ui.open: no handler found (tried: wslview, explorer.exe, xdg-open)', + 'vim.ui.open: no handler found (tried: wslview, explorer.exe, xdg-open, lemonade)', exec_lua [[local _, err = vim.ui.open('foo') ; return err]] ) end) |