language-server-protocol
Here are 238 public repositories matching this topic...
-
Updated
Sep 6, 2020 - Vim script
Minimized code
trait CLibrary {
@native
def foo(x: Int): Unit
}
object I9432 {
def main(args: Array[String]): Unit = {
new CLibrary {
override def foo(x: Int): Unit = println(x)
}.foo(1)
}
}
Output
$ java -version
openjdk version "11.0.8" 2020-07-14
$ C:\opt\dotty-0.26.0-RC1\bin\dotc.bat -deprecation -feature -d target\c
cc rust-lang/rls#1112
cc microsoft/language-server-protocol#376
This causes problems with displaying correct diagnostic span and code suggestion spans (here).
Community QA
-
Updated
Aug 28, 2020 - Rust
-
Updated
Sep 6, 2020 - Emacs Lisp
> .\cabal-hie-install help
********************************************************************************
No ghc installations found in $PATH.
The script requires at least one ghc in $PATH to be able to build hie.
********************************************************************************
No ghc installations found in $PATH.
The script requires at least one ghc in $PATH
-
Updated
Jul 29, 2020 - C++
-
Updated
Aug 30, 2020 - C++
-
Updated
Sep 1, 2020 - Vim script
-
Updated
Nov 28, 2019 - PHP
-
Updated
Aug 14, 2020 - Vim script
-
Updated
Sep 6, 2020 - Lua
-
Updated
Sep 6, 2020 - Python
Document the commands that clients should implement and their expected behaviour on https://github.com/eclipse/eclipse.jdt.ls/wiki/JDT-LS-Extensions
-
Updated
Aug 16, 2020 - TypeScript
Environment data
VS Code version: 1.34.0
Extension version (available under the Extensions sidebar): 2019.4.12954
OS and version: Ubuntu 19.04
Python version (& distribution if applicable, e.g. Anaconda): 3.6
Type of virtual environment used: virtualenv
Problem
The type hints in the stub file for the current module aren't used for autocompletion.
I have a foo.pyi
file as
Motivation
Currently the language server stores symbols (i.e. variables, classes, ...) in two locations:
- The source path, containing the parsed
.kt
source files from the user's workspace - The [class path](https://github.com/fwcd/kotlin-language-server/blob/master/server/
Elevator Pitch
LSP specifies a colour support capability which can be implemented as a textDocument/documentColor request. Quite a few language servers (CSS/R) support it well already.
Motivation
This is very useful for CSS, but also for plot tuning in data scienc
-
Updated
Aug 29, 2020 - Vim script
-
Updated
Sep 3, 2020
-
Updated
Jul 22, 2020 - TypeScript
-
Updated
Aug 31, 2020 - C#
-
Updated
Sep 7, 2020 - TypeScript
-
Updated
Sep 5, 2020 - TypeScript
-
Updated
Sep 2, 2020 - Crystal
-
Updated
Sep 2, 2020 - R
With version 0.4.1, we set the server capabilities to include text on save
But we always process the files from disk. Until such time as we actually use that text, we should not ask for it.
Improve this page
Add a description, image, and links to the language-server-protocol topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the language-server-protocol topic, visit your repo's landing page and select "manage topics."
Bug Description:
No react code is required anymore, we can have
.ts
extension instead of.tsx
.Steps to Reproduce: