Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/karimaziev/elbookmark
Bookmark utils.
https://github.com/karimaziev/elbookmark
Last synced: 4 days ago
JSON representation
Bookmark utils.
- Host: GitHub
- URL: https://github.com/karimaziev/elbookmark
- Owner: KarimAziev
- License: gpl-3.0
- Created: 2023-03-03T07:59:21.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-09T12:23:04.000Z (5 days ago)
- Last Synced: 2024-11-09T13:24:30.677Z (5 days ago)
- Language: Emacs Lisp
- Size: 23.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
* elbookmark
Bookmark Utils.
** Installation
Emacs >= 28.1 is required.
*** Manual
Ensure that you have installed required dependencies:
- ~emacs~ >= 28.1Download the source code and put it wherever you like, e.g. into =~/.emacs.d/elbookmark/=
#+begin_src shell :eval no
git clone https://github.com/KarimAziev/elbookmark.git ~/.emacs.d/elbookmark/
#+end_srcAdd the downloaded directory to the load path:
#+begin_src elisp :eval no
(add-to-list 'load-path "~/.emacs.d/elbookmark/")
(require 'elbookmark)
#+end_src#+begin_src elisp :eval no
(use-package elbookmark
:straight (elbookmark
:repo "KarimAziev/elbookmark"
:type git
:host github)
:bind ((:map elbookmark-minibuffer-keymap
("C-j" . elbookmark-preview)
("C-." . elbookmark-minibuffer-switch-to-transient)
("C-c C-o" . elbookmark-jump-in-other-window)))
:commands (elbookmark-transient-dwim
elbookmark-jump
elbookmark-cleanup-nonexisting))
#+end_src** Keymaps
** Commands
*** ~elbookmark-jump~ (&optional bookmark display-func)
Same as =bookmark-jump= but with additional commands in minibuffer:
| Key | Command | Description |
|---------+-------------------------------------------+---------------------------------------------|
| C-c C-o | elbookmark-jump-in-other-window | jump in other window and exit minibuffer. |
| C-j | elbookmark-preview | preview bookmark without exiting minibuffer |
| C-. | elbookmark-minibuffer-switch-to-transient | exit and show transient commands |To change this bindings edit the variable ~elbookmark-minibuffer-keymap~.
** Transient menus
*** ~elbookmark-transient-dwim~
Invoke either =elbookmark-transient= or =elbookmark-transient-bmenu-mode=.
*** ~elbookmark-transient~
Menu for =bookmark-bmenu=.
*** ~elbookmark-transient-bmenu-mode~
Menu for =bookmark-bmenu-mode=.