unwrapSelection method
Removes a matching surrounding delimiter pair around the current selection.
Implementation
bool unwrapSelection() {
final changed = _model.unwrapSelection();
if (changed) {
notifyListeners();
}
return changed;
}
Removes a matching surrounding delimiter pair around the current selection.
bool unwrapSelection() {
final changed = _model.unwrapSelection();
if (changed) {
notifyListeners();
}
return changed;
}