From c6cae175228cce945651890db392a2f9b3f59d5e Mon Sep 17 00:00:00 2001 From: Jonatan Heyman Date: Mon, 14 Apr 2025 14:55:11 +0200 Subject: [PATCH] Rename Emacs mark mode -> Selection mark mode --- src/editor/commands.js | 2 +- src/editor/{emacs-mode.js => mark-mode.js} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/editor/{emacs-mode.js => mark-mode.js} (100%) diff --git a/src/editor/commands.js b/src/editor/commands.js index 890174d..1844ec2 100644 --- a/src/editor/commands.js +++ b/src/editor/commands.js @@ -84,7 +84,7 @@ const HEYNOTE_COMMANDS = { copy: copyCommand, } -// emacs-mode:ify all cursor/select commands from CodeMirror +// selection mark-mode:ify all cursor/select commands from CodeMirror for (let commandSuffix of [ "CharLeft", "CharRight", "CharBackward", "CharForward", diff --git a/src/editor/emacs-mode.js b/src/editor/mark-mode.js similarity index 100% rename from src/editor/emacs-mode.js rename to src/editor/mark-mode.js