Open
Conversation
Add comprehensive Neovim setup instructions to the editor integration documentation. Covers: - lazy.nvim configuration (modern standard) - packer.nvim configuration - Lua-based settings in init.lua - Keymap examples - Troubleshooting for Python provider issues Resolves psf#3960
for more information, see https://pre-commit.ci
4 tasks
cobaltt7
reviewed
Mar 29, 2026
docs/integrations/editors.md
Outdated
| config = function() | ||
| -- Format on save | ||
| vim.cmd([[ augroup black_on_save | ||
| autocmd! |
Collaborator
There was a problem hiding this comment.
The docs build failed with a syntax error on the !
Collaborator
|
Thanks for the PR! Please add a changelog entry |
- Add CHANGES.md entry for psf#5064 to pass changelog CI check - Replace vim.cmd([[...autocmd!...]]) with nvim_create_autocmd to avoid Pygments Lua lexer error on '!' token (Sphinx -W treats it as error) Made-with: Cursor
Author
|
Thanks! The docs syntax error has been fixed and a changelog entry has been added. CI is now passing. |
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Add comprehensive Neovim setup instructions to the editor integration documentation.
Closes: #5061
Covers:
Resolves #3960