In Komodo Edit 6.1 , there is a nice feature to find and highlight all the functions (navigation->Find all functions ctrl+F8). It searches based on a Regex to find all the functions, which is this :
^[ ]*?(def\s+[^\(]+\([^\)]*?\):|class\s+[^:]*?:)
But there is a minor problem with it, if there are some blank spaces between the ")" and ":" , which technically is correct but this Regex won't match. I want to modify it to :
^[ ]*?(def\s+[^\(]+\([^\)]*?\) *:|class\s+[^:]*?:)
There is only one additional "{space}*" before first ":"
But I don't know where to find the default value for this configuration. I even tried about:config but it wasn't there too.
Thanks for your help.