aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
Commit message (Collapse)AuthorAge
...
* | doc(lsp): various small fixes (#15113)Ido Ariel2021-07-17
|/ | | | | | - remove incorrect usage of docstrings - fix make_formatting_params return type documentation to 'DocumentFormattingParams' - make progress_handler private - fix links
* feat(job): add parameter to close stdinGregory Anders2021-07-12
| | | | | | | | | | | | | | | | Some programs behave differently when they detect that stdin is being piped. This can be problematic when these programs are used with the job control API where stdin is attached, but not typically used. It is possible to run the job using a PTY which circumvents this problem, but that includes a lot of overhead when simply closing the stdin pipe would suffice. To enable this behavior, add a new parameter to the jobstart options dict called "stdin" with two valid values: "pipe" (the default) implements the existing behavior of opening a channel for stdin and "null" which disconnects stdin (or, if you prefer, connects it to /dev/null). This is extensible so that other modes can be added in the future.
* fix(lsp): Add separator between codelens in virttext (#15049)Mathias Fußenegger2021-07-10
| | | | | | | | | | | | Before: Lens1Lens2 After: Lens1 | Lens2 Fixes https://github.com/neovim/neovim/issues/15048
* docs: regeneratemarvim2021-07-09
|
* docs: regeneratemarvim2021-07-08
|
* feat(lsp): highlight active parameter in signature help (#15018)Folke Lemaitre2021-07-07
|
* doc: "--remote" is not supported #14936cbarrete2021-07-07
| | | | There are plans to support the --remote-xx stuff (or something like it): #1750 #8326 But we don't need this doc meanwhile.
* doc: remove mentions of compile-time flags #14935cbarrete2021-07-07
| | | | Nvim always compiles everything in so those are useless at best and confusing at worst.
* doc/startup: cleanup; assign ENN to "conflicing configs" msg (#14971)Justin M. Keyes2021-07-03
|
* doc(options): Fix recommended PowerShell config (#14349)Dimitri Tcaciuc2021-07-02
| | | | | | | | | | | Ensure that * Shell uses UTF8 input/output mode * Stderr output is captured, in UTF8 * Program exit codes are correctly captured Update functional test harness and add tests for :make command. Closes #13713
* fix(doc/api): Remove 'border' as unsupported (#14916)Daniel Steinberg2021-06-28
| | | PR #13998 added support for floating window borders.
* fix(doc): remove reference to vim.lsp.callbacks (#14576)Matthieu Coudron2021-06-28
| | | | too old now, can be confusing
* [RDY] Add buffer information to tabline_update (#12481)John Gehrig2021-06-27
| | | | | | | | | | * Add buffer information to tabline_update Most terminal implementations of the tabline display buffer and tab information. Many neovim-qt users disable GuiTabline because it lacks functionality provided in the terminal implementation. The tabline_update event should include buffer information too, so client GUIs can display rich useful tabs.
* fix(doc/usr_41): don't mention 0o prefix for octs (#14906)Sean Dewar2021-06-25
| | | | | | v8.2.0886 isn't ported yet. Also remove mentions of Vim9 and legacy script for now. [skip ci]
* Update busy_start/busy_stop ui events documentation (#14415)Ghjuvan Lacambre2021-06-25
| | | Closes #14386
* vim-patch:8.2.1255: cannot use a lambda with quickfix functionsJan Edmund Lazo2021-06-23
| | | | | | Problem: Cannot use a lambda with quickfix functions. Solution: Add support for lambda. (Yegappan Lakshmanan, closes vim/vim#6499) https://github.com/vim/vim/commit/d43906d2e5969288f239df851f5ad7b1dc2c7251
* docs(starting): mention init.lua in paths and remove repetition (#14883)smolck2021-06-23
|
* Merge pull request #14849 from seandewar/demethod-curwinJan Edmund Lazo2021-06-19
|\ | | | | fix(doc): various fixes
| * fix(doc/index.txt): various ex command fixesSean Dewar2021-06-19
| | | | | | | | | | | | | | | | Add :eval and :checkhealth (:eval was also missing upstream). Fix :perlfile typo, add abbreviations for :perl, :perlfile and :perldo. Remove :scriptversion; it hasn't been ported yet (#14611). [skip ci]
| * fix(doc): :sleep! does not hide cursorSean Dewar2021-06-19
| | | | | | | | :sleep is the same as :sleep! in the port of v8.2.2366
| * fix(doc): remove :promptfind and :promptreplSean Dewar2021-06-19
| | | | | | | | :promptfind and :promptrepl are N/A for Nvim.
| * fix(doc): don't use method call syntax in examplesSean Dewar2021-06-19
| | | | | | | | The method call syntax patches aren't ported yet.
* | Merge pull request #14851 from ckipp01/hlCodeLensMichael Lingelbach2021-06-19
|\ \ | |/ |/|
| * Add hl group docs for codelensesckipp012021-06-20
| |
* | docs(treesitter): mention query help pageThomas Vigouroux2021-06-16
| |
* | docs(treesitter): tidy docs and remove legacy informationThomas Vigouroux2021-06-16
|/
* docs(lsp): Clarify opts for show_line_diagnostics()Shadman2021-06-15
|
* docs: regeneratemarvim2021-06-15
|
* Merge pull request #13165 from mfussenegger/codelensMichael Lingelbach2021-06-14
|\ | | | | feat(lsp): Add codelens support
| * feat(lsp): Add codelens supportMathias Fussenegger2021-06-14
| |
* | docs: regeneratemarvim2021-06-14
|/
* vim-patch:8.2.1354: test 59 is old styleJan Edmund Lazo2021-06-13
| | | | | | Problem: Test 59 is old style. Solution: Convert into a new style test. (Yegappan Lakshmanan, closes vim/vim#6604) https://github.com/vim/vim/commit/aa970abd0a987de96321d33db82f70bbceac931b
* Merge pull request #14788 from shadmansaleh/fix/lua_runtime1Björn Linse2021-06-13
|\ | | | | fixup(runtime): Fix lua runtime files not listed in :scriptnames
| * fixup(runtime): Fix lua runtime files not listedshadmansaleh2021-06-13
| | | | | | | | | | | | | | | | | | lua runtime files weren't listed in :scriptname & profiler. This fixes that. * Add tests * Small doc tweeks
* | vim-patch:8.2.0945: cannot use "z=" when 'spell' is offJan Edmund Lazo2021-06-12
| | | | | | | | | | | | | | Problem: Cannot use "z=" when 'spell' is off. Solution: Make "z=" work even when 'spell' is off. (Christian Brabandt, Gary Johnson, closes vim/vim#6227) https://github.com/vim/vim/commit/152e79e94bb935e75b866bd55479648cde11066a
* | vim-patch:8.1.1865: spellrare and spellrepall in the wrong orderJan Edmund Lazo2021-06-12
| | | | | | | | | | | | Problem: Spellrare and spellrepall in the wrong order. Solution: Put spellrare below spellrepall. (closes vim/vim#4820) https://github.com/vim/vim/commit/a3891681f72fd9efdea6444620d787358850d823
* | vim-patch:8.1.1838: there is :spellwrong and :spellgood but not :spellrareJan Edmund Lazo2021-06-12
|/ | | | | | Problem: There is :spellwrong and :spellgood but not :spellrare. Solution: Add :spellrare. (Martin Tournoij, closes vim/vim#4291) https://github.com/vim/vim/commit/08cc374dabd2a02785129fa1c0100f7745c244ad
* Merge pull request #14761 from janlazo/vim-8.2.2966Jan Edmund Lazo2021-06-11
|\ | | | | vim-patch:8.2.{1702,2422,2966,2971,2974}
| * vim-patch:8.2.2971: cannot yank a block without trailing spacesJan Edmund Lazo2021-06-10
| | | | | | | | | | | | Problem: Cannot yank a block without trailing spaces. Solution: Add the "zy" command. (Christian Brabandt, closes vim/vim#8292) https://github.com/vim/vim/commit/544a38e44db0f25ec4fa7a2a4666cf28a2336f33
* | refactor(source): Move lua file detection to do_sourceshadmansaleh2021-06-11
| | | | | | | | | | | | So now :source can run lua files too :) * feat: Add support for :[ranged]source for lua files
* | feat(runtime): Allow lua to be used in ftpluginshadmansaleh2021-06-11
| |
* | feat(runtime): Allow lua to be used in compilershadmansaleh2021-06-11
| |
* | feat(runtime): Allow lua to be used in colorschemesshadmansaleh2021-06-11
| | | | | | | | * tests(runtime): move runtime/plugin tests to functional/lua/runtime_spec
* | feat(startup): Source runtime/plugin/**/*.lua at startupshadmansaleh2021-06-11
|/ | | | | | For opt plugins these files are sourced on `:packadd` * `:runtime` Now can exexute lua files
* docs: regeneratemarvim2021-06-10
|
* Merge pull request #14510 from urandom/doc_nvim_buf_set_extmarkBjörn Linse2021-06-10
|\ | | | | Minor observational corrections to the nvim_buf_set_extmark documentation
| * Update the functio documentation in CViktor Kojouharov2021-05-10
| |
| * Minor observational corrections to the set_extmark documentationViktor Kojouharov2021-05-07
| | | | | | | | | | Add a note for the line and col, saying they are 0-based. The end_col appears to be exclusive, unline the end_line.
* | feat(lsp): Split out a `diagnostics_to_items` function from set_loclistMathias Fussenegger2021-06-07
| | | | | | | | | | Makes it easier to re-use the logic to populate the quickfix list instead of the location list.
* | docs: regeneratemarvim2021-06-06
| |