mirror of
https://github.com/atom/atom.git
synced 2026-01-14 17:38:03 -05:00
core:select-up/down should work in mini editor as well as main editor.
Fixes #6445.
This commit is contained in:
@@ -244,6 +244,8 @@ atom.commands.add 'atom-text-editor', stopEventPropagation(
|
||||
'core:move-right': -> @moveRight()
|
||||
'core:select-left': -> @selectLeft()
|
||||
'core:select-right': -> @selectRight()
|
||||
'core:select-up': -> @selectUp()
|
||||
'core:select-down': -> @selectDown()
|
||||
'core:select-all': -> @selectAll()
|
||||
'editor:move-to-previous-word': -> @moveToPreviousWord()
|
||||
'editor:select-word': -> @selectWordsContainingCursors()
|
||||
@@ -297,8 +299,6 @@ atom.commands.add 'atom-text-editor:not([mini])', stopEventPropagation(
|
||||
'core:move-to-bottom': -> @moveToBottom()
|
||||
'core:page-up': -> @pageUp()
|
||||
'core:page-down': -> @pageDown()
|
||||
'core:select-up': -> @selectUp()
|
||||
'core:select-down': -> @selectDown()
|
||||
'core:select-to-top': -> @selectToTop()
|
||||
'core:select-to-bottom': -> @selectToBottom()
|
||||
'core:select-page-up': -> @selectPageUp()
|
||||
|
||||
Reference in New Issue
Block a user