Enough Sublime Text
Currently trying to move from pretty good user, to advanced user for Sublime Text.
Navigate files
cmd-t
orcmd-p
to open the file catalog.- Only type parts of file names or paths.
- The file catalog saves the previous searches and will get better and better.
- When you need to open several files, don’t press
enter
, pressright arrow
to open the file currently highlighted, and keep the file catalog active. Once you opened all your files, either pressreturn
orenter
if you’re on the last file you need. - To jump to a specific line, prefix your search with
:
as in:100
will jump to line 100. - To jump to a specific symbol, prefix your search with
@
, as in@gateway_params
. - To create a word search - like
cmd-f
- in the file, prefix your file catalog search with#
. - You can combine these parameters:
gate contr @ index
will check forGatewaysController#index
👌. Useful if you know where you want to navigate.
Source: Easily open and navigate your files in Sublime Text!