AutoFileName
Sublime Text plugin that autocompletes filenames
Details
Installs
- Total 1.61M
- Win 1.23M
- Mac 215K
- Linux 159K
Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | Feb 7 | Feb 6 | Feb 5 | Feb 4 | Feb 3 | Feb 2 | Feb 1 | Jan 31 | Jan 30 | Jan 29 | Jan 28 | Jan 27 | Jan 26 | Jan 25 | Jan 24 | Jan 23 | 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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 8 | 52 | 78 | 93 | 125 | 91 | 71 | 47 | 66 | 83 | 88 | 97 | 66 | 57 | 67 | 56 | 67 | 68 | 81 | 64 | 39 | 59 | 61 | 46 | 47 | 59 | 54 | 45 | 49 | 49 | 59 | 56 | 66 | 77 | 46 | 27 | 47 | 62 | 50 | 68 | 50 | 41 | 43 | 49 | 70 | 80 |
Mac | 2 | 10 | 11 | 15 | 10 | 12 | 3 | 8 | 7 | 3 | 12 | 11 | 13 | 11 | 14 | 4 | 14 | 21 | 11 | 9 | 9 | 9 | 7 | 16 | 11 | 7 | 12 | 3 | 6 | 4 | 9 | 6 | 19 | 12 | 8 | 5 | 10 | 9 | 6 | 13 | 7 | 8 | 5 | 11 | 10 | 10 |
Linux | 4 | 8 | 7 | 9 | 8 | 9 | 11 | 9 | 7 | 9 | 10 | 13 | 6 | 10 | 8 | 9 | 12 | 9 | 10 | 6 | 13 | 9 | 4 | 5 | 5 | 5 | 8 | 11 | 6 | 11 | 7 | 8 | 6 | 12 | 6 | 10 | 5 | 5 | 6 | 7 | 7 | 4 | 5 | 15 | 13 | 5 |
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 /.