Run docgen.sh

pull/93/head
Timothée Sterle 2 years ago
parent e59483d240
commit 8a9807adb3
No known key found for this signature in database
GPG Key ID: 136D558122196ED5

@ -944,7 +944,7 @@ vim.api.nvim_buf_del_keymap(0, 'i', '<Tab>')
## Defining user commands
The interface to create user commands was implemented on the PR below and is currently available only on neovim 0.7+ (nightly):
The interface to create user commands was implemented in the PR below and is currently available only in neovim 0.7+ (nightly):
- [Pull request #16752](https://github.com/neovim/neovim/pull/16752)

@ -1141,13 +1141,17 @@ first argument, with `0` representing the current buffer.
DEFINING USER COMMANDS
*luaguide-defining-user-commands*
There is currently no interface to create user commands in Lua. It is
planned, though:
The interface to create user commands was implemented in the PR below
and is currently available only in neovim 0.7+ (nightly):
- Pull request #11613: https://github.com/neovim/neovim/pull/11613
- Pull request #16752: https://github.com/neovim/neovim/pull/16752
For the time being, you're probably better off creating commands in
Vimscript.
- Global user command:
- |nvim_add_user_command()|
- |nvim_del_user_command()|
- Buffer-local user commands:
- |nvim_buf_add_user_command()|
- |nvim_buf_del_user_command()|
==============================================================================
DEFINING AUTOCOMMANDS

Loading…
Cancel
Save