On 15-08-2005 15:12, Peter Vohmann wrote:
foldingStartMarker = "(?i:^\\s*(\w+:)?((entity|architecture|
configuration|component|package|process|function|procedure|case|if| for|while|loop)\b))";
Watch out: you need to escape 's in the regexp and you have "\w+" there which should be "\w+".
Jeroen.