-
I'll start by stating my problem is probably due to my lack of understanding the nvim api and/or Aniseed and nfnl. I have a small plugin that I'm porting from Aniseed and I seem to be running into trouble with this last section: Aniseed version
Is there an equivalent to 'ex.command_' in nfnl? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
So The "native" way to call an ex command now is https://neovim.io/doc/user/lua.html#vim.cmd() |
Beta Was this translation helpful? Give feedback.
-
That was exactly the pointer I needed. Thank you for your help!
…On Thu, Sep 14, 2023 at 1:24 PM Oliver Caldwell ***@***.***> wrote:
So nvim.* was actually https://github.com/norcalli/nvim.lua which is now
merged into Neovim core (has been for ages actually). I used to keep people
using nvim.lua because it had some extras that didn't get merged but now
I don't think it's wroth it and I think it's worth using the built ins
since they're so good now.
The "native" way to call an ex command now is
https://neovim.io/doc/user/lua.html#vim.cmd()
—
Reply to this email directly, view it on GitHub
<#20 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AE2BFH42RJG62OKDVB3PXV3X2M4WLANCNFSM6AAAAAA4XOM7QA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
So
nvim.*
was actually https://github.com/norcalli/nvim.lua which is now merged into Neovim core (has been for ages actually). I used to keep people usingnvim.lua
because it had some extras that didn't get merged but now I don't think it's wroth it and I think it's worth using the built ins since they're so good now.The "native" way to call an ex command now is https://neovim.io/doc/user/lua.html#vim.cmd()