Skip to content

Commit

Permalink
Respond to PR feedback
Browse files Browse the repository at this point in the history
- Implemented focus_last as a python action instead of using talon script
- I was unable to test the Linux implementation and I would appreciate some help on that
  • Loading branch information
jaresty committed Dec 28, 2023
1 parent 46a5e6d commit b2d2f3c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions core/windows_and_tabs/windows_and_tabs_linux.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,6 @@ def window_hide_others():

def window_open():
actions.key("ctrl-n")

def focus_last():
actions.key("alt-tab")
3 changes: 3 additions & 0 deletions core/windows_and_tabs/windows_and_tabs_mac.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,6 @@ def window_previous():

def window_next():
actions.key("cmd-`")

def focus_last():
actions.key("cmd-tab")
3 changes: 3 additions & 0 deletions core/windows_and_tabs/windows_and_tabs_win.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,6 @@ def window_hide_others():

def window_open():
actions.key("ctrl-n")

def focus_last():
actions.key("alt-tab")

0 comments on commit b2d2f3c

Please sign in to comment.