mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-06-05 17:58:19 +02:00
CodeTools: change default and caption for new "include keywords" option
This commit is contained in:
parent
2182681a6e
commit
15d3ffd0ca
@ -601,7 +601,7 @@ begin
|
||||
FIdentComplUseContainsFilter:=XMLConfig.GetValue(
|
||||
'CodeToolsOptions/IdentifierCompletion/UseContainsFilter',true);
|
||||
FIdentComplIncludeKeywords:=XMLConfig.GetValue(
|
||||
'CodeToolsOptions/IdentifierCompletion/IncludeKeywords',true);
|
||||
'CodeToolsOptions/IdentifierCompletion/IncludeKeywords',false);
|
||||
FIdentComplIncludeCodeTemplates:=XMLConfig.GetValue(
|
||||
'CodeToolsOptions/IdentifierCompletion/IncludeCodeTemplates',true);
|
||||
FIdentComplIncludeWords:=IdentComplIncludeWordsNamesToEnum(XMLConfig.GetValue(
|
||||
@ -788,7 +788,7 @@ begin
|
||||
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/UseContainsFilter',
|
||||
FIdentComplUseContainsFilter,true);
|
||||
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/IncludeKeywords',
|
||||
FIdentComplIncludeKeywords,true);
|
||||
FIdentComplIncludeKeywords,false);
|
||||
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/IncludeCodeTemplates',
|
||||
FIdentComplIncludeCodeTemplates,true);
|
||||
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/IncludeWords',
|
||||
@ -1022,7 +1022,7 @@ begin
|
||||
FIdentComplAutoStartAfterPoint:=true;
|
||||
FIdentComplAutoUseSingleIdent:=true;
|
||||
FIdentComplUseContainsFilter:=true;
|
||||
FIdentComplIncludeKeywords := True;
|
||||
FIdentComplIncludeKeywords := false;
|
||||
FIdentComplIncludeCodeTemplates:=true;
|
||||
FIdentComplShowIcons:=false;
|
||||
FIdentComplAddParameterBrackets:=true;
|
||||
|
@ -2066,7 +2066,7 @@ resourcestring
|
||||
dlgIncludeWordsToIdentCompl_IncludeFromAllUnits = 'from all units';
|
||||
dlgIncludeWordsToIdentCompl_IncludeFromCurrentUnit = 'from current unit';
|
||||
dlgIncludeWordsToIdentCompl_DontInclude = 'don''t include';
|
||||
dlgIncludeKeywordsToIdentCompl = 'Include keywords';
|
||||
dlgIncludeKeywordsToIdentCompl = 'Include all keywords and operators';
|
||||
dlgIncludeCodeTemplatesToIdentCompl = 'Include code templates';
|
||||
|
||||
dlgMarkupUserDefined = 'User defined markup';
|
||||
|
Loading…
Reference in New Issue
Block a user