Sublime Forum

Mouse back button switches tab?

#1

It’s been annoying me for a while but I’ve only just worked out what’s happening. When I use the back button on my mouse Sublime just switches tab instead of going to the last place I was… I’ve just done some debugging with commands:

Keyboard:

command: lsp_symbol_definition
command: add_jump_record {"selection": [[1788, 1788]]}
command: lsp_selection_set {"regions": [[1121, 1121]]}
command: gs_update_status
command: gs_draw_status_bar
command: gs_draw_status_bar {"repo_path": "/home/ian/src/webclient"}
command: reveal_in_side_bar
command: jump_back
command: gs_update_status
command: gs_draw_status_bar
command: gs_draw_status_bar {"repo_path": "/home/ian/src/webclient"}
command: reveal_in_side_bar
command: drag_select {"event":

Mouse:

command: lsp_symbol_definition
command: add_jump_record {"selection": [[1783, 1783]]}
command: lsp_selection_set {"regions": [[1121, 1121]]}
command: gs_update_status
command: gs_draw_status_bar
command: gs_draw_status_bar {"repo_path": "/home/ian/src/webclient"}
command: reveal_in_side_bar
command: prev_view {"event": {"button": 8, "x": 850.352050781, "y": 464.528808594}}
command: gs_update_status
command: gs_draw_status_bar
command: gs_draw_status_bar {"repo_path": "/home/ian/src/webclient"}
command: reveal_in_side_bar
command: drag_select {"event

I don’t think I’ve changed anything regarding navigation behaviour with my mouse? Is there a way I can switch this to use the jump_back by default? Do I need to override a setting somehow?

0 Likes

#2

Mouse behavior is configured using mousemaps: https://gist.github.com/Ultra-Instinct-05/e1ca9a4d48641cc6c0af46fec0010611

3 Likes