mirror of
https://github.com/lihop/godot-xterm.git
synced 2025-05-05 04:34:23 +02:00
Add next/previous tab shortcuts
This commit is contained in:
parent
97e07093b2
commit
de7980c077
5 changed files with 41 additions and 0 deletions
|
@ -0,0 +1,10 @@
|
|||
[gd_resource type="ShortCut" load_steps=2 format=2]
|
||||
|
||||
[sub_resource type="InputEventKey" id=1]
|
||||
control = true
|
||||
command = true
|
||||
pressed = true
|
||||
scancode = 16777235
|
||||
|
||||
[resource]
|
||||
shortcut = SubResource( 1 )
|
|
@ -0,0 +1,10 @@
|
|||
[gd_resource type="ShortCut" load_steps=2 format=2]
|
||||
|
||||
[sub_resource type="InputEventKey" id=1]
|
||||
control = true
|
||||
command = true
|
||||
pressed = true
|
||||
scancode = 16777236
|
||||
|
||||
[resource]
|
||||
shortcut = SubResource( 1 )
|
|
@ -17,6 +17,9 @@ export (ShortCut) var kill_terminal_shortcut = preload("./default_kill_terminal_
|
|||
export (ShortCut) var copy_shortcut = preload("./default_copy_shortcut.tres")
|
||||
export (ShortCut) var paste_shortcut = preload("./default_paste_shortcut.tres")
|
||||
|
||||
export (ShortCut) var next_tab_shortcut = preload("./default_tab_right_shortcut.tres")
|
||||
export (ShortCut) var previous_tab_shortcut = preload("./default_tab_left_shortcut.tres")
|
||||
|
||||
### Scroll settings ###
|
||||
|
||||
# The maximum amount of lines the terminal keeps in its buffer.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue