I have Cmd+F2 associated to the “toggle_bookmark”. It has always worked just fine but recently this command somehow became associated with “next_bookmark”, as can be seen in the screenshot below:
The menu shows the correct shortcut, but in the console it shows “next_bookmark”.
And this is my config:
[
{ "keys": ["super+alt+shift+c"], "command": "select_word" },
{ "keys": ["f12"], "command": "show_panel", "args": {"panel": "console", "toggle": true} },
{ "keys": ["super+space"], "command": "auto_complete" },
{ "keys": ["super+;"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["f5"], "command": "build" },
{ "keys": ["super+shift+c"], "command": "run_macro_file", "args": {"file": "Packages/User/copyword.sublime-macro"} },
{ "keys": ["super+shift+x"], "command": "run_macro_file", "args": {"file": "Packages/User/cutword.sublime-macro"} },
{ "keys": ["super+shift+v"], "command": "run_macro_file", "args": {"file": "Packages/User/deletewordandpaste.sublime-macro"} },
{ "keys": ["super+shift+w"], "command": "close_others" },
{ "keys": ["f1"], "command": "goto_documentation" },
{ "keys": ["super+alt+p"], "command": "prompt_select_workspace" },
{ "keys": ["f9"], "command": "goto_definition" },
{ "keys": ["f3"], "command": "find_next" },
{ "keys": ["shift+f3"], "command": "find_prev" },
{ "keys": ["super+f2"], "command": "toggle_bookmark" },
{ "keys": ["f2"], "command": "next_bookmark" },
{ "keys": ["shift+f2"], "command": "prev_bookmark" },
]
So everything seems to be normal except it doesn’t execute the right command. Any idea what could be causing this?
