| 1 | This page contains information on how to get syntax highlighting and function list support in [http://notepad-plus.sourceforge.net/uk/site.htm Notepad++]. |
| 2 | |
| 3 | == Syntax Highlighting == |
| 4 | To add syntax highlighting support copy the '''Language''' element for Cobra from the ''userDefinedLanguage.xml'' file attached below. |
| 5 | |
| 6 | Place this XML node in the ''userDefinedLang.xml'' file at |
| 7 | {{{ |
| 8 | %appdata%\Notepad++ |
| 9 | }}} |
| 10 | If this file does not exist then copy the entire file over. |
| 11 | |
| 12 | == FunctionList support == |
| 13 | FunctionList is provided as a plugin for Notepad++ so first be sure to install the plugin. To install download the plugin from http://sourceforge.net/projects/npp-plugins/files/, unzip, then copy the DLL to |
| 14 | {{{ |
| 15 | %programfiles%\Notepad++\plugins |
| 16 | or |
| 17 | %programfiles(x86)%\Notepad++\plugins if installed to the x86 Program Files directory on 64-bit Windows. |
| 18 | }}} |
| 19 | |
| 20 | Next, copy the '''Language''' node for Cobra found in the ''FunctionList.xml'' file attached below. |
| 21 | Place this XML node in the ''FunctionList.xml'' file at |
| 22 | {{{ |
| 23 | %appdata%\Notepad++\plugins\config |
| 24 | }}} |
| 25 | |
| 26 | If the file does not exist then copy the entire file. |
| 27 | |
| 28 | |