diff options
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -15,6 +15,7 @@ Initial Announcement: https://dylan.gr/1772192922 * Manually implemented interactive line editor * Efficient low-bandwidth partial rendering * UTF8 support (minus grapheme clusters and other unruly things) +* Inline image viewing (sixel, kitty) * Multiple view modes (name, size, permissions, mtime, ...) * Multiple sort modes (name, extension, size, mtime, reverse, ...) * Ranger-style bulk rename @@ -45,6 +46,7 @@ Initial Announcement: https://dylan.gr/1772192922 * [View Modes](#view-modes) * [Sort Modes](#sort-modes) * [Prompt](#prompt) + * [Images](#images) * [Searching](#searching) * [Marking](#marking) * [Commands](#commands) @@ -185,6 +187,8 @@ environment, default values are derived from the `config.h.in` file. - DFM_TRASH (Program to use when trashing files) - DFM_TRASH_DIR (Path to trash directory) + +- DFM_IMG_MODE (Image mode to use: 'chafa' (default), 'kitty') ``` ### CD On Exit @@ -299,6 +303,17 @@ comes time to commit the input it is simply joined together. Make not of this detail as it is necessary to know it when creating your own bound commands. +### Images + +Images can be viewed inside of `dfm` by pressing `i` by default. This will +display the image and wait for a keypress before returning to the directory +listing. Two backends are supported: `sixel` (via `chafa`) and `kitty`. + +The mode can be set in `config.h.in` or at runtime via an environment variable. + + + + ### Searching There are two search modes: `startswith` (default `/`) and `substring` |