diff --git a/src/app/display-buffer.coffee b/src/app/display-buffer.coffee index d56b6d82e..8a799c415 100644 --- a/src/app/display-buffer.coffee +++ b/src/app/display-buffer.coffee @@ -175,9 +175,6 @@ class DisplayBuffer bufferPositionForScreenPosition: (position, options) -> @lineMap.bufferPositionForScreenPosition(position, options) - stateForScreenRow: (screenRow) -> - @tokenizedBuffer.stackForRow(screenRow) - scopesForBufferPosition: (bufferPosition) -> @tokenizedBuffer.scopesForPosition(bufferPosition) diff --git a/src/app/edit-session.coffee b/src/app/edit-session.coffee index e527be2e7..22809f42e 100644 --- a/src/app/edit-session.coffee +++ b/src/app/edit-session.coffee @@ -151,7 +151,6 @@ class EditSession clipScreenPosition: (screenPosition, options) -> @displayBuffer.clipScreenPosition(screenPosition, options) lineForScreenRow: (row) -> @displayBuffer.lineForRow(row) linesForScreenRows: (start, end) -> @displayBuffer.linesForRows(start, end) - stateForScreenRow: (screenRow) -> @displayBuffer.stateForScreenRow(screenRow) screenLineCount: -> @displayBuffer.lineCount() maxScreenLineLength: -> @displayBuffer.maxLineLength() getLastScreenRow: -> @displayBuffer.getLastRow() diff --git a/src/app/editor.coffee b/src/app/editor.coffee index 47b0a9e97..584cd1d73 100644 --- a/src/app/editor.coffee +++ b/src/app/editor.coffee @@ -250,7 +250,6 @@ class Editor extends View screenRangeForBufferRange: (range) -> @activeEditSession.screenRangeForBufferRange(range) bufferRangeForScreenRange: (range) -> @activeEditSession.bufferRangeForScreenRange(range) bufferRowsForScreenRows: (startRow, endRow) -> @activeEditSession.bufferRowsForScreenRows(startRow, endRow) - stateForScreenRow: (row) -> @activeEditSession.stateForScreenRow(row) logCursorScope: -> console.log @activeEditSession.scopesForBufferPosition(@getCursorBufferPosition()) diff --git a/src/window-bootstrap.coffee b/src/window-bootstrap.coffee index 86404bb98..2a903c734 100644 --- a/src/window-bootstrap.coffee +++ b/src/window-bootstrap.coffee @@ -1,4 +1,4 @@ # Like sands through the hourglass, so are the days of our lives. require 'atom' require 'window' -window.attachRootView(window.location.params.pathToOpen) +window.attachRootView(window.location.params.pathToOpen) \ No newline at end of file