Skip to content

Instantly share code, notes, and snippets.

@sublimator
Created July 30, 2011 08:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sublimator/1115334 to your computer and use it in GitHub Desktop.
Save sublimator/1115334 to your computer and use it in GitHub Desktop.
#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