Skip to content

Commit

Permalink
cleans up whitespace popped up during merge? idk
Browse files Browse the repository at this point in the history
  • Loading branch information
atomi committed Sep 16, 2013
1 parent b2ed2a4 commit 0c68fde
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions coldfusion-plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def run(self, edit):
# Find the CFFunction regions to fold
def findCffunctionContent(self):
contentRegions = []

try:
cffunctionOpens = self.view.find_all('<cffunction.*?name=".*?".*?>')
cffunctionEnds = self.view.find_all('</cffunction>')
Expand Down Expand Up @@ -243,7 +243,7 @@ def findScriptFunctionContent(self):

try:
scriptFuncOpens = self.view.find_all('function.*?\{')

for func in scriptFuncOpens:
startPosition = func.end()

Expand Down Expand Up @@ -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
return None

0 comments on commit 0c68fde

Please sign in to comment.