X-Git-Url: https://git.r.bdr.sh/rbdr/dotfiles/blobdiff_plain/24c7594d62d8d7fbbcdb64b11ce4adc5d8e6991a..455f099b504ec07dd492ab31987ae05a6f6774c7:/atom/packages/vim-mode/lib/scroll.coffee diff --git a/atom/packages/vim-mode/lib/scroll.coffee b/atom/packages/vim-mode/lib/scroll.coffee index 1bc1258..275f0f9 100644 --- a/atom/packages/vim-mode/lib/scroll.coffee +++ b/atom/packages/vim-mode/lib/scroll.coffee @@ -84,5 +84,27 @@ class ScrollCursorToBottom extends ScrollCursor moveToFirstNonBlank: -> @editor.moveToFirstCharacterOfLine() +class ScrollHorizontal + isComplete: -> true + isRecordable: -> false + constructor: (@editorElement) -> + @editor = @editorElement.getModel() + cursorPos = @editor.getCursorScreenPosition() + @pixel = @editorElement.pixelPositionForScreenPosition(cursorPos).left + @cursor = @editor.getLastCursor() + + putCursorOnScreen: -> + @editor.scrollToCursorPosition({center: false}) + +class ScrollCursorToLeft extends ScrollHorizontal + execute: -> + @editor.setScrollLeft(@pixel) + @putCursorOnScreen() + +class ScrollCursorToRight extends ScrollHorizontal + execute: -> + @editor.setScrollRight(@pixel) + @putCursorOnScreen() + module.exports = {ScrollDown, ScrollUp, ScrollCursorToTop, ScrollCursorToMiddle, - ScrollCursorToBottom} + ScrollCursorToBottom, ScrollCursorToLeft, ScrollCursorToRight}