From ed7f2678347ec0c34b822c70a4b0e4148775afad Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Tue, 30 Dec 2025 18:54:36 +0100 Subject: [PATCH 1/3] Use git+https format for package.json repository field --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a201015..9a418e7 100644 --- a/package.json +++ b/package.json @@ -35,6 +35,6 @@ }, "repository": { "type": "git", - "url": "https://github.com/codemirror/lint.git" + "url": "git+https://github.com/codemirror/lint.git" } } From 85e7e0f4eb99a7d5f8827b430154af939bfba9c0 Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Tue, 27 Jan 2026 19:35:15 +0100 Subject: [PATCH 2/3] Don't handle ctrl/alt/meta key combinations in panel key handler FIX: Fix an issue where the lint panel inappropriately blocks the default behavior of key combinations with Ctrl, Alt, or Cmd held. Closes https://github.com/codemirror/dev/issues/1664 --- src/lint.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lint.ts b/src/lint.ts index 9a52649..2b51222 100644 --- a/src/lint.ts +++ b/src/lint.ts @@ -525,6 +525,7 @@ class LintPanel implements Panel { constructor(readonly view: EditorView) { let onkeydown = (event: KeyboardEvent) => { + if (event.ctrlKey || event.altKey || event.metaKey) return if (event.keyCode == 27) { // Escape closeLintPanel(this.view) this.view.focus() From ee432ca1c386dabdba198590805a01db8a4e3684 Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Tue, 27 Jan 2026 19:36:12 +0100 Subject: [PATCH 3/3] Mark version 6.9.3 --- CHANGELOG.md | 6 ++++++ package.json | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f246d22..ff22b8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 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) ### Bug fixes diff --git a/package.json b/package.json index 9a418e7..1db379a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@codemirror/lint", - "version": "6.9.2", + "version": "6.9.3", "description": "Linting support for the CodeMirror code editor", "scripts": { "test": "cm-runtests",