mirror of
https://github.com/lihop/godot-xterm.git
synced 2025-05-05 04:34:23 +02:00
More shortcuts
- Copy - Paste - Kill
This commit is contained in:
parent
6106b7f100
commit
703eb68f11
6 changed files with 80 additions and 3 deletions
|
@ -1,3 +1,11 @@
|
|||
[gd_resource type="ShortCut" format=2]
|
||||
[gd_resource type="ShortCut" load_steps=2 format=2]
|
||||
|
||||
[sub_resource type="InputEventKey" id=1]
|
||||
shift = true
|
||||
control = true
|
||||
command = true
|
||||
pressed = true
|
||||
scancode = 67
|
||||
|
||||
[resource]
|
||||
shortcut = SubResource( 1 )
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
[gd_resource type="ShortCut" load_steps=2 format=2]
|
||||
|
||||
[sub_resource type="InputEventKey" id=1]
|
||||
shift = true
|
||||
control = true
|
||||
command = true
|
||||
pressed = true
|
||||
scancode = 88
|
||||
|
||||
[resource]
|
||||
shortcut = SubResource( 1 )
|
|
@ -1,3 +1,11 @@
|
|||
[gd_resource type="ShortCut" format=2]
|
||||
[gd_resource type="ShortCut" load_steps=2 format=2]
|
||||
|
||||
[sub_resource type="InputEventKey" id=1]
|
||||
shift = true
|
||||
control = true
|
||||
command = true
|
||||
pressed = true
|
||||
scancode = 86
|
||||
|
||||
[resource]
|
||||
shortcut = SubResource( 1 )
|
||||
|
|
|
@ -13,6 +13,7 @@ enum CWDType {
|
|||
### Shortcuts ###
|
||||
|
||||
export (ShortCut) var new_terminal_shortcut = preload("./default_new_terminal_shortcut.tres")
|
||||
export (ShortCut) var kill_terminal_shortcut = preload("./default_kill_terminal_shortcut.tres")
|
||||
export (ShortCut) var copy_shortcut = preload("./default_copy_shortcut.tres")
|
||||
export (ShortCut) var paste_shortcut = preload("./default_paste_shortcut.tres")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue