Remove unused core.hideGitIgnoredFiles config setting

This commit is contained in:
Kevin Sawicki
2013-12-10 11:07:05 -08:00
parent 36b5518add
commit 092ed37ed9
2 changed files with 1 additions and 4 deletions

View File

@@ -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

View File

@@ -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")