aboutsummaryrefslogtreecommitdiffstats
path: root/lua
Commit message (Collapse)AuthorAgeFilesLines
* hls: add a default formatterMichael Lingelbach2021-02-171-0/+5
|
* Merge pull request #738 from mjlbach/fix_autostartMichael Lingelbach2021-02-171-1/+1
|\ | | | | rename launch -> autostart, add documentation
| * rename launch -> autostart, add documentationMichael Lingelbach2021-02-171-1/+1
| |
* | Merge pull request #721 from mjlbach/disable_autostartMichael Lingelbach2021-02-171-9/+37
|\| | | | | Add option to disable autostart
| * Add option to disable autostartMichael Lingelbach2021-02-161-9/+37
| |
* | Merge pull request #733 from mjlbach/fix_on_attachMichael Lingelbach2021-02-151-3/+3
|\ \ | | | | | | fix on_attach to correctly pass bufnr as second argument
| * | fix on_attach to correctly pass bufnr as second argumentMichael Lingelbach2021-02-141-3/+3
| | |
* | | lspconfig: use vim.notify to warn of absent LSP executableMatthieu Coudron2021-02-151-1/+1
|/ /
* | nimls: Use buffer directory as fallback instead of $HOMEPeter Lithammer2021-02-041-1/+1
| |
* | nimls: Add support for .nimble files as root_dirPeter Lithammer2021-02-041-1/+3
|/
* disable modifiable option in LspInfo floatwinbitcoder2021-02-031-0/+1
|
* rust_analyzer: Fix the root_dir shell commandSteven Arcangeli2021-02-021-1/+1
|
* Fix metatable __index for defining new language serversMichael Lingelbach2021-01-311-1/+1
|
* Update clangd installation linkNamkhai B2021-01-301-1/+1
| | | | Clangd's docs moved to https://clangd.llvm.org
* Add sqls support (#422)rayx2021-01-301-0/+29
| | | * add sqls support
* JDT LS: Add callback for language/statusHiPhish2021-01-301-10/+30
| | | | | | Added a callback for this custom notification. On large Java projects startup can take several seconds, so having feedback during that time is very useful.
* JDT LS: add more root pattern filesHiPhish2021-01-301-1/+20
| | | | | | There are three common build systems for Java: Ant, Maven and Gradle. Each has its own configuration file, and this PR adds those files are root directory markers.
* graphql: remove package.json, fix docgenMichael Lingelbach2021-01-271-1/+0
|
* Add GraphQL Language ServiceJoosep Alviste2021-01-271-0/+31
|
* Merge pull request #658 from elianiva/feat/v-lang-serverMichael Lingelbach2021-01-271-0/+36
|\ | | | | feat: added vls
| * feat: added vlselianiva2021-01-121-0/+36
| |
* | Merge pull request #686 from ↵Michael Lingelbach2021-01-271-0/+7
|\ \ | | | | | | | | | | | | lithammer/bash-language-server-prevent-recursive-scanning bashls: Set GLOB_PATTERN to prevent recursive scanning
| * | bashls: Set GLOB_PATTERN to prevent recursive scanningPeter Lithammer2021-01-201-0/+7
| | |
* | | Merge pull request #671 from mjlbach/kotlin_update_rootsMichael Lingelbach2021-01-261-3/+9
|\ \ \ | | | | | | | | kotlin: update roots to fallback to build.gradle
| * | | kotlin: update roots to fallback to build.gradleMichael Lingelbach2021-01-151-3/+9
| | | |
* | | | omnisharp: update instructions for darwin/linuxMichael Lingelbach2021-01-251-2/+10
| | | |
* | | | remove client/registerCapability handlerMichael Lingelbach2021-01-251-20/+0
| | | |
* | | | Remove deprecated commands :LspInstall and :LspInstallInfoMichael Lingelbach2021-01-241-16/+0
| | | |
* | | | Merge pull request #690 from teto/compact-lsp-infoMichael Lingelbach2021-01-241-16/+22
|\ \ \ \ | | | | | | | | | | chore: make LspInfo output more compact
| * | | | LspInfo: make output more compactMatthieu Coudron2021-01-241-16/+22
| | | | | | | | | | | | | | | | | | | | to save screen estate
* | | | | Merge pull request #680 from delphinus/feature/use-nvim-execMichael Lingelbach2021-01-221-7/+0
|\ \ \ \ \ | | | | | | | | | | | | Use nvim_exec
| * | | | | Remove an unused funcdelphinus2021-01-201-7/+0
| | | | | |
* | | | | | Merge pull request #668 from mhartington/angularls-binMichael Lingelbach2021-01-221-5/+4
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | use new global bin command
| * | | | | use new global bin commandMike Hartington2021-01-141-5/+4
| | | | | |
* | | | | | Merge pull request #672 from mjlbach/refactor_lspinfoMichael Lingelbach2021-01-222-114/+120
|\ \ \ \ \ \ | | | | | | | | | | | | | | lspinfo: move to module
| * | | | | | lspinfo: move to moduleMichael Lingelbach2021-01-152-114/+120
| | | | | | |
* | | | | | | Correct dirname typo in racket_langserverckipp012021-01-221-1/+1
| |_|_|_|/ / |/| | | | |
* | | | | | Add racket_langserver.ckipp012021-01-201-0/+28
| |_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | This adds in a basic configuration for the Racket langauage server. https://github.com/jeapostrophe/racket-langserver
* | | | | Merge pull request #678 from mjlbach/pyright_update_rootMichael Lingelbach2021-01-181-1/+12
|\ \ \ \ \ | | | | | | | | | | | | pyright: add current file directory as fallback for root
| * | | | | pyright: add current file directory as fallback for rootMichael Lingelbach2021-01-181-1/+12
| |/ / / /
* | | | | vimls: change to use cwd instead of home for rootMichael Lingelbach2021-01-181-1/+1
| | | | |
* | | | | scry: Fix missing function call in root_dirPeter Lithammer2021-01-181-1/+1
|/ / / /
* | | | Add handling for nil filetypesMichael Lingelbach2021-01-151-1/+1
| | | |
* | | | Merge pull request #509 from mjlbach/remove_deprecated_handlersMichael Lingelbach2021-01-152-46/+0
|\ \ \ \ | |_|/ / |/| | | Remove deprecated handlers
| * | | remove deprecated handlers that were moved to neovim coreMichael Lingelbach2021-01-082-46/+0
| | | |
* | | | Merge pull request #670 from mjlbach/add_executable_checkMichael Lingelbach2021-01-151-2/+7
|\ \ \ \ | | | | | | | | | | Check if language server is executable before trying to start it
| * | | | Check if language server is executable before trying to start itMichael Lingelbach2021-01-141-2/+7
| | |/ / | |/| |
* | | | LspInfo: fix display when client cmd contains newlinesMichael Lingelbach2021-01-142-32/+49
| | | |
* | | | LspInfo: fix when filetypes not definedMichael Lingelbach2021-01-141-9/+20
|/ / /
* | | Fix root detection for LspInfo, cache setupMichael Lingelbach2021-01-142-10/+12
| | |