mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-11 14:37:48 +02:00
EditorOptions: Removed Gutter-Hints => not implemented
git-svn-id: trunk@21300 -
This commit is contained in:
parent
1d33c7ea11
commit
16a9141cef
@ -65,7 +65,7 @@ begin
|
||||
with EditorOptionsGroupBox do
|
||||
begin
|
||||
// visual effects
|
||||
Items.Add(dlgShowGutterHints);
|
||||
//Items.Add(dlgShowGutterHints); // unimplemented
|
||||
Items.Add(lisShowSpecialCharacters);
|
||||
// spaces
|
||||
Items.Add(dlgTrimTrailingSpaces);
|
||||
@ -92,7 +92,7 @@ begin
|
||||
Checked[Items.IndexOf(lisShowSpecialCharacters)] := eoShowSpecialChars in SynEditOptions;
|
||||
Checked[Items.IndexOf(dlgTrimTrailingSpaces)] := eoTrimTrailingSpaces in SynEditOptions;
|
||||
Checked[Items.IndexOf(dlgCloseButtonsNotebook)] := ShowTabCloseButtons;
|
||||
Checked[Items.IndexOf(dlgShowGutterHints)] := ShowGutterHints;
|
||||
//Checked[Items.IndexOf(dlgShowGutterHints)] := ShowGutterHints;
|
||||
Checked[Items.IndexOf(dlgFindTextatCursor)] := FindTextAtCursor;
|
||||
Checked[Items.IndexOf(dlgCopyWordAtCursorOnCopyNone)] := CopyWordAtCursorOnCopyNone;
|
||||
Checked[Items.IndexOf(dlgCopyPasteKeepFolds)] := eoFoldedCopyPaste in SynEditOptions2;
|
||||
@ -126,7 +126,7 @@ begin
|
||||
UpdateOption(dlgTrimTrailingSpaces, eoTrimTrailingSpaces);
|
||||
ShowTabCloseButtons := CheckGroupItemChecked(EditorOptionsGroupBox, dlgCloseButtonsNotebook);
|
||||
CopyWordAtCursorOnCopyNone := CheckGroupItemChecked(EditorOptionsGroupBox, dlgCopyWordAtCursorOnCopyNone);
|
||||
ShowGutterHints := CheckGroupItemChecked(EditorOptionsGroupBox, dlgShowGutterHints);
|
||||
//ShowGutterHints := CheckGroupItemChecked(EditorOptionsGroupBox, dlgShowGutterHints);
|
||||
FindTextAtCursor := CheckGroupItemChecked(EditorOptionsGroupBox, dlgFindTextatCursor);
|
||||
TrimSpaceType := TSynEditStringTrimmingType(EditorTrimSpaceTypeCheckBox.ItemIndex);
|
||||
if EditorOptionsGroupBox.Checked[EditorOptionsGroupBox.Items.IndexOf
|
||||
|
Loading…
Reference in New Issue
Block a user