Sublime Forum

Forward Sync to Skim Using LaTeXTools in macOS?

#1

I am new to Sublime Text, but so far I love it.

I have seen on this forum that I can shift-command-click in Skim to get to the corresponding point in the LaTeX source in Sublime Text. This works perfectly for me. In a 2011 post, the LaTeXTools author states that cmd-shift-j in the source will do the forward sync to the corresponding point in the PDF, but that does not work for me.

The relevant point in the keymap file seems to be

{ 	"keys": ["super+l","j"], 
	"context":  [
		{"key": "selector", "operator": "equal", "operand": "text.tex.latex"}],
	"command": "jump_to_pdf", "args": {"from_keybinding": true}},

This seems to indicate that cmd-l will do what I want, but that does not work either. What am I missing?

0 Likes

#2

This is a multi-step key binding: type cmd-l then type j.

1 Like

#3

Aha! So that’s what that means. Thank you!

0 Likes