Sublime Forum

Bookmark

#1

Hi there,

On OS X using Sublime Text 2 build 2195 it seems that the ‘next_bookmark’ command doesn’t get activated till the
next key-stroke. So when I want to jump to the next bookmark I have to hit f2 followed by escape (or any other char)
before it jumps to the correct line. Bug or feature? If I select the menu item using the mouse it jump directly to the
next bookmark.

/Mads

0 Likes

#2

It sounds as though there are other plugins interfering with the key binding. You may have some luck investigating by entering sublime.log_commands(True) in the Console

0 Likes

#3

SublimeREPL is using “f2”, “b”], “f2”, “l”] etc.

It never rebinds F2 itself but for some reason f2 shortcuts is misbehaving when “f2”, “x”] is used…
FWIW I will remove [f2, *] keybindings in the next release, but this has to wait after I get from my vacation.

If you want to disable it for now, comment out appropriate lines in SublimeREPL\Default ([platform]).sublime-keymap

0 Likes

#4

It was SublimeREPL interfering. Commented out the key-mappings and it worked like a charm :smile:

0 Likes