|
|
@ -592,17 +592,20 @@ LRESULT ScintillaEditView::scintillaNew_Proc(HWND hwnd, UINT Message, WPARAM wPa
|
|
|
|
if (nbCaseForScint)
|
|
|
|
if (nbCaseForScint)
|
|
|
|
_callWindowProc(_scintillaDefaultProc, hwnd, Message, wParam, lParam);
|
|
|
|
_callWindowProc(_scintillaDefaultProc, hwnd, Message, wParam, lParam);
|
|
|
|
|
|
|
|
|
|
|
|
// then do our job, if any
|
|
|
|
// then do our job, if it's not column mode
|
|
|
|
for (const auto& i : edgeOfEol)
|
|
|
|
if (!isColumnSelection)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
// because the current caret modification will change the other caret positions,
|
|
|
|
for (const auto& i : edgeOfEol)
|
|
|
|
// so we get them dynamically in the loop.
|
|
|
|
{
|
|
|
|
LRESULT posStart = execute(SCI_GETSELECTIONNSTART, i._selIndex);
|
|
|
|
// because the current caret modification will change the other caret positions,
|
|
|
|
LRESULT posEnd = execute(SCI_GETSELECTIONNEND, i._selIndex);
|
|
|
|
// so we get them dynamically in the loop.
|
|
|
|
|
|
|
|
LRESULT posStart = execute(SCI_GETSELECTIONNSTART, i._selIndex);
|
|
|
|
replaceTarget(L"", posStart, posEnd + i._len2remove);
|
|
|
|
LRESULT posEnd = execute(SCI_GETSELECTIONNEND, i._selIndex);
|
|
|
|
execute(SCI_SETSELECTIONNSTART, i._selIndex, posStart);
|
|
|
|
|
|
|
|
execute(SCI_SETSELECTIONNEND, i._selIndex, posStart);
|
|
|
|
replaceTarget(L"", posStart, posEnd + i._len2remove);
|
|
|
|
|
|
|
|
execute(SCI_SETSELECTIONNSTART, i._selIndex, posStart);
|
|
|
|
|
|
|
|
execute(SCI_SETSELECTIONNEND, i._selIndex, posStart);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
execute(SCI_ENDUNDOACTION);
|
|
|
|
execute(SCI_ENDUNDOACTION);
|
|
|
|