-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* simplify preferences store * remove unused thunks * use new preference method for prettier * use new preference method for preview
- Loading branch information
1 parent
953dabd
commit bfcd906
Showing
6 changed files
with
137 additions
and
265 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
export const AUTO_COMPLETE = 'settings.autocomplete'; | ||
export const VIM_MODE = 'settings.vimmode'; | ||
export const LIVE_PREVIEW = 'settings.livepreview'; | ||
export const INSTANT_PREVIEW = 'settings.instantpreview'; | ||
export const PRETTIFY_ON_SAVE = 'settings.prettifyonsave'; | ||
export const LINT_ENABLED = 'settings.lintenabled'; | ||
export const FONT_SIZE = 'settings.fontsize'; | ||
export const FONT_FAMILY = 'settings.fontfamily'; | ||
export const CLEAR_CONSOLE = 'settings.clearconsole'; | ||
export const PRETTIER_CONFIG = 'settings.prettierconfig'; | ||
export const autoCompleteEnabled = 'settings.autocomplete'; | ||
export const vimMode = 'settings.vimmode'; | ||
export const livePreviewEnabled = 'settings.livepreview'; | ||
export const instantPreviewEnabled = 'settings.instantpreview'; | ||
export const prettifyOnSaveEnabled = 'settings.prettifyonsave'; | ||
export const prettierConfig = 'settings.prettierconfig'; | ||
export const lintEnabled = 'settings.lintenabled'; | ||
export const fontSize = 'settings.fontsize'; | ||
export const fontFamily = 'settings.fontfamily'; | ||
export const clearConsoleEnabled = 'settings.clearconsole'; |
Oops, something went wrong.