Skip to content
This repository has been archived by the owner on Nov 1, 2020. It is now read-only.

Cache Folder

Ingo Richter edited this page Sep 27, 2013 · 14 revisions

Brackets stores some data in a cache folder managed by CEF -- roughly equivalent to a browser cache, except specific to Brackets. At the moment, this folder stores both throwaway data and user preferences.

If you're having trouble starting Brackets after upgrading from a previous build, try deleting this folder. You'll lose any stored preferences and state like the recent folder list.

Cache location:

  • Mac: ~/Library/Application Support/Brackets/cef_data
  • Win XP: C:\Documents and Settings\<username>\Application Data\Brackets\cef_data -- (aka %appdata%\Brackets\cef_data)
  • Win Vista/7: C:\Users\<username>\AppData\Roaming\Brackets\cef_data -- (aka %appdata%\Brackets\cef_data)
  • Linux: ~/.config/brackets/cef_data -- (aka $XDG_CONFIG_HOME/brackets/cef_data)

Note: for Edge Code, replace Brackets in the path with Adobe/Edge Code.

Less thorough alternative

To reset preferences only (not the lower-level CEF cache), open the Developer Tools console and run

localStorage.clear()
Clone this wiki locally