mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-11-27 06:40:10 +08:00
Remove hyphen, underscore delimiters
This commit is contained in:
parent
27d02597c7
commit
c1fdba5904
@ -46,7 +46,7 @@ function keyupEditAttention(event){
|
|||||||
|
|
||||||
function selectCurrentWord(){
|
function selectCurrentWord(){
|
||||||
if (selectionStart !== selectionEnd) return false;
|
if (selectionStart !== selectionEnd) return false;
|
||||||
const delimiters = " .,\\/!?%^*;:{}=-_`~()\r\n\t";
|
const delimiters = " .,\\/!?%^*;:{}=`~()\r\n\t";
|
||||||
|
|
||||||
// seek backward until to find beggining
|
// seek backward until to find beggining
|
||||||
while (!delimiters.includes(text[selectionStart - 1]) && selectionStart > 0) {
|
while (!delimiters.includes(text[selectionStart - 1]) && selectionStart > 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user