spaces around the +

This commit is contained in:
Ben Ogle 2013-07-17 17:39:39 -07:00
parent abdce2df04
commit 0924ad586f

View File

@ -84,7 +84,7 @@ class LanguageMode
indent = @minIndentLevelForRowRange(start, end)
indentString = @editSession.buildIndentString(indent)
for row in [start..end]
buffer.change([[row, 0], [row, indentString.length]], indentString+commentStartString)
buffer.change([[row, 0], [row, indentString.length]], indentString + commentStartString)
# Folds all the foldable lines in the buffer.
foldAll: ->