Skip to content

Commit

Permalink
Fix paste hotkey
Browse files Browse the repository at this point in the history
It was overlapping with copy's use of ctrl-shift-c.
  • Loading branch information
bts committed Nov 18, 2018
1 parent 09942c4 commit 2588524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Termonad/App.hs
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ setupTermonad tmConfig app win builder = do
maybeTerm <- getFocusedTermFromState mvarTMState
maybe (pure ()) terminalPasteClipboard maybeTerm
actionMapAddAction app pasteAction
applicationSetAccelsForAction app "app.paste" ["<Shift><Ctrl>C"]
applicationSetAccelsForAction app "app.paste" ["<Shift><Ctrl>V"]

aboutAction <- simpleActionNew "about" Nothing
void $ onSimpleActionActivate aboutAction (const $ showAboutDialog app)
Expand Down

0 comments on commit 2588524

Please sign in to comment.