AutoFileName
Sublime Text plugin that autocompletes filenames
Details
Installs
- Total 1.30M
- Win 978K
- Mac 186K
- Linux 133K
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 | 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 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 34 | 406 | 411 | 494 | 494 | 513 | 496 | 507 | 427 | 383 | 462 | 562 | 525 | 541 | 545 | 423 | 444 | 448 | 454 | 454 | 484 | 476 | 389 | 339 | 250 | 251 | 336 | 390 | 393 | 382 | 368 | 314 | 350 | 431 | 442 | 446 | 371 | 376 | 458 | 406 | 518 | 511 | 472 | 378 | 349 | 471 |
Mac | 5 | 40 | 50 | 55 | 44 | 46 | 41 | 62 | 34 | 38 | 42 | 47 | 54 | 40 | 44 | 31 | 31 | 51 | 46 | 53 | 35 | 57 | 32 | 29 | 31 | 39 | 41 | 39 | 32 | 39 | 32 | 27 | 39 | 46 | 40 | 52 | 41 | 40 | 53 | 43 | 53 | 51 | 39 | 30 | 35 | 45 |
Linux | 3 | 49 | 35 | 55 | 49 | 49 | 58 | 56 | 48 | 52 | 42 | 45 | 42 | 45 | 53 | 51 | 43 | 63 | 52 | 65 | 53 | 51 | 46 | 32 | 26 | 34 | 41 | 45 | 40 | 33 | 31 | 33 | 39 | 35 | 32 | 37 | 40 | 42 | 33 | 42 | 37 | 59 | 36 | 50 | 42 | 49 |
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 /.