SynEdit: multi caret, allow espape (remove all carets) to be shared with other plugins / make "escape" default

git-svn-id: trunk@58191 -
This commit is contained in:
martin 2018-06-08 21:43:02 +00:00
parent 98b1d8f6ad
commit 7cb84ed69d

View File

@ -783,6 +783,7 @@ var
var var
IDECmdScopeSrcEdit: TIDECommandScope; IDECmdScopeSrcEdit: TIDECommandScope;
IDECmdScopeSrcEditOnly: TIDECommandScope; IDECmdScopeSrcEditOnly: TIDECommandScope;
IDECmdScopeSrcEditOnlyMultiCaret: TIDECommandScope;
IDECmdScopeSrcEditOnlyTmplEdit: TIDECommandScope; IDECmdScopeSrcEditOnlyTmplEdit: TIDECommandScope;
IDECmdScopeSrcEditOnlyTmplEditOff: TIDECommandScope; IDECmdScopeSrcEditOnlyTmplEditOff: TIDECommandScope;
IDECmdScopeSrcEditOnlySyncroEditSel: TIDECommandScope; IDECmdScopeSrcEditOnlySyncroEditSel: TIDECommandScope;
@ -884,6 +885,7 @@ begin
IDECommandScopes:=TIDECommandScopes.Create; IDECommandScopes:=TIDECommandScopes.Create;
IDECmdScopeSrcEdit:=RegisterIDECommandScope('SourceEditor'); IDECmdScopeSrcEdit:=RegisterIDECommandScope('SourceEditor');
IDECmdScopeSrcEditOnly:=RegisterIDECommandScope('SourceEditorOnly'); IDECmdScopeSrcEditOnly:=RegisterIDECommandScope('SourceEditorOnly');
IDECmdScopeSrcEditOnlyMultiCaret:=RegisterIDECommandScope('IDECmdScopeSrcEditOnlyMultiCaret');
IDECmdScopeSrcEditOnlyTmplEdit:=RegisterIDECommandScope('SourceEditorOnlyTemplateEdit'); IDECmdScopeSrcEditOnlyTmplEdit:=RegisterIDECommandScope('SourceEditorOnlyTemplateEdit');
IDECmdScopeSrcEditOnlyTmplEditOff:=RegisterIDECommandScope('SourceEditorOnlyTemplateEditOff'); IDECmdScopeSrcEditOnlyTmplEditOff:=RegisterIDECommandScope('SourceEditorOnlyTemplateEditOff');
IDECmdScopeSrcEditOnlySyncroEditSel:=RegisterIDECommandScope('SourceEditorOnlySyncroEditSel'); IDECmdScopeSrcEditOnlySyncroEditSel:=RegisterIDECommandScope('SourceEditorOnlySyncroEditSel');