Description: text syntax highlighting.
- Import the userDefineLang.xml as UDF into notepad++ under Language -> Define your language...
- Import the userDefineLang_DarkModeDefault.xml as UDF into notepad++ under Language -> Define your language...
Description: display the classes and functions/procedures in Function List panel.
- first you must import the user defined language
- to use the Function List panel with VFP you must copy the vfp.xml and overrideMap.xml in your notepad++ directory on your userprofile.
Path: c:\users\username\appdata\roaming\notepad++\functionList*.xml
If the folder "functionList" not exists -> create it.
Define Class kaVfpRocksCst as Custom
procedure DoSomeProc
*!* BlaBla
endproc
Function fnDoSomething() as Long
endfunc
ENDDEFINE
Define Class kaVfpRocksFrm as Form
procedure init
*!* BlaBla
endproc
Function fnSayHello()
=Messagebox("Hello")
endfunc
ENDDEFINE