Update documentation to push threshold back past 80%

This commit is contained in:
Garen Torikian
2013-05-01 17:21:05 -07:00
parent f47eea1e6c
commit 662ddf9fd6
7 changed files with 56 additions and 13 deletions

View File

@@ -306,12 +306,17 @@ class DisplayBuffer
setTabLength: (tabLength) ->
@tokenizedBuffer.setTabLength(tabLength)
# Retrieves the grammar for the buffer.
getGrammar: ->
@tokenizedBuffer.grammar
# Sets the grammar for the buffer.
#
# grammar - Sets the new grammar rules
setGrammar: (grammar) ->
@tokenizedBuffer.setGrammar(grammar)
# Reloads the current grammar.
reloadGrammar: ->
@tokenizedBuffer.reloadGrammar()