AutoFileName
Sublime Text plugin that autocompletes filenames
Details
Installs
- Total 1.61M
- Win 1.23M
- Mac 215K
- Linux 159K
Mar 25 | Mar 24 | Mar 23 | Mar 22 | Mar 21 | Mar 20 | Mar 19 | Mar 18 | Mar 17 | Mar 16 | Mar 15 | Mar 14 | Mar 13 | Mar 12 | Mar 11 | Mar 10 | Mar 9 | Mar 8 | Mar 7 | Mar 6 | Mar 5 | Mar 4 | Mar 3 | Mar 2 | Mar 1 | Feb 28 | Feb 27 | Feb 26 | Feb 25 | Feb 24 | Feb 23 | Feb 22 | Feb 21 | Feb 20 | Feb 19 | Feb 18 | Feb 17 | Feb 16 | Feb 15 | Feb 14 | Feb 13 | Feb 12 | Feb 11 | Feb 10 | Feb 9 | Feb 8 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 10 | 56 | 47 | 44 | 54 | 72 | 71 | 69 | 72 | 51 | 46 | 56 | 61 | 82 | 73 | 83 | 35 | 45 | 45 | 62 | 83 | 69 | 67 | 56 | 59 | 68 | 93 | 122 | 121 | 98 | 47 | 61 | 52 | 78 | 93 | 125 | 91 | 71 | 47 | 66 | 83 | 88 | 97 | 66 | 57 | 67 |
Mac | 1 | 11 | 7 | 5 | 5 | 10 | 15 | 8 | 5 | 10 | 9 | 11 | 7 | 15 | 12 | 6 | 8 | 6 | 7 | 8 | 9 | 10 | 14 | 8 | 7 | 8 | 15 | 17 | 10 | 13 | 9 | 9 | 10 | 11 | 15 | 10 | 12 | 3 | 8 | 7 | 3 | 12 | 11 | 13 | 11 | 14 |
Linux | 1 | 7 | 9 | 12 | 10 | 7 | 10 | 14 | 30 | 10 | 9 | 14 | 9 | 10 | 15 | 11 | 11 | 10 | 9 | 4 | 15 | 17 | 11 | 8 | 10 | 9 | 7 | 5 | 12 | 9 | 10 | 7 | 8 | 7 | 9 | 8 | 9 | 11 | 9 | 7 | 9 | 10 | 13 | 6 | 10 | 8 |
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 /.