ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Better​Go​To​File

by Suor ST3

Open file paths under cursor in Sublime Text

Details

Installs

  • Total 44
  • Win 18
  • Mac 10
  • Linux 16
Sep 22 Sep 21 Sep 20 Sep 19 Sep 18 Sep 17 Sep 16 Sep 15 Sep 14 Sep 13 Sep 12 Sep 11 Sep 10 Sep 9 Sep 8 Sep 7 Sep 6 Sep 5 Sep 4 Sep 3 Sep 2 Sep 1 Aug 31 Aug 30 Aug 29 Aug 28 Aug 27 Aug 26 Aug 25 Aug 24 Aug 23 Aug 22 Aug 21 Aug 20 Aug 19 Aug 18 Aug 17 Aug 16 Aug 15 Aug 14 Aug 13 Aug 12 Aug 11 Aug 10 Aug 9
Windows 1 0 0 0 0 2 1 0 1 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 2 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

BetterGoToFile

Open file path under cursor in Sublime Text.

If path resolves to a single file in current project, it is opened right away. If several files match, you get a quick panel to choose one.

Supported forms:

path/to/file.py
path/to/file.py:42
"path/to/file.py"
'/absolute/path/to/file.py'

Shortcut

Add a key binding to your user keymap:

[
    {"keys": ["ctrl+enter"], "command": "goto_file"}
]

Use whatever key you prefer. The command is also available from the command palette as “BetterGoToFile: Open File at Cursor”.

If no path is found or nothing matches, the plugin falls back to Sublime's goto_definition command by default. You can change that in BetterGoToFile.sublime-settings:

{
    "fallback_command": "goto_definition",
    "fallback_args": {},
    "excluded_dirs": [".git", "node_modules", "__pycache__", ".venv"]
}

Project files are cached for a few minutes to avoid walking the same folders on every command run.