Skip to content Skip to sidebar Skip to footer

Forward/reverse Link Possible With Emacs/html Mode?

With emacs, it's pretty useful to edit HTML file. And I use 'Safari' (I'm a Mac user), to check if the HTML file is rendered correctly. I always miss the AucTeX's forward/reverse l

Solution 1:

Use

M-x browse-url-of-file

It's generally not bound, so I use...

(global-set-key (kbd "M-P") 'browse-url-of-file)

To globally bind Alt+Shift+p .. as "preview in browser"

Post a Comment for "Forward/reverse Link Possible With Emacs/html Mode?"