Goto With Common Suffix
Find the common suffix path with the project folder
Details
Installs
- Total 182
- Win 101
- Mac 56
- Linux 25
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 | Aug 8 | Aug 7 | Aug 6 | Aug 5 | Aug 4 | Aug 3 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 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 | 1 | 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 | 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 |
Readme
- Source
- raw.githubusercontent.com
Goto With Common Suffix plugin
This plugin extends the usage of Sublime's File navigation by allowing you to use common suffix paths.
For example, I have opened up a Sublime window at /Users/ivan/projects
and I have a file located at /Users/ivan/projects/example/readme.txt
. I can use any arrangement of prefixes and input paths like /var/www/example/readme.txt
and the plugin will correctly determine the common suffix (example/readme.txt
) and opens the Goto Anything with it.
The use case is that I sometimes get GitHub urls that point to a file. I would like to simply copy that address and use this plugin to determine the file I want. It removes the step of me manually figuring out the common suffix to put in the quick finder. Other times, stack traces from other machines include file location but those locations are specific to that machine's file system. This plugin can help you get to the file you want.
Installation
Install via Package Control or you can manually install the package.
Usage
There is now a method named goto_with_common_suffix
and command name Goto With common suffix
that invokes it. You can use this plugin by opening the Command Palette and selecting this command.
You can also set your custom key binding to invoke the command. Here's my user sublime key map file:
[
{ "keys": ["ctrl+p"], "command": "goto_with_common_suffix"}
]
Here is a gif showing how I have this project opened in sublime and that by invoking this plugin (with ctrl+p), I can paste https://github.com/ivantsepp/goto-with-common-suffix/blob/master/goto_with_common_suffix.py
and it will correctly find the common suffix.