Goto Related
Jump to similarly named files in Sublime Text
Details
Installs
- Total 404
- Win 177
- Mac 151
- Linux 76
Aug 14 | Aug 13 | Aug 12 | Aug 11 | Aug 10 | Aug 9 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | Aug 4 | Aug 3 | Aug 2 | Aug 1 | Jul 31 | Jul 30 | Jul 29 | Jul 28 | Jul 27 | Jul 26 | Jul 25 | Jul 24 | Jul 23 | Jul 22 | Jul 21 | Jul 20 | Jul 19 | Jul 18 | Jul 17 | Jul 16 | Jul 15 | Jul 14 | Jul 13 | Jul 12 | Jul 11 | Jul 10 | Jul 9 | Jul 8 | Jul 7 | Jul 6 | Jul 5 | Jul 4 | Jul 3 | Jul 2 | Jul 1 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 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 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 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 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
Overview
In a large project, related files often have similar names. Goto Related is a shortcut to show the Goto Anything overlay with the current filename pre-populated.
For example, if you are viewing app/views/rocket_launch.html.erb
and press
⌘+.
, the fuzzy file finder palette appears with rocket_launch
pre-populated.*
* This assumes that you have Goto Related configured to strip file extensions.
Installation
You can install the package manually or, if you use Package Control, install “Goto Related”.
Configuration
Discarding patterns
Goto Related can be configured to discard parts of the current filename using
regular expressions. This is done in your project settings
(Project > Edit Project
) or your global settings
(Sublime Text > Preferences > Settings - User
). For example:
"goto_related_patterns_to_strip": [
"^_",
"\\..+$",
"_spec$",
"_controller$"
]
will strip leading underscores, file extensions, and a couple suffixes, so:
_partial.html.erb
becomespartial
utilities_helper_spec.rb
becomesutilities_helper
rocket_launch_controller_spec.rb
becomesrocket_launch
Project-level configuration overrides global configuration. The regular expressions are executed in the order they are defined.
Custom key binding
You can change the default keyboard shortcut in
Sublime Text > Preferences > Key Bindings - User
. This defaults to:
[
{ "keys": ["super+."], "command": "goto_related" }
]
Development
To run the test suite:
pip install -r requirements.txt
python test/test_goto_related.py