Gregory Anders
Gregory Anders
When nvim-dap is running on a separate machine from the debugger then Nvim and the debugger will use different paths for source files. For example, if Nvim is running on...
Add a configuration frontend to easily configure LSP servers on a per-filetype basis. This is essentially a thin wrapper around the following process: 1. Create a FileType autocommand for the...
## Actual behavior Example (from `windows.txt`, line 131): ``` CTRL-W s *CTRL-W_s* CTRL-W S *CTRL-W_S* CTRL-W CTRL-S *CTRL-W_CTRL-S* ``` The only `(keycode)` element here is `CTRL-S`. All of the `CTRL-W`...
I no longer use scipy in OpenEmbedded in my day job which means this repository has been falling behind as it's difficult for me to test new contributions or update...
Make the default "goto" diagnostic maps jump to the next diagnostic in the buffer regardless of severity, rather than only cycling between diagnostics with the highest severity. Ref: https://github.com/neovim/neovim/pull/28490#issuecomment-2081497347
With so many default mappings, plugins are not able to detect if an existing mapping is one created by the user or one created by Nvim. Add a "default" field...
To the best of my knowledge, these match the mappings in vim-unimpaired exactly: https://github.com/tpope/vim-unimpaired/blob/master/plugin/unimpaired.vim This does not include _all_ of unimpaired's mappings, just the simple ones. For instance, this does...
This ticket specifically tracks enhancements and modifications to `vim.ui` proposed in #25272 and related issues. # Problem Creating floating windows with all of the visual goodies that most users expect...
This is a tracking issue to either upstream the `:LspStart`, `:LspStop`, `:LspRestart`, and `:LspInfo` commands from nvim-lspconfig or determine formally if those features are not wanted. `:checkhealth lsp` does a...
The default mapping for "jump to tag" is ``, but this is awkward or difficult to type on some keyboards. Nvim's LSP client sets `tagfunc` by default which enables jumping...