help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: bookmarks+: how to bind a bookmark to a key


From: Drew Adams
Subject: RE: bookmarks+: how to bind a bookmark to a key
Date: Sun, 29 Oct 2017 09:33:51 -0700 (PDT)

> I write my lectures with Emacs to be compiled with XeLaTeX, and I like
> using bookmarks+.  I regularly give the bookmark name 'vorl-akt' to the
> current position in the current lecture.  How can I bind that bookmark
> to a key?  I should like to start Emacs and press F11 to find the file
> and go to the position bookmarked.
> 
> Can someone please help me how to do that, or point me to a text that
> explains it?  I am sure a close reading of the manual would tell me a
> way how to do it, but you all know that reading complex manuals is a
> time consuming task, and I assume others already know how to do it and
> can explain it in two minutes.

(defun foo ()
  "..."
  (interactive)
  (bookmark-jump-other-window "vorl-akt"))

Or just `bookmark-jump', if you want it visited in
the same window.

(global-set-key (kbd "<f11>") 'foo)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]