Skip to content

Commit

Permalink
Add more keys in qt_text_dict
Browse files Browse the repository at this point in the history
  • Loading branch information
manateelazycat committed Apr 28, 2022
1 parent 27fa306 commit b959f8e
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions core/buffer.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,18 @@
qt_text_dict = {
"SPC": " ",
"<return>": "RET",
"<backspace>": "",
"<backtab>": "",
"TAB": ""
"<home>": "",
"<end>": "",
"<left>": "",
"<right>": "",
"<up>": "",
"<down>": "",
"<prior>": "",
"<next>": "",
"<delete>": "",
"<backspace>": "",
"<escape>": ""
}

class Buffer(QGraphicsScene):
Expand Down

0 comments on commit b959f8e

Please sign in to comment.