AutoFileName
Sublime Text plugin that autocompletes filenames
Details
Installs
- Total 1.56M
- Win 1.20M
- Mac 210K
- Linux 154K
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 | Aug 17 | Aug 16 | Aug 15 | Aug 14 | Aug 13 | Aug 12 | Aug 11 | Aug 10 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 29 | 126 | 143 | 112 | 153 | 173 | 137 | 111 | 97 | 114 | 169 | 170 | 177 | 152 | 97 | 124 | 149 | 141 | 165 | 186 | 171 | 90 | 118 | 97 | 118 | 131 | 170 | 125 | 108 | 109 | 140 | 130 | 145 | 144 | 163 | 87 | 93 | 111 | 163 | 160 | 169 | 102 | 79 | 94 | 127 | 160 |
Mac | 6 | 13 | 27 | 12 | 16 | 14 | 14 | 13 | 7 | 10 | 15 | 13 | 12 | 17 | 11 | 8 | 24 | 16 | 12 | 17 | 14 | 13 | 5 | 14 | 17 | 13 | 15 | 11 | 9 | 14 | 10 | 11 | 8 | 17 | 19 | 10 | 11 | 13 | 10 | 16 | 23 | 24 | 12 | 16 | 16 | 22 |
Linux | 1 | 8 | 11 | 9 | 13 | 27 | 18 | 7 | 12 | 18 | 13 | 18 | 18 | 10 | 27 | 13 | 11 | 14 | 16 | 11 | 11 | 11 | 10 | 12 | 16 | 15 | 14 | 7 | 19 | 22 | 18 | 13 | 14 | 17 | 16 | 21 | 16 | 21 | 14 | 21 | 18 | 12 | 16 | 13 | 23 | 15 |
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 /.