AutoFileName
Sublime Text plugin that autocompletes filenames
Details
Installs
- Total 1.62M
- Win 1.24M
- Mac 216K
- Linux 160K
Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | 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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 39 | 44 | 51 | 62 | 46 | 30 | 54 | 54 | 45 | 57 | 49 | 42 | 35 | 39 | 55 | 67 | 84 | 44 | 45 | 44 | 58 | 70 | 50 | 51 | 33 | 47 | 33 | 144 | 50 | 51 | 67 | 39 | 28 | 26 | 25 | 43 | 49 | 39 | 56 | 21 | 39 | 35 | 49 | 51 | 45 | 40 |
Mac | 5 | 5 | 7 | 9 | 5 | 7 | 8 | 5 | 7 | 17 | 8 | 4 | 11 | 11 | 9 | 11 | 6 | 9 | 4 | 8 | 5 | 4 | 9 | 11 | 10 | 5 | 9 | 6 | 7 | 7 | 6 | 7 | 4 | 6 | 8 | 9 | 7 | 9 | 4 | 6 | 5 | 10 | 11 | 10 | 7 | 9 |
Linux | 9 | 7 | 14 | 6 | 5 | 3 | 10 | 3 | 11 | 6 | 9 | 4 | 5 | 3 | 6 | 8 | 12 | 8 | 4 | 6 | 6 | 9 | 8 | 10 | 5 | 5 | 12 | 13 | 8 | 14 | 6 | 8 | 3 | 10 | 9 | 11 | 12 | 13 | 12 | 5 | 10 | 7 | 13 | 11 | 8 | 9 |
Readme
- Source
- raw.githubusercontent.com
AutoFileName: Autocomplete Filenames in Sublime Text
Do you ever find yourself sifting through folders in the sidebar trying to remember what you named that file? Can't remember if it was a jpg or a png? Maybe you just wish you could type filenames faster. No more.
Whether your making a img
tag in html, setting a background image in css, or linking a .js
file to your html (or whatever else people use filename paths for these days…), you can now autocomplete the filename. Plus, it uses the built-in autocomplete, so no need to learn another pesky shortcut.
Usage
If you are looking to autocomplete an image path in an HTML <img>
tag:
<img src="../|" />
Pressing ctrl+space, will activate AutoFileName. I list of available files where be ready to select.
Looking for an even more automatic and seemless completion? Add the following to your User Settings file:
"auto_complete_triggers":
[
{
"characters": "<",
"selector": "text.html"
},
{
"characters": "/",
"selector": "string.quoted.double.html,string.quoted.single.html, source.css"
}
]
With this, there's no need to worry about pressing ctrl+space, autocompletion with appear upon pressing /.