AutoFileName
Sublime Text plugin that autocompletes filenames
Details
Installs
- Total 1.49M
- Win 1.14M
- Mac 203K
- Linux 148K
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 | Jul 26 | Jul 25 | Jul 24 | Jul 23 | Jul 22 | Jul 21 | Jul 20 | Jul 19 | Jul 18 | Jul 17 | Jul 16 | Jul 15 | Jul 14 | Jul 13 | Jul 12 | Jul 11 | Jul 10 | Jul 9 | Jul 8 | Jul 7 | Jul 6 | Jul 5 | Jul 4 | Jul 3 | Jul 2 | Jul 1 | Jun 30 | Jun 29 | Jun 28 | Jun 27 | Jun 26 | Jun 25 | Jun 24 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 254 | 203 | 182 | 212 | 232 | 275 | 275 | 245 | 196 | 210 | 223 | 251 | 272 | 269 | 240 | 203 | 194 | 204 | 263 | 277 | 244 | 240 | 183 | 180 | 216 | 280 | 271 | 261 | 275 | 183 | 222 | 225 | 286 | 254 | 246 | 250 | 203 | 222 | 210 | 257 | 295 | 265 | 291 | 193 | 211 | 232 |
Mac | 24 | 15 | 15 | 25 | 22 | 27 | 32 | 21 | 13 | 21 | 17 | 25 | 29 | 32 | 22 | 20 | 24 | 30 | 22 | 32 | 23 | 24 | 14 | 15 | 27 | 29 | 20 | 25 | 31 | 26 | 19 | 32 | 26 | 25 | 30 | 21 | 21 | 21 | 25 | 24 | 18 | 31 | 24 | 19 | 11 | 23 |
Linux | 16 | 17 | 18 | 24 | 32 | 22 | 24 | 26 | 22 | 26 | 17 | 23 | 32 | 20 | 26 | 26 | 12 | 32 | 23 | 29 | 29 | 24 | 17 | 25 | 29 | 20 | 28 | 29 | 35 | 20 | 21 | 19 | 32 | 15 | 25 | 21 | 25 | 23 | 23 | 23 | 23 | 37 | 29 | 26 | 22 | 24 |
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 /.