-
Updated
Aug 2, 2021 - Lua
language-server
Here are 231 public repositories matching this topic...
-
Updated
Aug 2, 2021 - Scala
-
Updated
Jul 27, 2021 - TypeScript
-
Updated
Aug 2, 2021 - PHP
-
Updated
Aug 1, 2021 - TypeScript
-
Updated
Jul 29, 2021
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
-
Updated
Aug 2, 2021 - Lua
Add a configuration flag that disables the Java-to-Kotlin converter in external sources. This would also require declaring the option in the vscode-kotlin
client.
-
Updated
Jul 20, 2021 - Vim script
multi root support?
I noticed that python's pyright lsp only fires up one instance for multiple python projects, would it make sense to have a similar feature in clojure-lsp?
Some related quote from the doc (https://github.com/microsoft/pyright/blob/master/docs/configuration.md):
Multi-root workspaces (“Add Folder to Workspace…”) are supported, and each workspace
Is your feature request related to a problem? Please describe.
Now I need to write svelte.showCompiledCodeToSide
command everytime I switch to another file to be able to see compiled code of that file.
Describe the solution you'd like
When I open compiled version of code by svelte.showCompiledCodeToSide
command, it would be nice if it would automatically change that compiled versi
-
Updated
Jul 19, 2021 - TypeScript
-
Updated
Aug 2, 2021 - TypeScript
Current Version
0.5.3
Use-cases
Currently we only expose rootModulePaths
in "LSP native" configuration:
Some runtime settings which we don't strictly need to know before the server is actually initialized is still exposed via CLI flags onl
-
Updated
Aug 2, 2021 - Rust
-
Updated
Jun 10, 2021 - TypeScript
We should improve the test coverage for the FilePatternAssociation to avoid any regressions in the future.
-
Updated
Aug 3, 2021 - C#
Describe the bug
If I set
otp_path: "/packages/erlang/erlang-22.3.2/"
then OTP packages are not indexed. If I remove the trailing path separator, then they are.
Our path expansion algorithms shouldn't care.
-
Updated
Jul 29, 2021 - TypeScript
In extension.ts
when the client options are created, these parameters are passed in:
fileEvents: [
workspace.createFileSystemWatcher('**/*.?(e)y?(a)ml'),
workspace.createFileSystemWatcher('**/*.json')
]
I am not really sure what the first FileSystemWatcher does - commenting it out does not break language server functionality (on the server side, the `documents.on
Expected Behavior
I would like to be warned that an "in port
" would be stripped if no subscription is implemented.
Current Behavior
port module Main exposing (..)
-- Define an inPort (but no implementation yet)
port inPort : (String -> msg) -> Sub msg
subscriptions : Model -> Sub Msg
subscriptions _ =
Sub.none -- inPort is never subscribed to
Current
-
Updated
May 30, 2021 - TypeScript
Improve this page
Add a description, image, and links to the language-server 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 topic, visit your repo's landing page and select "manage topics."
I am using this extension as part of the
coc-sh
plugin for coc.nvim. When I am doing the file completion, I do not see hidden files and directories suggested. Is there a way to enable this?