Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@codemirror/lsp-client

Package Overview
Dependencies
Maintainers
2
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codemirror/lsp-client - npm Package Compare versions

Comparing version
6.2.1
to
6.2.2
+6
-0
CHANGELOG.md

@@ -0,1 +1,7 @@

## 6.2.2 (2026-03-02)
### Bug fixes
In completion snippets from the server, treat `$1` the same as `${1}`.
## 6.2.1 (2025-11-20)

@@ -2,0 +8,0 @@

+1
-1
{
"name": "@codemirror/lsp-client",
"version": "6.2.1",
"version": "6.2.2",
"description": "Language server protocol client for CodeMirror",

@@ -5,0 +5,0 @@ "keywords": [

@@ -99,3 +99,3 @@ import type * as lsp from "vscode-languageserver-protocol"

if (item.insertTextFormat == 2 /* Snippet */) {
option.apply = (view, c, from, to) => snippet(text)(view, c, from, to)
option.apply = (view, c, from, to) => snippet(text.replace(/\$(\d+)/g, "${$1}"))(view, c, from, to)
option.label = item.label

@@ -102,0 +102,0 @@ }

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display