12
votes

I'm using sublime text as a code editor, I wasted time with writing file paths for photos and assets. I searched and I found two packages for file path completion, which are AutoFileName and FuzzyFilePath, but these packages only work for sublime text 2.

Are there alternative solutions for sublime text 3?

4
Both packages support ST3. Do you use PackageControl? - r-stein

4 Answers

16
votes

Auto​File​Name now supports Sublime Text 3 as does FuzzyFilePath.

A search on Package Control yields results for other similar packages too.

1
votes

probably what you want is AutoFileName

0
votes

First install Package Control then search autofilename and install it.. u will see files in dropdown I am also using Sublime Text 3 and it works after u select css/ then all css file will appear in DD

0
votes

For a while I thought AutoFileName wasn't working, but the answer is that you must have the cursor in between two quotes for autocomplete to fire:

import '../';

(cursor should be after the / above)

If you just start typing like this it won't fire:

import '../

Super simple, once you know, and implied in the package documentation, but it took me a little while to figure out - I hope this will help somebody else.