diff --git a/app/proc_install_zip.pas b/app/proc_install_zip.pas index ecc8d8c6074..ad659d802d7 100644 --- a/app/proc_install_zip.pas +++ b/app/proc_install_zip.pas @@ -336,6 +336,13 @@ procedure DoInstallPlugin( for ini_section in sections do begin + if SRegexMatchesString(ini_section, 'fmt\d+', true) then + begin + s_caption:= ini.ReadString(ini_section, 'caption', ''); + AReport+= msgStatusPackageFormatter+' '+s_caption; + Continue; + end; + if not SRegexMatchesString(ini_section, 'item\d+', true) then Continue; s_section:= ini.ReadString(ini_section, 'section', ''); diff --git a/app/proc_msg.pas b/app/proc_msg.pas index 13f640ab153..abfcdba5297 100644 --- a/app/proc_msg.pas +++ b/app/proc_msg.pas @@ -291,6 +291,7 @@ interface msgStatusPackageLexerSettings: string = 'lexer settings:'; msgStatusPackageAutoCompletion: string = 'static auto-completion:'; msgStatusPackageData: string = 'data:'; + msgStatusPackageFormatter: string = 'formatter:'; msgStatusPackagePackage: string = 'package:'; msgStatusPackageMissedLexerMap: string = 'lexer misses themes support (.cuda-lexmap file)'; msgStatusInstalledNeedRestart: string = 'Package will take effect after program restart';