Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | doc + extmarks tweaks #11421 | Justin M. Keyes | 2019-11-25 | |
| | | | | - nvim_buf_get_extmarks: rename "amount" => "limit" - rename `set_extmark_index_from_obj` | |||
* | Bring vim into local scope | Ashkan Kiani | 2019-11-24 | |
| | ||||
* | Add support for textDocument/references. | Ashkan Kiani | 2019-11-24 | |
| | | | | | | Add set_qflist and set_loclist. - Also add locations_to_items, which calculates byte offsets for character positions in files and avoids unnecessary operations. | |||
* | Merge branch 'master' into lsp-followup | Ashkan Kiani | 2019-11-24 | |
|\ | ||||
| * | Lua: vim.env, vim.{g,v,w,bo,wo} #11442 | Ashkan Kiani | 2019-11-24 | |
| | | | | | | | | | | | | | | | | - Add vim variable meta accessors: vim.env, vim.{g,v,w,bo,wo} - Redo gen_char_blob to generate multiple blobs instead of just one so that multiple Lua modules can be inlined. - Reorder vim.lua inclusion so that it can use previously defined C functions and utility functions like vim.shared and vim.inspect things. - Inline shared.lua into nvim, but also keep it available in runtime. | |||
* | | UI tweaks. | Ashkan Kiani | 2019-11-23 | |
| | | | | | | | | | | | | - Hide diagnostics on client exit - Stop insert on popup focus. - Hide popup on insertchar (for signature_help) | |||
* | | Improve the character_offset code. | Ashkan Kiani | 2019-11-22 | |
| | | ||||
* | | Improve performance of util.set_lines + bugfix | Ashkan Kiani | 2019-11-22 | |
| | | | | | | | | | | Also permit character_offset for col past the end of line (useful in range formatting). | |||
* | | Fix encoding translation in other places. | Ashkan Kiani | 2019-11-21 | |
| | | ||||
* | | Remove comments. | Ashkan Kiani | 2019-11-21 | |
| | | ||||
* | | Fix position params for encoding. | Ashkan Kiani | 2019-11-21 | |
| | | ||||
* | | Account for character length in jump position. | Ashkan Kiani | 2019-11-21 | |
| | | ||||
* | | 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 | |
| |