Created
November 7, 2008 18:27
-
-
Save collin/22934 to your computer and use it in GitHub Desktop.
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 characters
#!/usr/bin/ruby | |
# Copyright (c) 2004 - 2008 Beanlogic Limited | |
# | |
# This file is part of gedit_on_rails. | |
# You should have received a copy of the GNU General Public License | |
# along with gedit_on_rails. If not, see <http://www.gnu.org/licenses/>. | |
GEDIT = `which gedit`.chomp | |
url = ARGV.first.dup | |
url.gsub!("txmt://open?url=", '') | |
file, line = url.split('&line=') | |
`#{GEDIT} #{file} +#{line}` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment