AutoFileName
Sublime Text plugin that autocompletes filenames
Details
Installs
- Total 1.60M
- Win 1.23M
- Mac 214K
- Linux 158K
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 43 | 41 | 30 | 61 | 50 | 51 | 75 | 0 | 0 | 59 | 70 | 56 | 48 | 72 | 77 | 81 | 63 | 73 | 56 | 54 | 64 | 67 | 91 | 68 | 60 | 42 | 56 | 63 | 74 | 97 | 91 | 79 | 41 | 48 | 90 | 75 | 82 | 84 | 73 | 52 | 55 | 84 | 88 | 81 | 106 | 81 |
Mac | 5 | 7 | 2 | 10 | 2 | 6 | 10 | 0 | 0 | 9 | 11 | 6 | 9 | 6 | 17 | 9 | 7 | 14 | 6 | 5 | 9 | 8 | 17 | 12 | 8 | 8 | 7 | 11 | 7 | 11 | 8 | 5 | 5 | 2 | 10 | 10 | 13 | 5 | 10 | 10 | 4 | 18 | 9 | 12 | 10 | 10 |
Linux | 4 | 8 | 5 | 10 | 9 | 12 | 5 | 0 | 0 | 14 | 10 | 11 | 10 | 6 | 10 | 14 | 8 | 11 | 11 | 5 | 11 | 11 | 11 | 9 | 3 | 10 | 7 | 11 | 8 | 21 | 15 | 11 | 10 | 4 | 11 | 9 | 13 | 10 | 13 | 8 | 14 | 10 | 10 | 15 | 12 | 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 /.