Skip to content

Commit b4c9415

Browse files
committed
add: Plugin visible by default upon Atom startup
1 parent 3f580e3 commit b4c9415

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

lib/fast-forward.coffee

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ module.exports = FastForward =
88

99
activate: (state) ->
1010
@fastForwardView = new FastForwardView(state.fastForwardViewState)
11-
@modalPanel = atom.workspace.addRightPanel(item: @fastForwardView.getElement(), visible: false)
11+
# Create a panel for the plugin, visible by default
12+
@modalPanel = atom.workspace.addRightPanel(item: @fastForwardView.getElement(), visible: true)
1213

1314
# Events subscribed to in atom's system can be easily cleaned up with a CompositeDisposable
1415
@subscriptions = new CompositeDisposable

package.json

-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
"description": "A short description of your package",
66
"keywords": [
77
],
8-
"activationCommands": {
9-
"atom-workspace": "fast-forward:toggle"
10-
},
118
"repository": "https://github.com/atom/fast-forward",
129
"license": "MIT",
1310
"engines": {

0 commit comments

Comments
 (0)