diff --git a/README.md b/README.md index e65924a..88b321e 100644 --- a/README.md +++ b/README.md @@ -20,4 +20,7 @@ Sometimes, when you type too fast or copy prompts from all over the places, you - [x] Respect line breaks - **Note:** `Remove Duplicates` only checks within the same line - [x] **[New]** Pressing `Ctrl + \` to quickly escape the **brackets** of the hovered tag - - Normally, **brackets** *(parentheses)* are used to increase the weight of a prompt. Therefore, for tags like `mejiro mcqueen (umamusume)`, you will need to escape it like `mejiro mcqueen \(umamusume\)`. \ No newline at end of file + - Normally, **brackets** *(parentheses)* are used to increase the weight of a prompt. Therefore, for tags like `mejiro mcqueen (umamusume)`, you will need to escape it like `mejiro mcqueen \(umamusume\)`. + + +Note: This is purely visual. The actual prompt is unchanged until you manually edit the text again. \ No newline at end of file diff --git a/javascript/prompt_format.js b/javascript/prompt_format.js index f8be89f..919ca8b 100644 --- a/javascript/prompt_format.js +++ b/javascript/prompt_format.js @@ -57,7 +57,7 @@ function injectBracketEscape(id) { textarea.selectionEnd = result[1] + 3 } - updateInput(textarea) + // updateInput(textarea) } } }) @@ -166,10 +166,10 @@ onUiLoaded(async () => { textAreas[0].value = lines[0].join('\n') - updateInput(textAreas[0]) + // updateInput(textAreas[0]) textAreas[1].value = lines[1].join('\n') - updateInput(textAreas[1]) + // updateInput(textAreas[1]) } })