AutoFileName
Sublime Text plugin that autocompletes filenames
Details
Installs
- Total 1.61M
- Win 1.24M
- Mac 216K
- Linux 160K
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 | 13 | 36 | 45 | 51 | 57 | 19 | 29 | 38 | 57 | 35 | 45 | 37 | 38 | 38 | 30 | 47 | 49 | 50 | 50 | 29 | 29 | 44 | 43 | 52 | 49 | 37 | 28 | 31 | 37 | 35 | 41 | 50 | 52 | 24 | 25 | 39 | 40 | 39 | 44 | 47 | 39 | 24 | 39 | 50 | 29 | 48 |
Mac | 3 | 9 | 8 | 7 | 3 | 7 | 7 | 10 | 6 | 14 | 7 | 5 | 9 | 7 | 5 | 11 | 7 | 11 | 10 | 4 | 6 | 7 | 5 | 6 | 9 | 13 | 3 | 7 | 10 | 5 | 11 | 6 | 9 | 5 | 13 | 10 | 9 | 9 | 5 | 5 | 3 | 4 | 14 | 9 | 12 | 11 |
Linux | 4 | 5 | 7 | 10 | 4 | 8 | 9 | 8 | 7 | 9 | 5 | 12 | 11 | 9 | 5 | 5 | 12 | 7 | 3 | 11 | 9 | 11 | 6 | 10 | 10 | 6 | 6 | 7 | 22 | 10 | 3 | 12 | 4 | 7 | 1 | 11 | 9 | 10 | 10 | 9 | 4 | 5 | 6 | 9 | 8 | 6 |
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 /.