Skip to content
#

language-server

Here are 241 public repositories matching this topic...

uyar
uyar commented May 24, 2019

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

Mlocik97
Mlocik97 commented Feb 20, 2021

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

radeksimko
radeksimko commented Jun 10, 2020

Current Version

0.3.2

Use-cases

The language server has to obtain schema in order to have data for completion candidates and other features from whatever providers the user has in their configuration.

This currently happens literally behind the scenes, asynchronously, without the user knowing, which means the user isn't literally "blocked" while we're obtaining schema

clangd
Leon0402
Leon0402 commented Sep 15, 2020

Currently clangd doesn't seem to process doxygen commands or at least not all of them (there are different supported syntax formats by doxygen).

A sample method produces this output by clangd
image
As seen in the screenshot the commands like \brief, \param are ignored.

The Vs Code C/C

erlang_ls
Vidminas
Vidminas commented Jul 1, 2019

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

Strepto
Strepto commented Nov 8, 2020

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

Improve this page

Add a description, image, and links to the language-server topic page so that developers can more easily learn about it.

Curate this topic

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."

Learn more