zufuliu / notepad4

Notepad4 (Notepad2⨯2, Notepad2++) is a light-weight Scintilla based text editor for Windows with syntax highlighting, code folding, auto-completion and API list for many programming languages and documents, bundled with file browser plugin matepath.
Other
3.13k stars 203 forks source link

自定义语法高亮没有生效 #771

Closed zhangbaida888 closed 6 months ago

zhangbaida888 commented 6 months ago

自定义语法高亮,添加了新的文件类型,打开文件没有自动语法高亮,功能不生效。 image Desktop.zip

zufuliu commented 6 months ago

tpl is used in "Web Source Code" scheme, which matched first before "Ini Config File". Schemes matched in following order: Text File -> 2nd Text File -> Favorite Schemes (in specified order) -> rest schemes (in alphabetical order). image

Here are two ways to fix this:

  1. Remove tpl from "Web Source Code" scheme.
  2. Move "Ini Config File" into "Favorite Schemes" before "Web Source Code".
zhangbaida888 commented 6 months ago

Thanks, issue resolved.