Dotfiles/sublime-text/Default/scroll.py

14 lines
362 B
Python
Raw Normal View History

2014-05-12 18:57:15 +02:00
import sublime, sublime_plugin
class ScrollToBof(sublime_plugin.TextCommand):
def run(self, edit):
self.view.show(0)
class ScrollToEof(sublime_plugin.TextCommand):
def run(self, edit):
self.view.show(self.view.size())
class ShowAtCenter(sublime_plugin.TextCommand):
def run(self, edit):
self.view.show_at_center(self.view.sel()[0])