Skip to content

Commit

Permalink
add shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
outscale-mal committed Sep 25, 2023
1 parent 74574e6 commit 70fe719
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions osc_tui/mainForm.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,16 @@ def switch_to_security_grid(form, _):
MODE = "Security"
form.reload()

def switch_to_nets(self, _):
global MODE
MODE = "Nets"
self.reload()

def switch_to_keypairs(self, _):
global MODE
MODE = "Keypairs"
self.reload()

def set_up_handlers(self):
super().set_up_handlers()
self.add_handlers({"q": self.quit_key})
Expand All @@ -416,6 +426,8 @@ def set_up_handlers(self):
self.add_handlers({"I": self.switch_to_instances})
self.add_handlers({"M": self.switch_to_images})
self.add_handlers({"S": self.switch_to_security_grid})
self.add_handlers({"T": self.switch_to_nets})
self.add_handlers({"K": self.switch_to_keypairs})
self.add_handlers({
"r" : self.key_reload,
curses.KEY_F5 : self.key_reload
Expand Down

0 comments on commit 70fe719

Please sign in to comment.