diff --git a/list-editor/index.js b/list-editor/index.js index e993863..1e8cc42 100644 --- a/list-editor/index.js +++ b/list-editor/index.js @@ -459,7 +459,7 @@ function editor(root, inputData, options) { let cursorInfo = null if (target.nodeName === 'TEXTAREA') cursorInfo = textareaCursorInfo(target, dir); - if (cursorInfo !== null && !cursorInfo.leaving && dir !== 0) { + if (cursorInfo !== null && !cursorInfo.leaving && dir !== 0 && !event.ctrlKey) { return true }