diff --git a/coldfusion-plugin.py b/coldfusion-plugin.py index 0dd7bca..5ffadf3 100644 --- a/coldfusion-plugin.py +++ b/coldfusion-plugin.py @@ -208,7 +208,7 @@ def run(self, edit): # Find the CFFunction regions to fold def findCffunctionContent(self): contentRegions = [] - + try: cffunctionOpens = self.view.find_all('') cffunctionEnds = self.view.find_all('') @@ -243,7 +243,7 @@ def findScriptFunctionContent(self): try: scriptFuncOpens = self.view.find_all('function.*?\{') - + for func in scriptFuncOpens: startPosition = func.end() @@ -283,4 +283,4 @@ def findClosingBracket(self, startPosition): except: print ("Fold Functions Plugin: Unexpected error when trying to find a closing bracket for CFSCRIPT function.") - return None \ No newline at end of file + return None