| Commit message (Collapse) | Author | Age |
... | |
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Problem: 'tagfunc' does not indicate using a pattern.
Solution: Add the "r" flag. (Andy Massimino, closes vim/vim#7982)
https://github.com/vim/vim/commit/f90c855c71863296859780f7b4e0386e96f1c465
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Problem: Rss files not recognized.
Solution: Recognize .rss as XML. (Kivin Locke, closes vim/vim#7987)
https://github.com/vim/vim/commit/af125866db46405fdaf99ac4e43b630d196a4aa4
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Problem: Atom files not recognized.
Solution: Recognize .atom as XML. (Kivin Locke, closes vim/vim#7986)
https://github.com/vim/vim/commit/74b99f6ab6e0265ebee4ed496845f28e0904318d
N/A patches for version.c:
vim-patch:8.2.2622: GTK: error when starting up and -geometry is given
Problem: GTK: error when starting up and -geometry is given. (Dominique
Pellé)
Solution: Use another function to get the monitor if the window has not been
created yet. (closes vim/vim#7978)
https://github.com/vim/vim/commit/a555e6fcb6ec97b5ab30b20a340b228f4d820f14
vim-patch:8.2.2626: GTK3: error when starting up and -geometry is given
Problem: GTK3: error when starting up and -geometry is given. (Dominique
Pellé)
Solution: Use another function to get the monitor if the window has not been
created yet. (closes vim/vim#7978)
https://github.com/vim/vim/commit/240014321b0aa5d6eb00a70865fa9935fd888d60
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
[RFC] vim-patch:8.2.{1693,1703,1705}
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Problem: ":highlight clear" does not restore default link.
Solution: Remember the default link and restore it. (Antony Scriven,
closes vim/vim#6970, closes vim/vim#4405)
https://github.com/vim/vim/commit/213da551dec465e193619684b260bf9d5a8d6afc
|
|\ \ \ \ \
| | | | | |
| | | | | | |
[RFC] vim-patch 8.{1.2020,2.0093,2.0422}: add win_splitmove()
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | | |
Problem: It is not easy to change the window layout.
Solution: Add win_splitmove(). (Andy Massimino, closes vim/vim#4561)
https://github.com/vim/vim/commit/d20dcb3d011da6111153109f6e46fbd5c7fe9fb6
|
|/ / / / |
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
chore: remove deprecated lua module tshighlighter
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
lsp: fix highlighting for lsp markdown code blocks
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
treesitter: Update to 0.19.3
|
| | |_|_|/ /
| |/| | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The sematics and signature of this API is going to change, but we
don't wanna delay 0.5 for it. Mark API as unstable for now.
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Problem: Poke files are not recognized.
Solution: Add a filetype entry. (Matt Ihlenfield)
https://github.com/vim/vim/commit/c80f647512b001fb6952ed10d076d56c3d4b84e0
|
| |_|/ / /
|/| | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
With the new implementation added in
https://github.com/neovim/neovim/pull/14079 I think this is now working
well enough to enable it by default.
There are high CPU usage issues popping up now and then and they might
at least partially be related to the full-text sync.
|
| |/ / /
|/| | | |
|
|\ \ \ \
| | | | |
| | | | | |
lsp: add custom syntax rule for floating window
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* Allow specifying a languageId for a lsp
For some languages the filetype might not match the languageId the
language server accepts. In these cases the config for the language
server can contain a function which gets the current buffer and filetype
and returns a languageId. When it isn't provided the filetype is used
instead.
Example:
```lua
require'lspconfig'.sourcekit.setup{
get_language_id = function(bufnr, ft)
return 'swift'
end;
}
```
Closes #13093
* lsp: Change to get_language_id
Co-authored-by: Jan Dammshäuser <mail@jandamm.de>
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
port termdebug dissasembly window only (termdebug.vim)
This patch adds disassembly window to Termdebug
:Asm should bring up disassembly window
or setting:
g:termdebug_disasm_window
Values greater than 1 will set disasm window height.
Code works by calling gdb disassemble command, demangling output and
storing in Termdebug-asm-listing buffer + window.
Current pc address is parsed from 'addr=' cursor msg and we search for
that address in the disasm window. When the search fails, we execute a
new "disassemble $pc" command.
When in a location without a proper stack frame, "disassemble $pc" can
fail and in this case we add a +length argument and try again.
Tested with x86_64 gdb v10.1 and v8.2.1, and aarch64 gdb v7.12.
|
| |/ / /
|/| | |
| | | |
| | | |
| | | | |
* Implementation derived from and validated by vim-lsc authored by Nate
Bosch
|
|\ \ \ \
| |/ / /
|/| | | |
improve vimdoc generation
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
fix: fix empty line in lsp log after each run
|
| | | | |
| | | | |
| | | | |
| | | | | |
fix: address typo and review comments
|
| | | | |
| | | | |
| | | | |
| | | | | |
expecting boolean values
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
values true, or false.
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
[RDY] lsp: fix diagnostic reported on terminating EOL character
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Update Runtime Files For Haskell
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
port syntax file only
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
port haskellcomplete file only
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
port cabal, cabalconfig, cabalproject syntax file
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
port cabal syntax file only
|
| | | | | | |
|
|\ \ \ \ \ \
| |_|_|_|/ /
|/| | | | | |
lsp: invoke vim.notify when client exits with code or signal other than 0
|
| | |/ / /
| |/| | | |
|
| |/ / /
|/| | |
| | | |
| | | | |
Update runtime files
https://github.com/vim/vim/commit/30e9b3c4256710781c3bd64efb33f138e4e074b3
|