Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit f20bf25

Browse files
committed
Don't attach when being used as a Git editor
Don't show the tree view by default when the project path ends in .git and a file path is being opened. This will be the case when editing a commit message or interactive rebase.
1 parent 02e17dd commit f20bf25

File tree

4 files changed

+29
-1
lines changed

4 files changed

+29
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

lib/tree.coffee

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1+
path = require 'path'
2+
13
module.exports =
24
treeView: null
35

46
activate: (@state) ->
5-
@state.attached ?= true unless rootView.getActivePaneItem()
7+
@state.attached ?= true if @shouldAttach()
68

79
@createView() if @state.attached
810
rootView.command 'tree-view:toggle', => @createView().toggle()
@@ -23,3 +25,14 @@ module.exports =
2325
TreeView = require './tree-view'
2426
@treeView = new TreeView(@state)
2527
@treeView
28+
29+
shouldAttach: ->
30+
if rootView.getActivePaneItem()
31+
false
32+
else if path.basename(project.getPath()) is '.git'
33+
# Only attach when the project path matches the path to open signifying
34+
# the .git folder was opened explicitly and not by using Atom as the Git
35+
# editor.
36+
project.getPath() is atom.getLoadSettings().pathToOpen
37+
else
38+
true

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,8 @@
1515
},
1616
"publishConfig": {
1717
"registry": "https://atom.cloudant.com/registry/_design/app/_rewrite"
18+
},
19+
"dependencies": {
20+
"temp": "~0.6.0"
1821
}
1922
}

spec/tree-view-spec.coffee

+11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{_, $, $$, fs, RootView} = require 'atom'
22
TreeView = require '../lib/tree-view'
33
path = require 'path'
4+
temp = require 'temp'
45

56
describe "TreeView", ->
67
[treeView, sampleJs, sampleTxt] = []
@@ -81,6 +82,16 @@ describe "TreeView", ->
8182
expect(treeView.hasParent()).toBeTruthy()
8283
expect(treeView.root).toExist()
8384

85+
describe "when the project is a .git folder", ->
86+
it "does not create the tree view", ->
87+
dotGit = path.join(temp.mkdirSync('repo'), '.git')
88+
fs.makeTree(dotGit)
89+
project.setPath(dotGit)
90+
atom.deactivatePackage("tree-view")
91+
atom.packageStates = {}
92+
{treeView} = atom.activatePackage("tree-view").mainModule
93+
expect(treeView).toBeFalsy()
94+
8495
describe "serialization", ->
8596
it "restores expanded directories and selected file when deserialized", ->
8697
treeView.root.find('.directory:contains(dir1)').view().click()

0 commit comments

Comments
 (0)