mirror of
https://github.com/atom/atom.git
synced 2026-02-11 23:25:03 -05:00
Merge branch 'master' into event-palette
Conflicts: src/app/editor.coffee
This commit is contained in:
@@ -62,9 +62,8 @@ class CommandPanel extends View
|
||||
@rootView.on 'command-panel:repeat-relative-address-in-reverse', => @repeatRelativeAddressInReverse()
|
||||
@rootView.on 'command-panel:set-selection-as-regex-address', => @setSelectionAsLastRelativeAddress()
|
||||
|
||||
@miniEditor.off 'move-up move-down'
|
||||
@miniEditor.on 'move-up', => @navigateBackwardInHistory()
|
||||
@miniEditor.on 'move-down', => @navigateForwardInHistory()
|
||||
@on 'core:move-up', => @navigateBackwardInHistory()
|
||||
@on 'core:move-down', => @navigateForwardInHistory()
|
||||
|
||||
@previewList.hide()
|
||||
|
||||
|
||||
@@ -10,8 +10,8 @@ class PreviewList extends View
|
||||
operations: null
|
||||
|
||||
initialize: (@rootView) ->
|
||||
@on 'move-down', => @selectNextOperation()
|
||||
@on 'move-up', => @selectPreviousOperation()
|
||||
@on 'core:move-down', => @selectNextOperation()
|
||||
@on 'core:move-up', => @selectPreviousOperation()
|
||||
@on 'command-panel:execute', => @executeSelectedOperation()
|
||||
|
||||
@on 'mousedown', 'li', (e) =>
|
||||
|
||||
Reference in New Issue
Block a user