Remove unneeded code
This commit is contained in:
parent
0935d2c304
commit
0eb5fde2fd
|
@ -18,22 +18,11 @@ function keyupEditAttention(event) {
|
||||||
const before = text.substring(0, selectionStart);
|
const before = text.substring(0, selectionStart);
|
||||||
let beforeParen = before.lastIndexOf(OPEN);
|
let beforeParen = before.lastIndexOf(OPEN);
|
||||||
if (beforeParen == -1) return false;
|
if (beforeParen == -1) return false;
|
||||||
let beforeParenClose = before.lastIndexOf(CLOSE);
|
|
||||||
while (beforeParenClose !== -1 && beforeParenClose > beforeParen) {
|
|
||||||
beforeParen = before.lastIndexOf(OPEN, beforeParen - 1);
|
|
||||||
beforeParenClose = before.lastIndexOf(CLOSE, beforeParenClose - 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Find closing parenthesis around current cursor
|
// Find closing parenthesis around current cursor
|
||||||
const after = text.substring(selectionStart);
|
const after = text.substring(selectionStart);
|
||||||
let afterParen = after.indexOf(CLOSE);
|
let afterParen = after.indexOf(CLOSE);
|
||||||
if (afterParen == -1) return false;
|
if (afterParen == -1) return false;
|
||||||
let afterParenOpen = after.indexOf(OPEN);
|
|
||||||
while (afterParenOpen !== -1 && afterParen > afterParenOpen) {
|
|
||||||
afterParen = after.indexOf(CLOSE, afterParen + 1);
|
|
||||||
afterParenOpen = after.indexOf(OPEN, afterParenOpen + 1);
|
|
||||||
}
|
|
||||||
if (beforeParen === -1 || afterParen === -1) return false;
|
|
||||||
|
|
||||||
// Set the selection to the text between the parenthesis
|
// Set the selection to the text between the parenthesis
|
||||||
const parenContent = text.substring(beforeParen + 1, selectionStart + afterParen);
|
const parenContent = text.substring(beforeParen + 1, selectionStart + afterParen);
|
||||||
|
@ -53,7 +42,7 @@ function keyupEditAttention(event) {
|
||||||
delimiters += whitespace_delimiters[i];
|
delimiters += whitespace_delimiters[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
// seek backward until to find beggining
|
// seek backward to find beginning
|
||||||
while (!delimiters.includes(text[selectionStart - 1]) && selectionStart > 0) {
|
while (!delimiters.includes(text[selectionStart - 1]) && selectionStart > 0) {
|
||||||
selectionStart--;
|
selectionStart--;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue