AutoFileName
Sublime Text plugin that autocompletes filenames
Details
Installs
- Total 1.60M
- Win 1.23M
- Mac 214K
- Linux 159K
Jan 22 | Jan 21 | Jan 20 | Jan 19 | Jan 18 | Jan 17 | Jan 16 | Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 11 | 66 | 77 | 46 | 27 | 47 | 62 | 50 | 68 | 50 | 41 | 43 | 49 | 70 | 80 | 69 | 54 | 47 | 51 | 69 | 54 | 37 | 34 | 56 | 41 | 43 | 40 | 52 | 48 | 56 | 54 | 46 | 55 | 51 | 54 | 67 | 63 | 66 | 49 | 39 | 37 | 61 | 58 | 59 | 48 | 51 |
Mac | 0 | 19 | 12 | 8 | 5 | 10 | 9 | 6 | 13 | 7 | 8 | 5 | 11 | 10 | 10 | 13 | 15 | 12 | 2 | 3 | 8 | 3 | 5 | 3 | 3 | 5 | 14 | 6 | 13 | 8 | 15 | 9 | 8 | 8 | 11 | 7 | 15 | 13 | 4 | 8 | 7 | 11 | 15 | 10 | 8 | 6 |
Linux | 0 | 6 | 12 | 6 | 10 | 5 | 5 | 6 | 7 | 7 | 4 | 5 | 15 | 13 | 5 | 9 | 5 | 13 | 10 | 11 | 9 | 7 | 9 | 3 | 12 | 7 | 9 | 2 | 2 | 9 | 7 | 4 | 6 | 10 | 10 | 4 | 12 | 7 | 5 | 4 | 12 | 10 | 10 | 14 | 19 | 6 |
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 /.