Created
July 30, 2011 08:31
-
-
Save sublimator/1115334 to your computer and use it in GitHub Desktop.
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 characters
#coding: utf8 | |
#################################### IMPORTS ################################### | |
# Sublime Libs | |
import sublime | |
import sublime_plugin | |
################################################################################ | |
class ReverseSelectionDirections(sublime_plugin.TextCommand): | |
def run(self, edit): | |
view = self.view | |
for sel in [sublime.Region(sel.b, sel.a) for sel in view.sel()]: | |
view.sel().add(sel) | |
view.show(view.sel()) | |
################################################################################ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment