views:

84

answers:

1

I can't figure out how to configure notepad++ to display regions for specific user defined keywords.

I have i big trace file which show the start and the end of a procedure. The trace file looks like this:

Beginn abc.def;
   ...
   Beginn ghi.jkl;
   ...
   Ende ghi.jkl;
   ...
Ende abc.def;

I would like to fold those regions like this:

[+] Beginn abc.def;

or

[-] Beginn abc.def;
       ...
[+]    Beginn ghi.jkl;
       ...
    Ende abc.def;

How do i configure my notepad++ to display this. Is it possible or do you have any other suggestions?

+2  A: 

under the menu "View" there is a menuitem called "User-Defined Dialog..."

alt text

In the tab "Folder & Default" you can enter a "Folder Open Keyword" and a "Folder Close Keyword"

alt text

user411718