Add hotkey for "reply with selected text" to Issueable
This commit is contained in:
parent
4603bf500a
commit
ca5d0c8250
1 changed files with 27 additions and 1 deletions
|
@ -11,9 +11,35 @@ class @ShortcutsIssueable extends ShortcutsNavigation
|
||||||
$('.js-milestone').select2('open')
|
$('.js-milestone').select2('open')
|
||||||
return false
|
return false
|
||||||
)
|
)
|
||||||
|
Mousetrap.bind('r', =>
|
||||||
|
@replyWithSelectedText()
|
||||||
|
return false
|
||||||
|
)
|
||||||
|
|
||||||
if isMergeRequest
|
if isMergeRequest
|
||||||
@enabledHelp.push('.hidden-shortcut.merge_requests')
|
@enabledHelp.push('.hidden-shortcut.merge_requests')
|
||||||
else
|
else
|
||||||
@enabledHelp.push('.hidden-shortcut.issues')
|
@enabledHelp.push('.hidden-shortcut.issues')
|
||||||
|
|
||||||
|
replyWithSelectedText: ->
|
||||||
|
if window.getSelection
|
||||||
|
selected = window.getSelection().toString()
|
||||||
|
replyField = $('.js-main-target-form #note_note')
|
||||||
|
|
||||||
|
return if selected.trim() == ""
|
||||||
|
|
||||||
|
# Put a '>' character before each non-empty line in the selection
|
||||||
|
quote = _.map selected.split("\n"), (val) ->
|
||||||
|
"> #{val}\n" if val.trim() != ''
|
||||||
|
|
||||||
|
# If replyField already has some content, add a newline before our quote
|
||||||
|
separator = replyField.val().trim() != "" and "\n" or ''
|
||||||
|
|
||||||
|
replyField.val (_, current) ->
|
||||||
|
current + separator + quote.join('') + "\n"
|
||||||
|
|
||||||
|
# Trigger autosave for the added text
|
||||||
|
replyField.trigger('input')
|
||||||
|
|
||||||
|
# Focus the input field
|
||||||
|
replyField.focus()
|
||||||
|
|
Loading…
Reference in a new issue