ini.xml 952 B

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!-- ==========================================================================\
  3. |
  4. | To learn how to make your own language parser, please check the following
  5. | link:
  6. | https://npp-user-manual.org/docs/function-list/
  7. |
  8. \=========================================================================== -->
  9. <NotepadPlus>
  10. <functionList>
  11. <!-- ========================================= [ Initialisation File ] -->
  12. <!-- File format used for: .INF / .INI / .REG / .editorconfig -->
  13. <parser
  14. displayName="INI Section"
  15. id ="ini_section"
  16. commentExpr="(?x)
  17. (?m-s:[;\#].*$) # Single Line Comment
  18. "
  19. >
  20. <function
  21. mainExpr="^\h*[\[&quot;][\w*.;\x20()\-]+[&quot;\]]"
  22. >
  23. <functionName>
  24. <nameExpr expr="[^[\]&quot;]*" />
  25. </functionName>
  26. </function>
  27. </parser>
  28. </functionList>
  29. </NotepadPlus>