All Projects → sublimelsp → Lsp

sublimelsp / Lsp

Licence: mit
Client implementation of the Language Server Protocol for Sublime Text

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Lsp

ide-go
Go language support for Atom-IDE, powered by Sourcegraph's Go Language Server
Stars: ✭ 39 (-96.17%)
Mutual labels:  language-server-protocol, lsp
camel-language-server
The Apache Camel LSP server implementation
Stars: ✭ 31 (-96.95%)
Mutual labels:  language-server-protocol, lsp
lsp-wl
A Wolfram Language Server
Stars: ✭ 157 (-84.58%)
Mutual labels:  language-server-protocol, lsp
lxtk
Language Client/Server Toolkit
Stars: ✭ 22 (-97.84%)
Mutual labels:  language-server-protocol, lsp
Atom Languageclient
Language Server Protocol support for Atom (the basis of Atom-IDE)
Stars: ✭ 385 (-62.18%)
Mutual labels:  lsp, language-server-protocol
vim-lamp
💡Language Server Protocol client for Vim.
Stars: ✭ 34 (-96.66%)
Mutual labels:  language-server-protocol, lsp
toy-language-server
Example language server (LSP) implementation for a toy language
Stars: ✭ 54 (-94.7%)
Mutual labels:  language-server-protocol, lsp
tower-lsp
Language Server Protocol implementation written in Rust
Stars: ✭ 455 (-55.3%)
Mutual labels:  language-server-protocol, lsp
Erlang ls
The Erlang Language Server
Stars: ✭ 363 (-64.34%)
Mutual labels:  lsp, language-server-protocol
Kak Lsp
Kakoune Language Server Protocol Client
Stars: ✭ 363 (-64.34%)
Mutual labels:  lsp, language-server-protocol
vis-lspc
language server protocol client for the vis editor
Stars: ✭ 24 (-97.64%)
Mutual labels:  language-server-protocol, lsp
Typescript Language Server
TypeScript & JavaScript Language Server
Stars: ✭ 462 (-54.62%)
Mutual labels:  lsp, language-server-protocol
vscode
The Visual Studio Code Extension for the Erlang Language Server
Stars: ✭ 62 (-93.91%)
Mutual labels:  language-server-protocol, lsp
atom-ide-scala
Scala & Dotty support for Atom IDE (🧟‍♂️ zombie repo)
Stars: ✭ 47 (-95.38%)
Mutual labels:  language-server-protocol, lsp
typescript-language-server
TypeScript & JavaScript Language Server
Stars: ✭ 1,118 (+9.82%)
Mutual labels:  language-server-protocol, lsp
LuaHelper
LuaHelper is a High-performance lua VSCode plugin, Language Server Protocol for lua.
Stars: ✭ 170 (-83.3%)
Mutual labels:  language-server-protocol, lsp
sublime-reason
Official Reason plugin for Sublime Text
Stars: ✭ 42 (-95.87%)
Mutual labels:  sublime-text, lsp
groovy-language-server
A language server for Groovy
Stars: ✭ 132 (-87.03%)
Mutual labels:  language-server-protocol, lsp
Elm Language Server
Language server implementation for Elm
Stars: ✭ 298 (-70.73%)
Mutual labels:  lsp, language-server-protocol
Monaco Languageclient
NPM module to connect Monaco editor with language servers
Stars: ✭ 419 (-58.84%)
Mutual labels:  lsp, language-server-protocol

ℹ️ You are reading the README of the st4000-exploration branch. This branch targets ST4. If you are looking for the ST3 version, switch to the master branch.

LSP

License GitHub release Github Action Coverage Status SublimeHQ Discord

Language Server Protocol support for Sublime Text that gives you IDE features.

diagnostics screen-shot

Installation

Stable Version

Open the command palette and run Package Control: Install Package, then select LSP.

Development Version

Clone this repository into your Packages directory. Open the command palette and run Package Control: Satisfy Dependencies.

Getting started

Follow the installation steps for a specific language server.

Open a document supported by the language server. LSP should report the language server starting in the status bar.

See more information in the documentation 📖.

Customisation of the popups

LSP uses mdpopups to display the popup. You can override its style by creating a Packages/User/mdpopups.css file. See the mdpopups documentation for more details.

Getting help

If you have any problems, see the troubleshooting guide for tips and known limitations. If the documentation cannot solve your problem, you can look for help in:

LSP specification implementation status

Text Document Capabilities

  • ✅ synchronization
    • ✅ didOpen
    • ✅ didChange
      • ✅ Full text sync
      • ✅ Incremental text sync
    • ✅ willSave
    • ✅ willSaveWaitUntil
    • ✅ didSave
      • ✅ Include text
    • ✅ didClose
  • ✅ completion
    • ✅ insertText
    • ✅ textEdit
    • ❌ prefix filter textEdit
    • ✅ documentation (both static and from completionItem/resolve)
    • ✅ Run command after inserting completion
    • ❌ insertReplaceEdit variant
  • ✅ hover
  • ✅ signatureHelp
    • ❌ context
  • ✅ declaration
    • ✅ link support
  • ✅ definition
    • ✅ link support
  • ✅ typeDefinition
    • ✅ link support
  • ✅ implementation
    • ✅ link support
  • ✅ references
  • ✅ documentHighlight
  • ✅ documentSymbol
  • ✅ codeAction
    • ✅ resolve
  • ✅ codeLens (only when backed by a helper package)
  • ❌ documentLink
  • ✅ colorProvider
  • ✅ formatting
  • ✅ rangeFormatting
  • ❌ onTypeFormatting
  • ✅ rename
  • ✅ publishDiagnostics
  • ❌ foldingRange sublimehq/sublime_text#3389
  • ✅ selectionRange
  • ❌ semanticHighlighting #887, sublimehq/sublime_text#817
  • ❌ callHierarchy

Workspace Capabilities

  • ✅ applyEdit
  • ✅ workspaceEdit
    • ✅ documentChanges
    • ❌ resourceOperations
    • ❌ failureHandling
  • ✅ didChangeConfiguration
  • ❌ didChangeWatchedFiles #892, sublimehq/sublime_text#2669
  • ✅ symbol
  • ✅ executeCommand

Window Capabilities

  • ✅ workDoneProgress
    • ✅ create
    • ❌ cancel
  • ✅ showMessage request additionalPropertiesSupport

Dynamic Registration

✅ Fully implemented

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].