https://github.com/b-coimbra/anisearch.el
An emacs plugin to fetch images from safebooru
https://github.com/b-coimbra/anisearch.el
Last synced: about 2 months ago
JSON representation
An emacs plugin to fetch images from safebooru
- Host: GitHub
- URL: https://github.com/b-coimbra/anisearch.el
- Owner: b-coimbra
- Created: 2021-10-31T18:24:11.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-31T19:00:03.000Z (over 3 years ago)
- Last Synced: 2025-01-28T17:22:08.877Z (4 months ago)
- Language: Emacs Lisp
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
#+TITLE: anisearch.el
Shows a random image from safebooru in a buffer within Emacs.
* Installation
Using quelpa:
#+begin_src emacs-lisp
(use-package anisearch
:quelpa (anisearch :fetcher github :repo "b-coimbra/anisearch.el")
:custom
(setq anisearch-limit 10) ; Number of images to fetch. Default 20
(setq anisearch-tags "nanachi") ; Tags to search with when calling "anisearch"
(setq anisearch-save-locally) ; Save downloaded files locally. Default nil
)
#+end_src* Usage
- =M-x anisearch= to search with the default tag (=anisearch-tags=).
- =M-x anisearch-tag= to search with a specific tag.
- =M-x anisearch-clear= to clear the list of loaded images.
- =M-x anisearch-save-all= to download all images into the =anisearch-downloads= folder.* Dependencies
- [[https://github.com/tkf/emacs-request][request.el]]
- wget