-
-
Save sligodave/2586767 to your computer and use it in GitHub Desktop.
Revisions
-
sligodave revised this gist
May 3, 2012 . 1 changed file with 9 additions and 9 deletions.There are no files selected for viewing
This file contains hidden or 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 @@ -1,22 +1,23 @@ # saved from: http://pastie.org/private/bclbdgxzbkb1gs2jfqzehg import sublime import sublime_plugin import subprocess class RunExternalCommand(sublime_plugin.TextCommand): """ Runs an external command with the selected text, which will then be replaced by the command output. """ def run(self, edit, args): if self.view.sel()[0].empty(): # nothing selected: process the entire file region = sublime.Region(0L, self.view.size()) else: # process only selected region region = self.view.line(self.view.sel()[0]) p = subprocess.Popen( args, @@ -26,9 +27,8 @@ def run(self, view, args): stderr=subprocess.PIPE, stdin=subprocess.PIPE) output, error = p.communicate(self.view.substr(region).encode('utf-8')) if error: sublime.errorMessage(error.decode('utf-8')) else: self.view.replace(edit, region, output.decode('utf-8')) -
jefftriplett revised this gist
Sep 29, 2011 . 1 changed file with 8 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or 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 @@ -1,14 +1,15 @@ # saved from: http://pastie.org/private/bclbdgxzbkb1gs2jfqzehg import sublime import sublimeplugin import subprocess class RunExternalCommand(sublimeplugin.TextCommand): """ Runs an external command with the selected text, which will then be replaced by the command output. """ def run(self, view, args): if view.sel()[0].empty(): # nothing selected: process the entire file @@ -19,11 +20,11 @@ def run(self, view, args): p = subprocess.Popen( args, shell=True, bufsize=-1, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE) output, error = p.communicate(view.substr(region).encode('utf-8')) -
jefftriplett revised this gist
Sep 29, 2011 . 1 changed file with 24 additions and 24 deletions.There are no files selected for viewing
This file contains hidden or 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 @@ -4,30 +4,30 @@ import subprocess class RunExternalCommand(sublimeplugin.TextCommand): """ Runs an external command with the selected text, which will then be replaced by the command output. """ def run(self, view, args): if view.sel()[0].empty(): # nothing selected: process the entire file region = sublime.Region(0L, view.size()) else: # process only selected region region = view.line(view.sel()[0]) p = subprocess.Popen( args, shell = True, bufsize = -1, stdout = subprocess.PIPE, stderr = subprocess.PIPE, stdin = subprocess.PIPE) output, error = p.communicate(view.substr(region).encode('utf-8')) if error: sublime.errorMessage(error.decode('utf-8')) else: view.replace(region, output.decode('utf-8')) -
jefftriplett created this gist
Sep 29, 2011 .There are no files selected for viewing
This file contains hidden or 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,33 @@ # saved from: http://pastie.org/private/bclbdgxzbkb1gs2jfqzehg import sublime, sublimeplugin import subprocess class RunExternalCommand(sublimeplugin.TextCommand): """ Runs an external command with the selected text, which will then be replaced by the command output. """ def run(self, view, args): if view.sel()[0].empty(): # nothing selected: process the entire file region = sublime.Region(0L, view.size()) else: # process only selected region region = view.line(view.sel()[0]) p = subprocess.Popen( args, shell = True, bufsize = -1, stdout = subprocess.PIPE, stderr = subprocess.PIPE, stdin = subprocess.PIPE) output, error = p.communicate(view.substr(region).encode('utf-8')) if error: sublime.errorMessage(error.decode('utf-8')) else: view.replace(region, output.decode('utf-8'))