aboutsummaryrefslogtreecommitdiff
path: root/src/SettingsHandler.qml
diff options
context:
space:
mode:
authorAdrian Kummerlaender2015-09-05 15:53:36 +0200
committerAdrian Kummerlaender2015-09-05 15:53:36 +0200
commit428dc1d77bd843c0e7313cb28dc69f26154fdea6 (patch)
tree3b34aa8981adab2fa0616ee28f39edf20da7203d /src/SettingsHandler.qml
parentddc5f970f5b8f863b31739efc6e56edd37d32bd7 (diff)
downloadMetaTerm-428dc1d77bd843c0e7313cb28dc69f26154fdea6.tar
MetaTerm-428dc1d77bd843c0e7313cb28dc69f26154fdea6.tar.gz
MetaTerm-428dc1d77bd843c0e7313cb28dc69f26154fdea6.tar.bz2
MetaTerm-428dc1d77bd843c0e7313cb28dc69f26154fdea6.tar.lz
MetaTerm-428dc1d77bd843c0e7313cb28dc69f26154fdea6.tar.xz
MetaTerm-428dc1d77bd843c0e7313cb28dc69f26154fdea6.tar.zst
MetaTerm-428dc1d77bd843c0e7313cb28dc69f26154fdea6.zip
Add `kill` action to normal mode
Default keyboard shortcut for reset action was changed to `r` while the new kill action was bound to `d`.
Diffstat (limited to 'src/SettingsHandler.qml')
-rw-r--r--src/SettingsHandler.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/SettingsHandler.qml b/src/SettingsHandler.qml
index d8bc180..1b54251 100644
--- a/src/SettingsHandler.qml
+++ b/src/SettingsHandler.qml
@@ -33,7 +33,8 @@ QtObject {
property string nextItem : "j"
property string prevItem : "k"
property string firstItem : "g"
- property string resetItem : "d"
+ property string resetItem : "r"
+ property string killItem : "d"
property string lastItem : "Shift+G"
property string heightenItem : "Shift+J"
property string shortenItem : "Shift+K"