From 092ed37ed992bfba5d03e919e444f9181e8e6bbf Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Tue, 10 Dec 2013 11:07:05 -0800 Subject: [PATCH] Remove unused core.hideGitIgnoredFiles config setting --- docs/customizing-atom.md | 3 +-- src/workspace-view.coffee | 2 -- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/docs/customizing-atom.md b/docs/customizing-atom.md index 1ac25fa77..c9a8e161e 100644 --- a/docs/customizing-atom.md +++ b/docs/customizing-atom.md @@ -66,7 +66,7 @@ directory, which contains CoffeeScript-style JSON: ```coffeescript core: - hideGitIgnoredFiles: true + excludeVcsIgnoredPaths: true editor: fontSize: 18 ``` @@ -79,7 +79,6 @@ namespaces: `core` and `editor`. - `core` - `disabledPackages`: An array of package names to disable - `excludeVcsIgnoredPaths`: Don't search within files specified by _.gitignore_ - - `hideGitIgnoredFiles`: Whether files in the _.gitignore_ should be hidden - `ignoredNames`: File names to ignore across all of Atom - `projectHome`: The directory where projects are assumed to be located - `themes`: An array of theme names to load, in cascading order diff --git a/src/workspace-view.coffee b/src/workspace-view.coffee index 22f260b22..c43d54e3f 100644 --- a/src/workspace-view.coffee +++ b/src/workspace-view.coffee @@ -118,8 +118,6 @@ class WorkspaceView extends View @command 'window:save-all', => @saveAll() @command 'window:toggle-invisibles', => atom.config.toggle("editor.showInvisibles") - @command 'window:toggle-ignored-files', => - atom.config.toggle("core.hideGitIgnoredFiles") @command 'window:toggle-auto-indent', => atom.config.toggle("editor.autoIndent")