[UPDATE] "Split Lines" uses the edgemode if enabled

pull/12/head
dail8859 2015-04-28 20:45:11 -04:00
parent ee2dbc251d
commit ec2bb7f8b7
1 changed files with 4 additions and 1 deletions

View File

@ -1019,7 +1019,10 @@ void Notepad_plus::command(int id)
case IDM_EDIT_SPLIT_LINES:
_pEditView->execute(SCI_TARGETFROMSELECTION);
_pEditView->execute(SCI_LINESSPLIT);
if (_pEditView->execute(SCI_GETEDGEMODE) == EDGE_NONE)
_pEditView->execute(SCI_LINESSPLIT);
else
_pEditView->execute(SCI_LINESSPLIT, _pEditView->execute(SCI_TEXTWIDTH, STYLE_LINENUMBER, (LPARAM)"P") * _pEditView->execute(SCI_GETEDGECOLUMN));
break;
case IDM_EDIT_JOIN_LINES: