cd ~/.config/sublime-text-2/Packages/User/
curl -O https://raw.github.com/gist/1344471/open_file_at_cursor.pyOpen keyboard bindings file, and add a line to it
[
...
{ "keys": ["alt+o"], "command": "open_file_at_cursor" } // this one
]cd ~/.config/sublime-text-2/Packages/User/
curl -O https://raw.github.com/gist/1344471/open_file_at_cursor.pyOpen keyboard bindings file, and add a line to it
[
...
{ "keys": ["alt+o"], "command": "open_file_at_cursor" } // this one
]| import sublime, sublime_plugin | |
| import os.path, string | |
| import re | |
| VALID_FILENAME_CHARS = "-_.() %s%s%s" % (string.ascii_letters, string.digits, "/\\") | |
| filename_re = re.compile(r'[\w/\.-]+') | |
| class OpenFilenameUnderCursor(sublime_plugin.TextCommand): | |
| def run(self, edit): | |
| for region in self.view.sel(): | |
| # Find anything looking like file in whole line at cursor | |
| whole_line = self.view.substr(self.view.line(region)) | |
| row, col = self.view.rowcol(region.begin()) | |
| while col >= len(whole_line) or whole_line[col] in VALID_FILENAME_CHARS: | |
| col -= 1 | |
| m = filename_re.search(whole_line, col) | |
| if m: | |
| filename = m.group() | |
| print "Opening file '%s'" % (filename) | |
| self.view.window().open_file(filename) | |
| else: | |
| print "No filename discovered" |
Yeah, this is python 2 style prints. Maybe if you change them to
print()style it will work.