AutoFileName
Sublime Text plugin that autocompletes filenames
Details
Installs
- Total 1.61M
- Win 1.24M
- Mac 216K
- Linux 160K
Jun 13 | Jun 12 | Jun 11 | Jun 10 | Jun 9 | Jun 8 | Jun 7 | Jun 6 | Jun 5 | Jun 4 | Jun 3 | Jun 2 | Jun 1 | May 31 | May 30 | May 29 | May 28 | May 27 | May 26 | May 25 | May 24 | May 23 | May 22 | May 21 | May 20 | May 19 | May 18 | May 17 | May 16 | May 15 | May 14 | May 13 | May 12 | May 11 | May 10 | May 9 | May 8 | May 7 | May 6 | May 5 | May 4 | May 3 | May 2 | May 1 | Apr 30 | Apr 29 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 40 | 59 | 42 | 42 | 55 | 41 | 37 | 38 | 34 | 58 | 40 | 39 | 39 | 35 | 41 | 46 | 50 | 55 | 43 | 39 | 43 | 59 | 55 | 52 | 58 | 71 | 52 | 45 | 51 | 46 | 84 | 60 | 52 | 29 | 34 | 46 | 51 | 48 | 48 | 64 | 28 | 41 | 28 | 52 | 50 | 89 |
Mac | 6 | 9 | 9 | 9 | 7 | 2 | 3 | 8 | 6 | 11 | 8 | 7 | 10 | 4 | 8 | 5 | 10 | 6 | 15 | 7 | 6 | 6 | 20 | 13 | 13 | 7 | 8 | 5 | 11 | 6 | 11 | 10 | 10 | 6 | 2 | 7 | 12 | 13 | 18 | 9 | 10 | 5 | 5 | 5 | 9 | 22 |
Linux | 7 | 10 | 14 | 9 | 7 | 5 | 7 | 9 | 8 | 8 | 4 | 10 | 7 | 8 | 8 | 5 | 9 | 8 | 4 | 5 | 4 | 6 | 10 | 4 | 4 | 4 | 6 | 9 | 10 | 6 | 12 | 6 | 8 | 10 | 8 | 5 | 9 | 8 | 12 | 9 | 8 | 9 | 13 | 10 | 12 | 12 |
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 /.