this post was submitted on 12 Nov 2023
1 points (100.0% liked)

Emacs

310 readers
1 users here now

A community for the timeless and infinitely powerful editor. Want to see what Emacs is capable of?!

Get Emacs

Rules

  1. Posts should be emacs related
  2. Be kind please
  3. Yes, we already know: Google results for "emacs" and "vi" link to each other. We good.

Emacs Resources

Emacs Tutorials

Useful Emacs configuration files and distributions

Quick pain-saver tip

founded 1 year ago
MODERATORS
 

Hey, I'm looking for a package to manage bookmarks for inside Emacs.

I've tried the built-in functionality but the configuration contains a lot of junk which makes it hard to manage and share between machines.

top 9 comments
sorted by: hot top controversial new old
[–] mok000@alien.top 1 points 10 months ago

The configuration of bookmarks is just a file. You can edit it or even delete it.

[–] 7890yuiop@alien.top 1 points 10 months ago (1 children)

the configuration contains a lot of junk

What do you mean? What is the specific problem?

[–] Thaodan@alien.top 1 points 10 months ago (1 children)

The bookmark file contains information when it was last modified.

It did look similar like the Gnus newsrc which also mixes configuration and runtime information.

[–] 7890yuiop@alien.top 1 points 10 months ago

Ok. Mine doesn't, but I'll believe yours does. Why is that making it hard to for you to share it between machines?

[–] florommel@alien.top 1 points 10 months ago
[–] FrozenOnPluto@alien.top 1 points 10 months ago

Bookmarks+?

[–] glgmacs@alien.top 1 points 10 months ago

I have my bookmark file as a bookmark itself: C-x r b -> mybookmarks
then it can look as simple as this:

(("init.el"
  (filename . "~/.emacs.d/init.el"))
 ("early-init.el"
  (filename . "~/.emacs.d/early-init.el"))
 ("bookmarks"
  (filename . "~/.emacs.d/bookmarks")))

it is shared between different machines without problem.

[–] doolio_@alien.top 1 points 10 months ago (1 children)

I presume you are speaking of browser bookmarks. I simply use an org file where each bookmark is hyperlinked. I will add this file to Emacs bookmarks as suggested already in this thread and then I'm thinking I could use embark-act to open in my browser from the minibuffer.

[–] Thaodan@alien.top 1 points 10 months ago

I'm talking about the Emacs internal bookmarks not browser bookmarks.