FuzzyFilePath
Autocomplete relative or absolute file paths in Sublime Text project folder
Details
Installs
- Total 41K
- Win 21K
- Mac 12K
- Linux 7K
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 | Aug 2 | Aug 1 | Jul 31 | Jul 30 | Jul 29 | Jul 28 | Jul 27 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 2 | 3 | 0 | 3 | 1 | 6 | 0 | 1 | 1 | 0 | 0 | 0 | 3 | 3 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 2 | 0 | 0 | 1 | 1 | 2 | 1 | 0 | 0 | 5 | 3 | 0 | 1 | 2 | 1 | 0 | 0 | 2 | 1 | 3 | 1 | 1 | 0 | 2 |
Mac | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 2 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 2 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 |
Linux | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 3 | 0 | 0 | 0 | 0 | 0 | 1 | 3 | 1 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
Readme
- Source
- raw.githubusercontent.com
FuzzyFilePath
Sublime Text Plugin
Fuzzy search and insert filenames inside your current project directory. Highly customizable.
Basic settings support Javascript, HTML, CSS, PHP and glsl, but may be
adjusted for most languages
Installation
Package Control
After Package Control installation, restart Sublime Text. Use the Command Palette Cmd+Shift+P (OS X) or Ctrl+Shift+P (Linux/Windows) and search for Package Control: Install Package. Wait until Package Control downloaded the latest package list and search for FuzzyFilePath.
github
in <SublimeConfig>/Packages/
call: git clone https://github.com/sagold/FuzzyFilePath.git
Sublime Text 2
in <SublimeConfig>/Packages/FuzzyFilePath/
switch to Sublime Text 2 Branch with: git checkout st2
Attention: Sublime Text 2 will no longer be supported.
Usage
Filepaths will be suggested if there is a matching trigger for the current context and its property auto is set to true. For a matching trigger, filepath completions may be forced (ignoring auto property) by the following shorcuts:
- Ctrl+Alt+Space inserts filepaths relative, overriding possible settings
- Ctrl+Shift+Space inserts filepaths absolute, overriding possible settings
The current string may modify the suggested filepaths by the following rules:
word
suggests all matching files by the type (relative or absolute) as specified in the matched rule./
suggests matching files within the current directory and inserts selection relative../
suggests all matching files and inserts selection relative/folder
suggests all matching files and insert selection absolute
FuzzyFilePath is disabled for single files or files outside the opened folder.
Open File
Use Alt+Enter to open the file under cursor
Configure Completion Panel
Ensure you have autocompletion activated for Sublime. In those cases, where the autocompletion panel is still
not opened (for any type of completions), you may extend auto_complete_triggers
to add special rules for the
completion panel to show up. i.e. enabling autocompletion for latex \input{"path/to/asset"}
, you could add:
"auto_complete_triggers":
[
{
"characters": "abcdefghijklmnopqrstuvwxyz",
"selector": "text.tex.latex"
}
]
or enabling html completion for <script src="path/to/script">
"auto_complete_triggers":
[
{
"characters": "abcdefghijklmnopqrstuvwxyz",
"selector": "string.quoted.double.html"
}
]
Special Characters
If your projects contains filenames with special characters, consider modifying Sublime Texts word_separators
.
i.e. in AngularJs filenames may start with $
. In Sublime Text | Preferences | Settings - User redeclare word
separators, removing $
:
“js
"word_separators": "./\\()\"'-:,.;<>~!@#%^&*|+=[]{}
~?”
## Customization
For further details about troubleshooting, customization, settings and keybindings please
[refer to the Wiki](https://github.com/sagold/FuzzyFilePath/wiki)
Trying to integrate other languages? See the
[auto complete Python package tutorial](https://github.com/sagold/FuzzyFilePath/wiki/Tutorial:-Add-support-for-python-packages)
#### Related Plugins
##### [AutoFileName](https://github.com/BoundInCode/AutoFileName)
- uses file discovery based on current directory instead of fuzzy search
- adds properties for images in autocompletion description