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

@codemirror/lint

Package Overview
Dependencies
Maintainers
2
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codemirror/lint - npm Package Compare versions

Comparing version
6.9.2
to
6.9.3
+6
-0
CHANGELOG.md

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

## 6.9.3 (2026-01-27)
### Bug fixes
Fix an issue where the lint panel inappropriately blocks the default behavior of key combinations with Ctrl, Alt, or Cmd held.
## 6.9.2 (2025-11-03)

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

+2
-0

@@ -463,2 +463,4 @@ 'use strict';

let onkeydown = (event) => {
if (event.ctrlKey || event.altKey || event.metaKey)
return;
if (event.keyCode == 27) { // Escape

@@ -465,0 +467,0 @@ closeLintPanel(this.view);

@@ -461,2 +461,4 @@ import { Decoration, showPanel, EditorView, ViewPlugin, gutter, showTooltip, hoverTooltip, getPanel, logException, WidgetType, GutterMarker } from '@codemirror/view';

let onkeydown = (event) => {
if (event.ctrlKey || event.altKey || event.metaKey)
return;
if (event.keyCode == 27) { // Escape

@@ -463,0 +465,0 @@ closeLintPanel(this.view);

+2
-2
{
"name": "@codemirror/lint",
"version": "6.9.2",
"version": "6.9.3",
"description": "Linting support for the CodeMirror code editor",

@@ -38,4 +38,4 @@ "scripts": {

"type": "git",
"url": "https://github.com/codemirror/lint.git"
"url": "git+https://github.com/codemirror/lint.git"
}
}