0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-05-09 20:38:40 +00:00

make wrapselection work with multiple selections

This commit is contained in:
Víctor Losada Hernández
2026-05-08 23:23:48 +02:00
parent 1807559987
commit 01060c38c8
+14 -16
View File
@@ -29,27 +29,25 @@ const indentLess = (view)=>{
}; };
const wrapSelection = (prefix, suffix) => (view) => { const wrapSelection = (prefix, suffix) => (view) => {
const { from, to } = view.state.selection.main; const changes = [];
const selected = view.state.doc.sliceString(from, to);
let text, selection; for(const range of view.state.selection.ranges) {
const { from, to } = range;
const selected = view.state.doc.sliceString(from, to);
if(from === to) { let text;
text = prefix + suffix;
selection = { anchor: from + prefix.length, head: from + prefix.length }; if(from === to) { text = prefix + suffix }
} else if(selected.startsWith(prefix) && selected.endsWith(suffix)) {
else if(selected.startsWith(prefix) && selected.endsWith(suffix)) { text = selected.slice(prefix.length, -suffix.length);
text = selected.slice(prefix.length, -suffix.length); }
selection = { anchor: from, head: from + text.length }; else {text = `${prefix}${selected}${suffix}`}
}
else { changes.push({ from, to, insert: text });
text = `${prefix}${selected}${suffix}`;
selection = { anchor: from, head: from + text.length };
} }
view.dispatch({ view.dispatch({
changes : { from, to, insert: text }, changes
selection
}); });
return true; return true;