diff options
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 8aea4db1d..d72ff302c 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -7480,6 +7480,10 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { ClearAll(); return 0; + case SCI_DELETERANGE: + pdoc->DeleteChars(wParam, lParam); + return 0; + case SCI_CLEARDOCUMENTSTYLE: ClearDocumentStyle(); return 0; |