Merge pull request #6367 from atom/bo-follow-symlinks

Default `core.followSymlinks` to true
This commit is contained in:
Ben Ogle
2015-04-14 10:22:02 -07:00
2 changed files with 2 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ describe "the `atom` global", ->
describe "loading default config", ->
it 'loads the default core config', ->
expect(atom.config.get('core.excludeVcsIgnoredPaths')).toBe true
expect(atom.config.get('core.followSymlinks')).toBe false
expect(atom.config.get('core.followSymlinks')).toBe true
expect(atom.config.get('editor.showInvisibles')).toBe false
describe "window onerror handler", ->

View File

@@ -18,7 +18,7 @@ module.exports =
title: 'Exclude VCS Ignored Paths'
followSymlinks:
type: 'boolean'
default: false
default: true
title: 'Follow symlinks'
description: 'Used when searching and when opening files with the fuzzy finder.'
disabledPackages: