Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
0e8b7151
Commit
0e8b7151
authored
Aug 28, 2006
by
Chong Yidong
Browse files
* image-mode.el (image-mode): Display image as text on a terminal.
parent
e2ac11eb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
10 deletions
+18
-10
lisp/ChangeLog
lisp/ChangeLog
+4
-0
lisp/image-mode.el
lisp/image-mode.el
+14
-10
No files found.
lisp/ChangeLog
View file @
0e8b7151
2006-08-28 Chong Yidong <cyd@stupidchicken.com>
* image-mode.el (image-mode): Display image as text on a terminal.
2006-08-28 Stefan Monnier <monnier@iro.umontreal.ca>
* progmodes/python.el (python-send-command): Simplify.
...
...
lisp/image-mode.el
View file @
0e8b7151
...
...
@@ -60,16 +60,20 @@ to toggle between display as an image and display as text."
(
setq
major-mode
'image-mode
)
(
use-local-map
image-mode-map
)
(
add-hook
'change-major-mode-hook
'image-toggle-display-text
nil
t
)
(
if
(
not
(
get-text-property
(
point-min
)
'display
))
(
image-toggle-display
)
;; Set next vars when image is already displayed but local
;; variables were cleared by kill-all-local-variables
(
setq
cursor-type
nil
truncate-lines
t
))
(
run-mode-hooks
'image-mode-hook
)
(
message
"%s"
(
concat
(
substitute-command-keys
"Type \\[image-toggle-display] to view the image as "
)
(
if
(
get-text-property
(
point-min
)
'display
)
"text"
"an image"
)
"."
)))
(
let
((
image-display-supported-p
(
memq
window-system
'
(
x
w32
mac
))))
(
if
(
and
image-display-supported-p
(
not
(
get-text-property
(
point-min
)
'display
)))
(
image-toggle-display
)
;; Set next vars when image is already displayed but local
;; variables were cleared by kill-all-local-variables
(
setq
cursor-type
nil
truncate-lines
t
))
(
run-mode-hooks
'image-mode-hook
)
(
if
image-display-supported-p
(
message
"%s"
(
concat
(
substitute-command-keys
"Type \\[image-toggle-display] to view the image as "
)
(
if
(
get-text-property
(
point-min
)
'display
)
"text"
"an image"
)
"."
)))))
;;;###autoload
(
define-minor-mode
image-minor-mode
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment