brackets-emmet icon indicating copy to clipboard operation
brackets-emmet copied to clipboard

Emmets on Brackets doesnt have a preferences.json file

Open dnecklesportfolio opened this issue 8 years ago • 2 comments

even when created and the location is set within brackets, doesnt work

--- Want to back this issue? **[Post a bounty on it!](https://www.bountysource.com/issues/28707952-emmets-on-brackets-doesnt-have-a-preferences-json-file?utm_campaign=plugin&utm_content=tracker%2F311111&utm_medium=issues&utm_source=github)** We accept bounties via [Bountysource](https://www.bountysource.com/?utm_campaign=plugin&utm_content=tracker%2F311111&utm_medium=issues&utm_source=github).

dnecklesportfolio avatar Nov 30 '15 09:11 dnecklesportfolio

Try to use full absolute path to extensions folder

sergeche avatar Nov 30 '15 09:11 sergeche

I had this problem too. This is a hard nut to crack unless you specifically look at the Node.js documentation for absolute file path formats. What is an absolute file path varies by operating system. Node.js documentation on absolute file paths is here.

You may have to add or replace forward/back slashes until it fits the required format.

POSIX (AKA Mac and Unix):

path.isAbsolute('/foo/bar') // true path.isAbsolute('/baz/..') // true

Windows:

path.isAbsolute('//server') // true path.isAbsolute('\\server') // true path.isAbsolute('C:/foo/..') // true path.isAbsolute('C:\foo\..') // true

I hope this helps others that have the same issue,

-Doug (DelphiCoder)

DelphiCoder avatar Apr 30 '17 07:04 DelphiCoder