Skip to content

Instantly share code, notes, and snippets.

@psxlover
Created June 27, 2012 02:27
Show Gist options
  • Select an option

  • Save psxlover/3000930 to your computer and use it in GitHub Desktop.

Select an option

Save psxlover/3000930 to your computer and use it in GitHub Desktop.
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