Created
June 27, 2012 02:27
-
-
Save psxlover/3000930 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| I'd like you to change: | |
| regexps = { | |
| 'field': re.compile(r'^ {4}(?:[\w$.[\]]+ )*(?P<name>field_[0-9]+_[a-zA-Z_]+) *(?:=|;)'), | |
| 'method': re.compile(r'^ {4}(?:[\w$.[\]]+ )*(?P<name>func_[0-9]+_[a-zA-Z_]+)\('), | |
| } | |
| in commands.py to: | |
| regexps = { | |
| 'field': re.compile(r'^\s*(?:[\w$.[\]]+ )*(?P<name>field_[0-9]+_[a-zA-Z_]+) *(?:=|;)'), | |
| 'method': re.compile(r'^\s*(?:[\w$.[\]]+ )*(?P<name>func_[0-9]+_[a-zA-Z_]+)\('), | |
| } | |
| Also include these Netbeans projects in the next mcp version or at least put them in http://mcp.ocean-labs.de/index.php/Setting_up_NetBeans instead of those (wrong) instructions: http://filetrip.net/dl?F4rRbPnZka |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment