aboutsummaryrefslogtreecommitdiffstats
path: root/javascript/edit-attention.js
diff options
context:
space:
mode:
Diffstat (limited to 'javascript/edit-attention.js')
-rw-r--r--javascript/edit-attention.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/javascript/edit-attention.js b/javascript/edit-attention.js
index f3af9a4c..04464100 100644
--- a/javascript/edit-attention.js
+++ b/javascript/edit-attention.js
@@ -19,11 +19,17 @@ function keyupEditAttention(event) {
let beforeParen = before.lastIndexOf(OPEN);
if (beforeParen == -1) return false;
+ let beforeClosingParen = before.lastIndexOf(CLOSE);
+ if (beforeClosingParen != -1 && beforeClosingParen > beforeParen) return false;
+
// Find closing parenthesis around current cursor
const after = text.substring(selectionStart);
let afterParen = after.indexOf(CLOSE);
if (afterParen == -1) return false;
+ let afterOpeningParen = after.indexOf(OPEN);
+ if (afterOpeningParen != -1 && afterOpeningParen < beforeParen) return false;
+
// Set the selection to the text between the parenthesis
const parenContent = text.substring(beforeParen + 1, selectionStart + afterParen);
if (/.*:-?[\d.]+/s.test(parenContent)) {