Skip to content

Instantly share code, notes, and snippets.

@jiMuBao
Last active August 29, 2015 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jiMuBao/10340399 to your computer and use it in GitHub Desktop.
Save jiMuBao/10340399 to your computer and use it in GitHub Desktop.
sublime: move cursor plugin
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...).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment