Skip to content

Commit

Permalink
delete unnecessary quotes pygments/pygments#1742
Browse files Browse the repository at this point in the history
  • Loading branch information
Akuli committed Jun 5, 2021
1 parent 44d2462 commit f171e27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions porcupine/default_keybindings.tcl
Expand Up @@ -159,11 +159,11 @@ bind Text <<Paste>> {+
set scroll_amount 2
bind Text <Alt-Up> {
%W yview scroll -$scroll_amount units
%W mark set insert "@0,[expr [winfo height %W] / 2]"
%W mark set insert @0,[expr [winfo height %W] / 2]
}
bind Text <Alt-Down> {
%W yview scroll $scroll_amount units
%W mark set insert "@0,[expr [winfo height %W] / 2]"
%W mark set insert @0,[expr [winfo height %W] / 2]
}

# Do not do weird stuff when selecting text with shift+click. See #429
Expand Down

0 comments on commit f171e27

Please sign in to comment.