aboutsummaryrefslogtreecommitdiff
path: root/inline images.wiki
blob: 7be79980a0092103891b2b2b403a1e14dbcf4158 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
== Emacs ==
=== Generally ===
iImage mode
=== Geiser ===
- geiser-image.el
- `#<Image: filepath>`

== Terminology ==
`tycat <filename>`

== Terminal general ==
=== w3m ===
{{{scheme
(define (w3m-display-image filename)
  (let ((pipe ((@ (ice-9 popen) open-output-pipe) "/usr/lib/w3m/w3mimgdisplay")))
    (format pipe "0;1;0;0;64;64;;;;;~a~%;4;~%3;~%"
            filename)
    ((@ (ice-9 popen) close-pipe) pipe)))
}}}