Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | | Fix hovers staying on bufhidden | Ashkan Kiani | 2019-11-21 | |
| | | ||||
* | | Updates | Ashkan Kiani | 2019-11-21 | |
| | | | | | | | | | | | | | | | | - Use correct implementation of text_edits. - Send indent options to rangeFormatting and formatting. - Remove references to vim bindings and filetype from lsp.txt - Add more examples to docs. - Add before_init to allow changing initialize_params. | |||
* | | Merge remote-tracking branch 'origin/master' into lsp-followup | Ashkan Kiani | 2019-11-21 | |
|\| | ||||
| * | lsp: transmit "\n" after last line when 'eol' is set | Björn Linse | 2019-11-21 | |
| | | | | | | | | | | Otherwise some servers like clangd will emit spurious "no newline at end of file" warnings. | |||
* | | Remove resolve_bufnr/lualint | Ashkan Kiani | 2019-11-20 | |
| | | ||||
* | | Use the apply_text_edits from util. | Ashkan Kiani | 2019-11-20 | |
| | | ||||
* | | Fix reference in rename. | Ashkan Kiani | 2019-11-20 | |
| | | ||||
* | | Add full text_edit implementation. | Ashkan Kiani | 2019-11-20 | |
| | | | | | | | | | | | | | | | | - Implements textDocument/formatting, textDocument/rangeFormatting, workspace/applyEdit. TODO: - still has edge cases around replacement probably. Only tested with inserts on the same position. | |||
* | | Extend list_extend to take start/finish. | Ashkan Kiani | 2019-11-20 | |
| | | ||||
* | | Use err_message in default_callbacks | Ashkan Kiani | 2019-11-20 | |
| | | ||||
* | | Satisfy lualint. | Ashkan Kiani | 2019-11-20 | |
| | | ||||
* | | Fix rename support. | Ashkan Kiani | 2019-11-20 | |
| | | ||||
* | | Spaces not tabs. | Ashkan Kiani | 2019-11-20 | |
| | | ||||
* | | Change error writer to not be annoying. | Ashkan Kiani | 2019-11-20 | |
| | | ||||
* | | Change callback resolution to be dynamic. | Ashkan Kiani | 2019-11-20 | |
| | | | | | | | | | | This allows default_callbacks to be specified after client creation to be considered. Also it simplifies the code. | |||
* | | Move everything to buf & default_callbacks | Ashkan Kiani | 2019-11-20 | |
| | | | | | | | | | | | | | | | | - Rename builtin_callbacks to default_callbacks and slightly change its semantics: - No longer contains the default implementations. Instead, any default_callbacks will be used in preference for our .buf methods. - Add this to the docs. | |||
* | | Add everything to lsp.buf and get rid of autoload. | Ashkan Kiani | 2019-11-20 | |
| | | ||||
* | | Add lsp.buf and hover implementation. | Ashkan Kiani | 2019-11-20 | |
| | | ||||
* | | Bugfix. Don't use nvim.lua that doesn't exist :) | Ashkan Kiani | 2019-11-20 | |
| | | ||||
* | | Add vim.uri_to_bufnr | Ashkan Kiani | 2019-11-20 | |
| | | ||||
* | | Bugfixes. | Ashkan Kiani | 2019-11-20 | |
| | | | | | | | | | | - Return after an error in RPC. - Use an empty vim table for serialization. | |||
* | | Bugfix for floating_preview | Ashkan Kiani | 2019-11-20 | |
| | | | | | | | | Don't modify your inputs. | |||
* | | Reduce code blocks in markdown previews. | Ashkan Kiani | 2019-11-20 | |
|/ | | | | | | If the preview is just a code block, then use the language as the filetype instead of using markdown. This reduces the size of the preview. | |||
* | lua LSP client: initial implementation (#11336) | Ashkan Kiani | 2019-11-13 | |
| | | | | | | Mainly configuration and RPC infrastructure can be considered "done". Specific requests and their callbacks will be improved later (and also served by plugins). There are also some TODO:s for the client itself, like incremental updates. Co-authored by at-tjdevries and at-h-michael, with many review/suggestion contributions. | |||
* | Lua: Use vim.validate() instead of assert() | Justin M. Keyes | 2019-11-10 | |
| | ||||
* | Lua: vim.validate() | Justin M. Keyes | 2019-11-10 | |
| | ||||
* | Lua: vim.validate() | Hirokazu Hata | 2019-11-10 | |
| | | | | | | | We often want to do type checking of public function arguments. - test: Rename utility_function_spec.lua to vim_spec.lua - .luacov: Map lua module names | |||
* | lua: vim.rpcrequest, vim.rpcnotify, vim.NIL | Björn Linse | 2019-11-10 | |
| | ||||
* | runtime: Use module pattern with vim/shared.lua | Hirokazu Hata | 2019-10-23 | |
| | | | | | It's a bit cumbersome for us to add an export target every time we define a new function. It's also cumbersome to care about the order of definition when creating a new function by referring to other functions in the module. | |||
* | lua/stdlib: adjust some validation messages #11271 | Hirokazu Hata | 2019-10-26 | |
| | | | | close #11271 | |||
* | tree-sitter: use "module" pattern in lua source | Björn Linse | 2019-09-28 | |
| | ||||
* | tree-sitter: simplify editing using the new old_byte_size parameter | Björn Linse | 2019-09-28 | |
| | ||||
* | tree-sitter: fix lint, delete "demo" plugin (replaced by functional tests) | Björn Linse | 2019-09-28 | |
| | ||||
* | tree-sitter: improve parser API (shared parser between plugins) | Björn Linse | 2019-09-28 | |
| | ||||
* | tree-sitter: inspect language | Björn Linse | 2019-09-28 | |
| | ||||
* | tree-sitter: rename tree_sitter => treesitter for consistency | Björn Linse | 2019-09-28 | |
| | ||||
* | tree-sitter: add basic testing on ci | Björn Linse | 2019-09-28 | |
| | | | | build tree-sitter c parser on ci for testing purposes | |||
* | tree-sitter: support pre-registration of languages | Björn Linse | 2019-09-28 | |
| | ||||
* | tree-sitter: objectify API | Björn Linse | 2019-09-28 | |
| | ||||
* | tree-sitter: split tree-sitter lua interface from demo code | Björn Linse | 2019-09-28 | |
| | ||||
* | tree-sitter: load parsers as .so files | Björn Linse | 2019-09-28 | |
| | ||||
* | tree-sitter: initial tree-sitter support | Björn Linse | 2019-09-28 | |
| | ||||
* | test: Rename meth_pcall to pcall_err | Justin M. Keyes | 2019-09-06 | |
| | | | | | | | - Rename `meth_pcall`. - Make `pcall_err` raise an error if the function does not fail. - Add `vim.pesc()` to treat a string as literal where a Lua pattern is expected. | |||
* | man.vim: Handle ANSI escape sequences with ":" #10267 | Kovas Palunas | 2019-06-30 | |
| | | | | closes #10267 | |||
* | doc #10017 | Justin M. Keyes | 2019-05-25 | |
| | | | | | - gen_vimdoc.py: fancy "bullet" - rework `:help channel-callback` - rename `:help buffered` to `:help channel-buffered` | |||
* | lua/shared: share trim() impl | Justin M. Keyes | 2019-05-20 | |
| | ||||
* | lint | Justin M. Keyes | 2019-05-19 | |
| | ||||
* | lua/shared: share more stuff | Justin M. Keyes | 2019-05-19 | |
| | | | | | Leave trim() in vim.lua, because gen_vimdoc.py needs at least one function in there, else it gets confused... | |||
* | lua/shared: share deepcopy() with test/* | Justin M. Keyes | 2019-05-19 | |
| | | | | deepcopy() was duplicated in test/helpers.lua | |||
* | gen_vimdoc.py: support lua/shared.lua module [ci skip] | Justin M. Keyes | 2019-05-19 | |
| |