Last active
August 29, 2015 13:58
Revisions
-
jiMuBao renamed this gist
Apr 10, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
jiMuBao renamed this gist
Apr 10, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
jiMuBao renamed this gist
Apr 10, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
jiMuBao created this gist
Apr 10, 2014 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,68 @@ import sublime, sublime_plugin class Move_caret_topCommand(sublime_plugin.TextCommand): def run(self, edit): screenful = self.view.visible_region() col = self.view.rowcol(self.view.sel()[0].begin())[1] row = self.view.rowcol(screenful.a)[0] + 1 target = self.view.text_point(row, col) self.view.sel().clear() self.view.sel().add(sublime.Region(target)) class Move_caret_middleCommand(sublime_plugin.TextCommand): def run(self, edit): screenful = self.view.visible_region() col = self.view.rowcol(self.view.sel()[0].begin())[1] row_a = self.view.rowcol(screenful.a)[0] row_b = self.view.rowcol(screenful.b)[0] middle_row = (row_a + row_b) / 2 target = self.view.text_point(middle_row, col) self.view.sel().clear() self.view.sel().add(sublime.Region(target)) class Move_caret_bottomCommand(sublime_plugin.TextCommand): def run(self, edit): screenful = self.view.visible_region() col = self.view.rowcol(self.view.sel()[0].begin())[1] row = self.view.rowcol(screenful.b)[0] - 1 target = self.view.text_point(row, col) self.view.sel().clear() self.view.sel().add(sublime.Region(target)) class Move_caret_forwardCommand(sublime_plugin.TextCommand): def run(self, edit, nlines): screenful = self.view.visible_region() (row,col) = self.view.rowcol(self.view.sel()[0].begin()) target = self.view.text_point(row+nlines, col) self.view.sel().clear() self.view.sel().add(sublime.Region(target)) self.view.show(target) class Move_caret_backCommand(sublime_plugin.TextCommand): def run(self, edit, nlines): screenful = self.view.visible_region() (row,col) = self.view.rowcol(self.view.sel()[0].begin()) target = self.view.text_point(row-nlines, col) self.view.sel().clear() self.view.sel().add(sublime.Region(target)) self.view.show(target) { "keys": ["alt+up"], "command": "move_caret_top" }, { "keys": ["alt+left"], "command": "move_caret_back", "args": { "nlines": 10} }, { "keys": ["alt+right"], "command": "move_caret_forward", "args": { "nlines": 10} }, { "keys": ["alt+down"], "command": "move_caret_bottom"}, Note: The code is just a stripped down version of the commands found in the Vintage package (vintage_motions.py). To install, just save the code as a new Plugin (Tools->New Plugin...).