Page 5 of 5

Re: Notepad++ Function List

Posted: Thu May 26, 2016 12:14 pm
by jayadevu
Hi Tiger,

Many thanks for your reply. I confirm that it now works with Static as a prefix.

I had solved with:
mainExpr="^[\t]*(Static Func|Static Function|Func|Function|Static Proc|Static Procedure|Proc|Procedure)[\t ]+[^\r\n]*$"

Your solution is more elegant.

CLASS and Methods however do not appear in the function list.

Warm regards,

Jayadev

Re: Notepad++ Function List

Posted: Fri May 27, 2016 7:07 am
by Tiger
OK. Let's study if it has any other solutions...

Re: Notepad++ Function List

Posted: Tue Aug 21, 2018 11:58 am
by AidTIC
Buenas tardes,
Podríais confirmar si con la versión Notepad++ 7.5.8 64bits funciona??

Me estoy volviendo loco.

Good afternoon,
Could you confirm if the version Notepad ++ 7.5.8 64bits works?

I'm going crazy.

Re: Notepad++ Function List

Posted: Tue Nov 19, 2019 8:08 am
by Tiger
Hi,

I found follow code to remove the "static" form the function list and it works on the notepad ++ new version v7.81

<parser id="xHbFunction" displayName="xHarbour Functions" commentExpr="">
<function mainExpr="^\h*(static\h+)?(procedure|function)\h+\w+">
<functionName>
<nameExpr expr="(procedure|function)\h+\K\w+"/>
</functionName>
</function>
</parser>


Please refer to the link below ...
https://sourceforge.net/p/notepad-plus/ ... /7f92cd76/

Re: Notepad++ Function List

Posted: Tue Nov 19, 2019 10:30 am
by danielmaximiliano
Gracias Tiger !!!!