aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
Commit message (Collapse)AuthorAgeFilesLines
* feat: accept multiple clients/configs in LspRestart, LspStop #3438Guilherme Soares2024-11-171-2/+4
| | | | | | | | | | | | | | | | ## Problems: - `:LspStop` doesn't support list of client ids or config names. - `:LspRestart` doesn't support config names although supports list of client ids - Command completion uses ids and names, not allowing the user to hit enter immediately after finding the desired server ## Solution: - Unify `LspStop` and `LspRestart` implementation supporting lists of client ids and config names - Command completion only returns config names - Modify docs
* docs: adjust minimum support nvim versiondundargoc2024-10-031-1/+1
|
* feat(lspinfo): replace :LspInfo with :checkhealth #3339Justin M. Keyes2024-10-021-1/+1
| | | | | | | | | | | | Problem: :LspInfo has its own "inner platlform" of highlights, mappings etc. And it doesn't integrate with :checkhealth. Solution: - Move the lspinfo code to a healthcheck. - LspInfo features such as highlights, "floating window" presentation, etc., should be added to :checkhealth in Nvim core, if they are really needed. - Define a "q" mapping until Nvim stable has that in :checkhealth.
* refactor: rename "server_configurations" => "configs" #3330Justin M. Keyes2024-10-011-7/+7
| | | | | | | | | | | | | | Problem: The name `server_configurations` is extremely verbose and irritatingly formal and dogmatic. This overlong name is a constant nuisance when reading, writing, and coding. It's also not even correct: these configurations are just as much "client" configurations as they are "server" configurations. Solution: - Rename to a shorter name. - Leave placeholder files for any old URLs that link to the old location.
* docs: cleanup, deprecate APIs #3328Justin M. Keyes2024-09-291-3/+5
|
* docs: readme #3327Justin M. Keyes2024-09-291-37/+33
| | | | | | | | - improve overview for newcomers - call out plan for upstreaming "framework" parts to Nvim core - guide bug reports to neovim core - remove most mentions of wiki fix #3202
* docs: delete lspconfig-keybindings section (#3175)Gregory Anders2024-05-231-1/+1
| | | | | | This section is way too verbose and encourages sloppy copy-pasting. Nvim already ships help documentation for configuring the LSP client, so instead of duplicating that information, point users toward upstream docs instead.
* docs: update README with default map changes (#3139)Gregory Anders2024-05-061-5/+0
| | | See https://github.com/neovim/neovim/pull/28649.
* docs: update default mappings (#3128)Gregory Anders2024-04-281-1/+2
|
* docs: add new default maps for Nvim 0.10 (#3127)Gregory Anders2024-04-261-27/+14
| | | | | Also remove `LspAttach` and `LspDetach` examples. There are examples included in the Nvim docs, and we should be pointing users toward that documentation rather than duplicating it here.
* docs: update READMEGregory Anders2024-04-231-50/+61
| | | | | | Update the README with up-to-date information about Nvim defaults. Dramatically reduce the size and scope of the code snippets. Rename "suggested configuration" to simply "configuration".
* docs: make vimdocs consistent with readme (#2732)ii142023-07-251-1/+1
| | | Co-authored-by: ii14 <ii14@users.noreply.github.com>
* docs: link to github discussions, stackoverflow instead of discourseJustin M. Keyes2023-06-291-1/+1
|
* docs(readme): release process #2690Marc Jakobi2023-06-231-0/+8
|
* docs: remove plugin manager (#2563)Raphael2023-04-161-8/+1
|
* docs: add visual mode in vim.lsp.buf.code_action section (#2553)Raphael2023-04-101-1/+1
|
* docs: recommend LspAttach in readme (#2514)ii142023-03-181-55/+48
| | | Co-authored-by: ii14 <ii14@users.noreply.github.com>
* chore(license): move copyright notice to readme (#2448)Marc Jakobi2023-02-111-0/+8
| | | | | I noticed that GitHub can't parse the license SPDX ID form the license file. So I moved the copyright notice above the license text to the bottom of the readme.
* docs(readme): update luarocks shield urlsMarc Jakobi2023-02-051-1/+1
|
* chore: use luarocks-tag-release workflowMarc Jakobi2023-02-031-0/+2
|
* perf: update requires neovim version in doc (#2270)Raphael2022-11-301-1/+1
|
* fix: lspconfig help command typo (#2178)Kyohei Uto2022-10-071-1/+1
|
* docs: `vim.lsp.buf.formatting()` is deprecated (#2166)Horror Proton2022-10-021-1/+1
|
* Revert "docs: vim.lsp.buf.formatting() is deprecated #2077Justin M. Keyes2022-08-231-1/+1
| | | This reverts commit 589d38d3cf2e711cf848c12ed1d6ba38899a2f38.
* docs: vim.lsp.buf.formatting() is deprecated #2074AYOUB EL MHAMDI2022-08-211-1/+1
|
* fix(docs): wrong release URL #1979Kid2022-07-021-1/+1
| | | Co-authored-by: Justin M. Keyes <justinkz@gmail.com>
* docs: fix link #1875Clément Bœsch2022-06-281-1/+1
|
* docs: unverbose, mention "settings" paramJustin M. Keyes2022-06-131-61/+50
| | | | | | | | | | | | | | | | | Problem: - The docs are verbose. - The "settings" param is not really clarified anywhere. Solution: - Mention the "settings" param in the README. - Tighten up the wording. - Remove the "Use a loop to conveniently call 'setup'..." advice in the docs. It confuses users and doesn't really save much code. - Start to reduce the scope of nvim-lspconfig. - For example, it is redundant for it to document general LSP things. Thus, the help section *lspconfig-lsp* was removed. closes #1951
* docs: clarify and unverboseJustin M. Keyes2022-06-081-21/+6
|
* fix(docs): vim.lsp.buf.format -> vim.lsp.buf.formatting (#1936)Kurtis2022-06-031-1/+1
| | | | | | There doesn't appear to actually be a function called `format`. Instead, I believe what we actually want here is a call `formatting`. Co-authored-by: Kurtis Nusbaum <kcommiter@gmail.com>
* fix(docs): update example keybindings documentation (#1899)Kurtis2022-06-011-17/+20
|
* feat: add :LspLog command #1917William Boman2022-05-221-1/+1
|
* docs: update READMEMichael Lingelbach2022-04-281-0/+1
|
* docs: update readmeblack-desk2022-04-271-2/+2
| | | | | | | * Fix typo * Update chat room to point to matrix Co-authored-by: Michael Lingelbach <m.j.lbach@gmail.com>
* docs: update suggested keybinds (#1689)daangoossens222022-01-281-1/+1
|
* docs: fix alignment in readmeMichael Lingelbach2022-01-231-1/+1
|
* docs: update readme (#1677)Michael Lingelbach2022-01-231-80/+51
|
* docs: fix URLS to example configurations (#1604)Zeger Van de Vannet2021-12-241-2/+2
|
* chore(docs): remove windows notes from readmekylo2522021-12-081-4/+0
|
* docs: replace mention of deprecated APIs (#1532)zeertzjq2021-12-031-4/+4
|
* docs: update minimum requirements to nvim-0.6Michael Lingelbach2021-11-301-1/+1
| | | | | While not strictly required, compatibility guarantees are only provided for the latest release on the HEAD of lspconfig. Use a commit or tag for compatibility with previous releases.
* docs: make |lspconfig-server-configurations| jump to the markdown file (#1497)Michael Lingelbach2021-11-271-2/+2
| | | | | | | | | | * generating the tags at docgen and modifying the |lspconfig-server-configurations| tag allows `:help lspconfig-server-configurations` take you to ./doc/server_configurations.md * adding a modeline to the markdown file ensures it sets the correct filetype Co-authored-by: Javier López <graulopezjavier@gmail.com>
* docs: update intro formatting (#1454)not2021-11-191-1/+1
|
* docs(readme): stress that configs are community-maintained (#1440)Christian Clason2021-11-181-1/+4
| | | Also suggest helping test PRs with `needs-testing` label
* docs(readme): fix link to server_configurations.md (#1394)Bill Mill2021-11-091-3/+3
|
* docs: follow-up fixes from overhaul (#1389)Michael Lingelbach2021-11-091-7/+9
|
* docs: documentation overhaul (#1384)Michael Lingelbach2021-11-091-7/+7
| | | | | | * remove automated generation of vimdoc + ci * unify ADVANCED_README.md and vimdoc * rename CONFIGS.md to server_configurations.md, move into doc folder * move CONTRIBUTING.md to .github folder
* docs: clarify function of lspconfig (#1350)Michael Lingelbach2021-10-301-1/+1
|
* docs(readme): make it faster to get to config.md (#1238)Beau2021-10-011-1/+1
| | | Add link to start of README
* docs: readme formatting/layout (#1167)veleth2021-08-221-25/+47
| | | | | | + Refactored indentation of content inside ordered lists + Added empty lines separating elements + Replaced vim with lua in code blocks, so highlight won't be messed up + Fixed missing space in a comment