Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/karimaziev/km-buffer
Misc buffer and file utils.
https://github.com/karimaziev/km-buffer
Last synced: 4 days ago
JSON representation
Misc buffer and file utils.
- Host: GitHub
- URL: https://github.com/karimaziev/km-buffer
- Owner: KarimAziev
- License: gpl-3.0
- Created: 2023-03-26T13:09:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-09T13:02:05.000Z (5 days ago)
- Last Synced: 2024-11-09T13:24:11.278Z (5 days ago)
- Language: Emacs Lisp
- Size: 188 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: LICENSE
Awesome Lists containing this project
README
* km-buffer
Misc buffers commands.
** Installation
Emacs >= 28.1 is required.
*** Manual
Ensure that you have installed required dependencies:
- ~project~ >= 0.9.4
- vc (optional)Download the source code and put it wherever you like, e.g. into =~/.emacs.d/km-buffer/=
#+begin_src shell :eval no
git clone https://github.com/KarimAziev/km-buffer.git ~/.emacs.d/km-buffer/
#+end_srcAdd the downloaded directory to the load path:
#+begin_src elisp :eval no
(add-to-list 'load-path "~/.emacs.d/km-buffer/")
(require 'km-buffer)
#+end_src#+begin_src elisp :eval no
(use-package km-buffer
:straight (km-buffer
:repo "KarimAziev/km-buffer"
:type git
:host github)
:bind ("C-c M-d" . km-buffer-actions-menu))
#+end_src