@codemirror/lint
Advanced tools
+6
-0
@@ -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); |
+2
-0
@@ -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" | ||
| } | ||
| } |
95915
0.36%2075
0.19%