如何在atom编辑器中重新打开侧边栏

时间:2017-06-12 05:28:36

标签: react-native atom-editor

我搞错了什么,我的侧栏在原子中消失了。它现在是空白的,没有显示文件等。我检查了这个帖子Atom menu is missing. How do I re-enable但是没有为我工作。

enter image description here

config.json

  "*":
    "atom-beautify":
      general:
        _analyticsUserId: "d356f20e-3597-4bb0-be87-5465af6abf2a"
    core:
      customFileTypes:
        "source.ini": [
          ".buckconfig"
          ".hgrc"
          ".flowconfig"
        ]
        "source.json": [
          ".arcconfig"
          "BUCK.autodeps"
        ]
        "source.python": [
          "BUCK"
        ]
      disabledPackages: [
        "tree-view"
      ]
      telemetryConsent: "limited"
    editor:
      fontSize: 21
    "exception-reporting":
      userId: "7c5d23fe-0d8c-4b29-9191-f439c2dca0f6"
    "ide-flow":
      flowPath: "/cygdrive/c/Users/ajaysaini/AppData/Roaming/npm/flow"
    nuclide:
      "nuclide-code-format":
        formatOnSave: true
      "nuclide-flow":
        canUseFlowBin: true
        warnOnNotInstalled: false
    "nuclide-format-js": {}
    "prettier-atom":
      formatOnSaveOptions:
        enabled: true
    welcome:
      showOnStartup: false

1 个答案:

答案 0 :(得分:2)

您已停用tree-view个套件。转到设置>包和向下滚动到核心包,禁用的包将位于类别的底部。启用它并重新启动Atom。

disabledPackages: [
  "tree-view"
]