https://github.com/emacs-eaf/eaf-image-viewer
Dynanmic image viewer
https://github.com/emacs-eaf/eaf-image-viewer
eaf emacs emacs-lisp image-viewer
Last synced: 11 months ago
JSON representation
Dynanmic image viewer
- Host: GitHub
- URL: https://github.com/emacs-eaf/eaf-image-viewer
- Owner: emacs-eaf
- License: gpl-3.0
- Created: 2021-08-11T02:30:29.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-06-30T09:18:26.000Z (about 3 years ago)
- Last Synced: 2025-06-15T01:39:55.087Z (about 1 year ago)
- Topics: eaf, emacs, emacs-lisp, image-viewer
- Language: Emacs Lisp
- Homepage:
- Size: 43.4 MB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### EAF Image Viewer
Image Viewer application for the [Emacs Application Framework](https://github.com/emacs-eaf/emacs-application-framework).
### Load application
[Install EAF](https://github.com/emacs-eaf/emacs-application-framework#install) first, then add below code in your emacs config:
```Elisp
(add-to-list 'load-path "~/.emacs.d/site-lisp/emacs-application-framework/")
(require 'eaf)
(require 'eaf-image-viewer)
```
### The keybinding of EAF Image Viewer.
| Key | Event |
| :---- | :------ |
| `n` | load_next_image |
| `p` | load_prev_image |
| `SPC` | load_prev_image |
| `r` | reload_image |
| `x` | insert_or_close_buffer |
| `,` | js_zoom_out |
| `.` | js_zoom_in |
| `/` | js_zoom_reset |
| `-` | js_zoom_out |
| `=` | js_zoom_in |
| `0` | js_zoom_reset |
| `9` | js_zoom_toggle |
| `u` | js_rotate_left |
| `i` | js_rotate_right |
| `y` | js_flip_horizontal |
| `o` | js_flip_vertical |
| `k` | js_move_down |
| `j` | js_move_up |
| `l` | js_move_left |
| `h` | js_move_right |
| `U` | eaf-image-viewer-rotate-file-left |
| `I` | eaf-image-viewer-rotate-file-right |
| `O` | eaf-image-viewer-rotate-file-horizontal |
| `d` | delete_current_image |
| `` | open_devtools |