Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions apps/opera/opera_win_linux.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ def tab_close_wrapper():

@ctx.action_class("app")
class AppActions:
def preferences():
actions.key("alt-p")

def tab_next():
actions.key("ctrl-pagedown")

Expand Down
1 change: 1 addition & 0 deletions core/windows_and_tabs/window_management.talon
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ window next: app.window_next()
window last: app.window_previous()
window close: app.window_close()
window hide: app.window_hide()
app (preferences | prefs | settings): app.preferences()
focus <user.running_applications>: user.switcher_focus(running_applications)
# following only works on windows. Can't figure out how to make it work for mac. No idea what the equivalent for linux would be.
focus$: user.switcher_menu()
Expand Down
2 changes: 0 additions & 2 deletions core/windows_and_tabs/windows_and_tabs_linux.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

@ctx.action_class("app")
class AppActions:
# app.preferences()

def tab_close():
actions.key("ctrl-w")

Expand Down
2 changes: 0 additions & 2 deletions core/windows_and_tabs/windows_and_tabs_win.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

@ctx.action_class("app")
class AppActions:
# app.preferences()

def tab_close():
actions.key("ctrl-w")

Expand Down