This repository was archived by the owner on Sep 2, 2025. It is now read-only.
Open
Conversation
|
Done now, and API bike-shedding is over as well. Here the documentation should be good, too, and require very little expanding on. |
|
But apparently there's some confusion about user autocommands -- people seem not to be aware that these are just standard autocommands with Maybe having such an autocommand as one of the examples would be helpful. |
|
Is this PR being worked on? If not I can share a PR with a way of creating Autocommands using the latest Neovim v0.7 API. For a heads up, here's an example of what it could look like: local augroup_name = vim.api.nvim_create_augroup(
"AutogroupName",
{ clear = true }
)
vim.api.nvim_create_autocommand(
"BufWritePost",
{
command = echo "Recent changes saved!",
group = augroup_name,
pattern = "*"
}
)For more information on the Autocommand API, refer to |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.