mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-17 10:49:09 +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(
|
FIdentComplUseContainsFilter:=XMLConfig.GetValue(
|
||||||
'CodeToolsOptions/IdentifierCompletion/UseContainsFilter',true);
|
'CodeToolsOptions/IdentifierCompletion/UseContainsFilter',true);
|
||||||
FIdentComplIncludeKeywords:=XMLConfig.GetValue(
|
FIdentComplIncludeKeywords:=XMLConfig.GetValue(
|
||||||
'CodeToolsOptions/IdentifierCompletion/IncludeKeywords',true);
|
'CodeToolsOptions/IdentifierCompletion/IncludeKeywords',false);
|
||||||
FIdentComplIncludeCodeTemplates:=XMLConfig.GetValue(
|
FIdentComplIncludeCodeTemplates:=XMLConfig.GetValue(
|
||||||
'CodeToolsOptions/IdentifierCompletion/IncludeCodeTemplates',true);
|
'CodeToolsOptions/IdentifierCompletion/IncludeCodeTemplates',true);
|
||||||
FIdentComplIncludeWords:=IdentComplIncludeWordsNamesToEnum(XMLConfig.GetValue(
|
FIdentComplIncludeWords:=IdentComplIncludeWordsNamesToEnum(XMLConfig.GetValue(
|
||||||
@ -788,7 +788,7 @@ begin
|
|||||||
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/UseContainsFilter',
|
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/UseContainsFilter',
|
||||||
FIdentComplUseContainsFilter,true);
|
FIdentComplUseContainsFilter,true);
|
||||||
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/IncludeKeywords',
|
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/IncludeKeywords',
|
||||||
FIdentComplIncludeKeywords,true);
|
FIdentComplIncludeKeywords,false);
|
||||||
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/IncludeCodeTemplates',
|
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/IncludeCodeTemplates',
|
||||||
FIdentComplIncludeCodeTemplates,true);
|
FIdentComplIncludeCodeTemplates,true);
|
||||||
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/IncludeWords',
|
XMLConfig.SetDeleteValue('CodeToolsOptions/IdentifierCompletion/IncludeWords',
|
||||||
@ -1022,7 +1022,7 @@ begin
|
|||||||
FIdentComplAutoStartAfterPoint:=true;
|
FIdentComplAutoStartAfterPoint:=true;
|
||||||
FIdentComplAutoUseSingleIdent:=true;
|
FIdentComplAutoUseSingleIdent:=true;
|
||||||
FIdentComplUseContainsFilter:=true;
|
FIdentComplUseContainsFilter:=true;
|
||||||
FIdentComplIncludeKeywords := True;
|
FIdentComplIncludeKeywords := false;
|
||||||
FIdentComplIncludeCodeTemplates:=true;
|
FIdentComplIncludeCodeTemplates:=true;
|
||||||
FIdentComplShowIcons:=false;
|
FIdentComplShowIcons:=false;
|
||||||
FIdentComplAddParameterBrackets:=true;
|
FIdentComplAddParameterBrackets:=true;
|
||||||
|
@ -2066,7 +2066,7 @@ resourcestring
|
|||||||
dlgIncludeWordsToIdentCompl_IncludeFromAllUnits = 'from all units';
|
dlgIncludeWordsToIdentCompl_IncludeFromAllUnits = 'from all units';
|
||||||
dlgIncludeWordsToIdentCompl_IncludeFromCurrentUnit = 'from current unit';
|
dlgIncludeWordsToIdentCompl_IncludeFromCurrentUnit = 'from current unit';
|
||||||
dlgIncludeWordsToIdentCompl_DontInclude = 'don''t include';
|
dlgIncludeWordsToIdentCompl_DontInclude = 'don''t include';
|
||||||
dlgIncludeKeywordsToIdentCompl = 'Include keywords';
|
dlgIncludeKeywordsToIdentCompl = 'Include all keywords and operators';
|
||||||
dlgIncludeCodeTemplatesToIdentCompl = 'Include code templates';
|
dlgIncludeCodeTemplatesToIdentCompl = 'Include code templates';
|
||||||
|
|
||||||
dlgMarkupUserDefined = 'User defined markup';
|
dlgMarkupUserDefined = 'User defined markup';
|
||||||
|
Loading…
Reference in New Issue
Block a user