Skip to content

Commit 1cc7c4b

Browse files
committed
Allow editing whitespace delimiters
1 parent 5ef669d commit 1cc7c4b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

javascript/edit-attention.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ function keyupEditAttention(event) {
4646

4747
function selectCurrentWord() {
4848
if (selectionStart !== selectionEnd) return false;
49-
const delimiters = opts.keyedit_delimiters + " \r\n\t";
49+
let delimiters = opts.keyedit_delimiters.replace(/(^|[^\\])(\\\\)*\\$/, "$&\\").replace(/(^|[^\\])((\\\\)*")/g, "$1\\$2");
50+
delimiters = JSON.parse(`"${delimiters}"`);
5051

5152
// seek backward until to find beggining
5253
while (!delimiters.includes(text[selectionStart - 1]) && selectionStart > 0) {

modules/shared_options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@
255255
"dimensions_and_batch_together": OptionInfo(True, "Show Width/Height and Batch sliders in same row").needs_reload_ui(),
256256
"keyedit_precision_attention": OptionInfo(0.1, "Ctrl+up/down precision when editing (attention:1.1)", gr.Slider, {"minimum": 0.01, "maximum": 0.2, "step": 0.001}),
257257
"keyedit_precision_extra": OptionInfo(0.05, "Ctrl+up/down precision when editing <extra networks:0.9>", gr.Slider, {"minimum": 0.01, "maximum": 0.2, "step": 0.001}),
258-
"keyedit_delimiters": OptionInfo(".,\\/!?%^*;:{}=`~()", "Ctrl+up/down word delimiters"),
258+
"keyedit_delimiters": OptionInfo(r".,\\/!?%^*;:{}=`~() \r\n\t", "Ctrl+up/down word delimiters"),
259259
"keyedit_move": OptionInfo(True, "Alt+left/right moves prompt elements"),
260260
"quicksettings_list": OptionInfo(["sd_model_checkpoint"], "Quicksettings list", ui_components.DropdownMulti, lambda: {"choices": list(shared.opts.data_labels.keys())}).js("info", "settingsHintsShowQuicksettings").info("setting entries that appear at the top of page rather than in settings tab").needs_reload_ui(),
261261
"ui_tab_order": OptionInfo([], "UI tab order", ui_components.DropdownMulti, lambda: {"choices": list(shared.tab_names)}).needs_reload_ui(),

0 commit comments

Comments
 (0)