The Wayback Machine - https://web.archive.org/web/20210826153744/https://github.com/topics/lsp
Skip to content
#

lsp

Here are 312 public repositories matching this topic...

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

erlang_ls
QuinnFreedman
QuinnFreedman commented Sep 17, 2020

Often, something goes wrong in my setup of kak-lsp (a language server is installed incorrectly, the command I specified for that LSP is wrong, the plugin just isn't enabled for the window, I forgot to start the LSP, my kak-lsp.toml is invalid or in the wrong place, my code project is setup wrong, etc., etc.) When this happens there are two problems that make it more difficult to solve:

  1. **T
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 lsp 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 lsp topic, visit your repo's landing page and select "manage topics."

Learn more