-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
sage-shell-view.el
676 lines (592 loc) · 25.1 KB
/
sage-shell-view.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
;;; sage-shell-view.el --- Typeset Sage output on the fly -*- lexical-binding: t -*-
;; Copyright (C) 2008 ~ 2016 Matthias Meulien, Nick Alexander,
;; 2016 ~ 2018 Sho Takemori <[email protected]>
;; Author: Sho Takemori <[email protected]>
;; Keywords: sage, math, image
;; URL: https://github.com/sagemath/sage-shell-mode
;; Original authors: Matthias Meulien <[email protected]>, Nick Alexander
;; <[email protected]>
;;; License
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; This is a port of sage-view written by Matthias Meulien and Nick Alexander.
;; `sage-shell-view' typesets output in an `sage-shell-mode' buffer and displays
;; plots inline in an `sage-shell-mode'. Inline displays are context
;; sensitive; by default, right-clicking brings up a context-menu.
;; Use `sage-shell-view' to enable the minor mode, and then
;; `sage-shell-view-enable-inline-output', `sage-shell-view-disable-inline-output' and
;; `sage-shell-view-enable-inline-plots', `sage-shell-view-disable-inline-plots' enable
;; and disable the relevant features. You might add some of those functions
;; to `sage-shell-view-hook' to configure `sage-shell-view' to your liking.
;; You can customize `sage-shell-view' using the Emacs customize interface by M-x
;; customize-group RET sage-shell-view RET. In particular you can customize
;; magnification and margins
;; This mode was inspired by doc-view.el by Tassilo Horn, preview.el
;; by David Kastrup, and imath.el by Yasuaki Honda.
;; The LaTeX style used by preview.el is mandatory to use
;; sage-shell-view.el. It is shipped with AUCTeX.
;;; Code:
;;; Todo:
;; - Add a auto-reveal stuff to overlays
;; - Check that display is image capable
;; - Disabling sage-view mode should remove overlays
;; - Set color, center image, enlarge overlay to window full size
;; - Add zoom features to overlays
;; - Add horizontal scrolling
;; Bugs:
;; - Numpy output can be a text array... should not be inserted into
;; $$ signs (hum... example?)
(require 'mouse)
(require 'sage-shell-mode)
(require 'deferred)
(defgroup sage-shell-view nil "Typeset Sage output on the fly"
:group 'sage-shell
:prefix "sage-shell-view-")
(defcustom sage-shell-view-dvipng-command "dvipng"
"*dvipng command to convert from DVI to PNG."
:type 'string
:group 'sage-shell-view)
(defcustom sage-shell-view-default-commands t
"Determine what to enable when `sage-shell-view' is started.
If equal to the symbol `plots' then will start inline plotting.
If equal to the symbol `output' then will start typesetting output.
Otherwise, if non-nil will start both.
Each of these can be enabled or disabled later by calling
`sage-shell-view-enable-inline-plots', `sage-shell-view-disable-inline-plots',
`sage-shell-view-enable-inline-output', `sage-shell-view-disable-inline-output',
`sage-shell-view-toggle-inline-plots' or
`sage-shell-view-toggle-inline-output'."
:type '(choice (const :tag "Inline Plots" plots)
(const :tag "Typeset Output" output)
(const :tag "Both" t))
:group 'sage-shell-view)
(defcustom sage-shell-view-latex-preamble
"\\usepackage{amstext}
\\usepackage{amsmath}
\\usepackage{amssymb}
\\usepackage{amsfonts}
\\usepackage{graphicx}
\\usepackage{mathrsfs}
\\usepackage[utf8]{inputenc}
\\usepackage[T1]{fontenc}
% we need preview
\\usepackage[active, displaymath]{preview}
% macros sage uses
\\newcommand{\\ZZ}{\\Bold{Z}}
\\newcommand{\\NN}{\\Bold{N}}
\\newcommand{\\RR}{\\Bold{R}}
\\newcommand{\\CC}{\\Bold{C}}
\\newcommand{\\QQ}{\\Bold{Q}}
\\newcommand{\\QQbar}{\\overline{\\QQ}}
\\newcommand{\\GF}[1]{\\Bold{F}_{#1}}
\\newcommand{\\Zp}[1]{\\ZZ_{#1}}
\\newcommand{\\Qp}[1]{\\QQ_{#1}}
\\newcommand{\\Zmod}[1]{\\ZZ/#1\\ZZ}
\\newcommand{\\CDF}{\\Bold{C}}
\\newcommand{\\CIF}{\\Bold{C}}
\\newcommand{\\CLF}{\\Bold{C}}
\\newcommand{\\RDF}{\\Bold{R}}
\\newcommand{\\RIF}{\\Bold{I} \\Bold{R}}
\\newcommand{\\RLF}{\\Bold{R}}
\\newcommand{\\CFF}{\\Bold{CFF}}
"
"The default LaTeX preamble."
:type 'string
:group 'sage-shell-view)
(defcustom sage-shell-view-latex-foreground-color nil
"Foreground color used in LaTeX image as string.
If the value is `nil', then this variable is ignored."
:type '(choice (const :tag "Not Specified" nil)
(string :tag "Color"))
:group 'sage-shell-view)
(defcustom sage-shell-view-latex-background-color nil
"Background color used in LaTeX image as string.
If the value is `nil', then this variable is ignored."
:type '(choice (const :tag "Not Specified" nil)
(string :tag "Color"))
:group 'sage-shell-view)
(defcustom sage-shell-view-dvipng-options nil
"*Options for dvipng when converting from DVI to PNG."
:type 'list
:group 'sage-shell-view)
(defcustom sage-shell-view-margin '(1 . 1)
"*Margin (in pixels or (pixels-x . pixels-y)) added around displayed images."
:type '(choice integer (cons integer integer))
:group 'sage-shell-view)
(defcustom sage-shell-view-scale-factor 0.2
"*Factor used when zooming."
:type 'number
:group 'sage-shell-view)
(defcustom sage-shell-view-default-resolution 125
"Resolution used when converting from DVI to PNG.
This value is passed to the -D option of the command dvipng.
If it is `nil', then the function `sage-shell-view-compute-resolution'
computes the resolution automatically."
:type 'number
:group 'sage-shell-view)
(defcustom sage-shell-view-lighter " sage-view"
"Lighter for `sage-shell-view' minor mode."
:group 'sage-shell-view
:type 'string)
(defcustom sage-shell-view-latex-documentclass "\\documentclass{article}"
"documentclass for LaTeX"
:group 'sage-shell-view
:type 'string)
(defcustom sage-shell-view-latex-math-environment "math"
"Math environment for LaTeX."
:group 'sage-shell-view
:type 'string)
(defvar sage-shell-view-scale 1.0
"Scale used when converting from PDF/PS to PNG.")
(defun sage-shell-view-color-to-rgb (str)
"Convert color name STR to rgb values understood by TeX."
(mapcar (lambda (x) (format "%g" (/ x 65535.0))) (color-values str)))
(defun sage-shell-view-rgb (fg-or-bg)
(let ((color-alst `((bg . ,sage-shell-view-latex-background-color)
(fg . ,sage-shell-view-latex-foreground-color)))
(sym-alst `((bg . background-color)
(fg . foreground-color))))
(sage-shell-view-color-to-rgb
(or (assoc-default fg-or-bg color-alst)
(frame-parameter nil (assoc-default fg-or-bg sym-alst))))))
(defun sage-shell-view-latex-str (math-expr)
"LaTeX string to be inserted a tmp file."
(format
"%s
%s
\\begin{document}
\\begin{preview}
\\begin{%s}
%s
\\end{%s}
\\end{preview}
\\end{document}
"
sage-shell-view-latex-documentclass
sage-shell-view-latex-preamble
sage-shell-view-latex-math-environment
;; math-expr
(replace-regexp-in-string
"^\$+" ""
(replace-regexp-in-string "\$+$" "" math-expr))
sage-shell-view-latex-math-environment))
(defun sage-shell-view-dir-name ()
(sage-shell-edit--set-and-make-temp-dir)
(buffer-local-value 'sage-shell-edit:temp-directory
sage-shell:process-buffer))
(defun sage-shell-view-overlay-activep (ov)
"Check whether there is a valid image associated with OV."
(equal (car (overlay-get ov 'display)) 'image))
(defun sage-shell-view-regenerate (ov)
"Return zoom to normal and regenerate the overlay."
(overlay-put ov 'scale sage-shell-view-scale)
(sage-shell-view-process-overlay ov))
(defun sage-shell-view-zoom-in (ov &optional multiplier)
"Internal function to zoom in on an overlay."
(unless (numberp multiplier)
(setq multiplier 1))
(let* ((scale (or (overlay-get ov 'scale) sage-shell-view-scale))
(new-scale (+ scale (* multiplier sage-shell-view-scale-factor))))
(overlay-put ov 'scale new-scale)
(message "Overlay's scale set to %s" new-scale)
(sage-shell-view-process-overlay ov)))
(defun sage-shell-view-zoom-out (ov &optional multiplier)
"Internal function to zoom out on an overlay."
(unless (numberp multiplier)
(setq multiplier 1))
(let* ((scale (or (overlay-get ov 'scale) sage-shell-view-scale))
(new-scale (- scale (* multiplier sage-shell-view-scale-factor))))
;; Ensure it's not too small (or negative)
(when (< new-scale sage-shell-view-scale-factor)
(setq new-scale sage-shell-view-scale-factor))
(overlay-put ov 'scale new-scale)
(message "Overlay's scale set to %s" new-scale)
(sage-shell-view-process-overlay ov)))
(defmacro sage-shell-view--when-overlay-active (ov &rest body)
(declare (indent 1))
`(if (sage-shell-view-overlay-activep ,ov)
(progn ,@body)
(error "There is no valid image associated with the overlay.")))
(defun sage-shell-view-context-menu (ov ev)
"Pop up a menu for OV at position EV."
(popup-menu
`("Sage View Mode"
["Regenerate" (lambda () (interactive) (sage-shell-view-regenerate ,ov))]
["Copy Text" (lambda () (interactive) (sage-shell-view-copy-text ,ov))]
["Copy LaTeX" (lambda () (interactive) (sage-shell-view-copy-latex ,ov))]
["Save As..." (lambda () (interactive)
(sage-shell-view--when-overlay-active ,ov
(sage-shell-view-save-image ,ov)))]
["Zoom in" (lambda (multiplier) (interactive "p")
(sage-shell-view--when-overlay-active ,ov
(sage-shell-view-zoom-in ,ov multiplier)))]
["Zoom out" (lambda (multiplier)
(interactive "p")
(sage-shell-view--when-overlay-active ,ov
(sage-shell-view-zoom-out ,ov multiplier)))]
"--"
["Customize Conversion Options"
(lambda () (interactive)
(sage-shell-view--when-overlay-active ,ov
(customize-group 'sage-shell-view t)))])
ev))
(defun sage-shell-view-cleanup-copied-text (str)
"Remove some boilerplate text added by Sage to all LaTeX output."
(replace-regexp-in-string
(regexp-quote "\\newcommand{\\Bold}[1]{\\mathbf{#1}}")
"" str))
(defun sage-shell-view-copy-text (ov)
"Copy text source of OV into the kill buffer."
(let ((text (overlay-get ov 'text)))
(if text
(kill-new text)
(message "No text available"))))
(defun sage-shell-view-copy-latex (ov)
"Copy LaTeX source of OV into the kill buffer."
(let ((text (overlay-get ov 'math)))
(if text
(kill-new (sage-shell-view-cleanup-copied-text text))
(message "No LaTeX code available"))))
(defvar sage-shell-view-plot-regex
(rx "BEGIN_PNG:" (group (1+ nonl)) ":END_PNG")
"Regular expression matching a plot output in Sage output.")
(defun sage-shell-view-save-image (ov)
"Copy image file associated to OV.
Make sure that there is a valid image associated with OV with
`sage-shell-view-overlay-activep'."
(let* ((spec (cdr (overlay-get ov 'display)))
(file (plist-get spec :file))
(name (when (and file (file-readable-p file))
(expand-file-name
(read-file-name "Write image to file: "
default-directory
"sage-shell-view.png")))))
(if name
(copy-file file name))))
(defun sage-shell-view-plot-context-menu (ov ev)
"Pop up a menu for OV at position EV."
(popup-menu
(list
"Sage View Mode"
(vector
"Save As..."
(lambda () (interactive)
(sage-shell-view--when-overlay-active ov
(sage-shell-view-save-image ov)))))
ev))
(defun sage-shell-view-compute-resolution (scale)
(if (display-graphic-p)
;; In a terminal, display-mm-width returns nil and
;; display-pixel-width returns the number of characters.
(let ((w (* scale (/ (* 25.4 1.4 (display-pixel-width))
(display-mm-width))))
(h (* scale (/ (* 25.4 1.4 (display-pixel-height))
(display-mm-height)))))
(concat (int-to-string w) "x" (int-to-string h)))
"72x72"))
(defun sage-shell-view-process-overlay (ov)
"Associate a LATEX document to OV and start conversion process
from LATEX to PDF."
(let* ((base (expand-file-name
(make-temp-name "sage-shell-view_") (sage-shell-view-dir-name))))
(with-temp-file (concat base ".tex")
(insert (sage-shell-view-latex-str
(overlay-get ov 'math)))
;; The LaTeX created by Sage for MathJax (in some cases) isn't valid.
;; This is our attempt to work around it.
(goto-char (point-min))
(while (search-forward-regexp "\\verb!\\([^!]*\\)!" nil t)
(replace-match "\mathtt{\\1}")))
(overlay-put ov 'file-sans-extension base)
(deferred:$
(apply #'deferred:process "latex" (sage-shell-view--latex-option base))
(deferred:nextc it
(lambda (_) (sage-shell-view--dvi-to-png ov))))))
(defun sage-shell-view--dvi-to-png (ov)
(unless (executable-find sage-shell-view-dvipng-command)
(error "dvipng not found. To use sage-shell-view mode, please install dvipng."))
(let ((base (overlay-get ov 'file-sans-extension)))
(deferred:$
(apply #'deferred:process
sage-shell-view-dvipng-command
(sage-shell-view--dvipng-option (overlay-get ov 'scale) base))
(deferred:nextc it
(lambda (_)
(overlay-put ov 'display
(list 'image :type 'png :file (concat base ".png")
:margin sage-shell-view-margin)))))))
(defun sage-shell-view--latex-option (base)
(list (concat "--output-directory=" (sage-shell-view-dir-name))
(concat "-interaction=" "nonstopmode")
(concat base ".tex")))
(defun sage-shell-view--dvipng-option (scale base)
(let ((png (shell-quote-argument (concat base ".png")))
(dvi (shell-quote-argument (concat base ".dvi")))
(scale (or scale sage-shell-view-scale)))
(append sage-shell-view-dvipng-options
(list
"-T tight"
(apply #'format "-fg rgb %s %s %s" (sage-shell-view-rgb 'fg))
(apply #'format "-bg rgb %s %s %s" (sage-shell-view-rgb 'bg))
"-D" (sage-shell-view--resultion scale)
"-o" png
dvi))))
(defun sage-shell-view--resultion (scale)
(if sage-shell-view-default-resolution
(sage-shell:->>
(* scale sage-shell-view-default-resolution)
round
int-to-string)
(sage-shell-view-compute-resolution
scale)))
(defvar sage-shell-view-inline-plots-enabled nil)
(make-variable-buffer-local 'sage-shell-view-inline-plots-enabled)
(defvar sage-shell-view-inline-output-enabled nil)
(make-variable-buffer-local 'sage-shell-view-inline-output-enabled)
(defun sage-shell-view-output-filter-process-inline-plots (_string)
"Generate and place one overlay image for one inline plot,
found by looking for a particular png file in directory
`sage-shell-view-dir-name'.
This function expects the buffer to be narrowed to just the
current output; see `sage-shell-view-output-filter' for how to do
that."
(goto-char (point-min))
(while (re-search-forward
sage-shell-view-plot-regex
(point-max) t)
(let* ((plot-beg (match-beginning 0))
(plot-end (match-end 0))
(pngname (match-string-no-properties 1))
(base (expand-file-name (make-temp-name "sage-shell-view-plot_")
(sage-shell-view-dir-name)))
(pngname2 (concat base ".png")))
(when (and pngname
(file-exists-p pngname)
(file-readable-p pngname))
;; the found branch
(rename-file pngname pngname2 t)
(goto-char comint-last-input-end)
(let ((im (create-image pngname2 'png))
(ov (make-overlay plot-beg plot-end
nil nil nil))
(map (make-sparse-keymap)))
(overlay-put ov 'display im)
;; help alignment as much as possible
(overlay-put ov 'before-string "\n")
(overlay-put ov 'sage-shell-view t)
(define-key map [mouse-3]
(lambda (event) (interactive "e")
(sage-shell-view-plot-context-menu ov event)))
(overlay-put ov 'keymap map))))))
(defvar sage-shell-view-output-regexp
(rx "BEGIN_TEXT:"
(group (minimal-match (0+ (or nonl "\n"))))
":END_TEXTBEGIN_LATEX:"
(group (minimal-match (0+ (or nonl "\n"))))
":END_LATEX")
"Regular expression matching typeset output from BackendEmacs.")
(defun sage-shell-view-output-filter-process-inline-output (_string)
"Substitute overlays to inline output.
Each region delimited by `sage-shell-view-start-string' and
`sage-shell-view-final-string' is replaced by an overlay.
This function expects the buffer to be narrowed to the current
output. And should be wrapped in a `save-excursion' and
`save-restriction' call.
See also `sage-shell-view-output-filter'."
(goto-char (point-min))
(while (re-search-forward sage-shell-view-output-regexp (point-max) t)
(let* ((full-beg (match-beginning 0))
(full-end (match-end 0))
(text-beg (match-beginning 1))
(text-end (match-end 1))
(latex-beg (match-beginning 2))
(latex-end (match-end 2))
(text (buffer-substring-no-properties text-beg text-end))
(latex (buffer-substring-no-properties latex-beg latex-end))
(ov (make-overlay full-beg full-end
nil nil nil))
(map (make-sparse-keymap)))
;; Delete everything except the text
(delete-region text-end full-end)
(delete-region full-beg text-beg)
;; Populate the overlay
(overlay-put ov 'help-echo "mouse-3: Open contextual menu")
(overlay-put ov 'text text)
(overlay-put ov 'math latex)
(define-key map [mouse-3]
`(lambda (event) (interactive "e")
(sage-shell-view-context-menu ,ov event)))
(overlay-put ov 'keymap map)
(overlay-put ov 'sage-shell-view t)
(sage-shell-view-process-overlay ov))))
;;;###autoload
(define-minor-mode sage-shell-view-mode
"Toggle automatic typesetting of Sage output.
Typesetting of math formulas is done by LATEX subprocesses and
PDF to PNG conversions."
:lighter sage-shell-view-lighter
:global nil
:init-value nil
(cond (sage-shell-view-mode
(add-hook 'comint-output-filter-functions
'sage-shell-view-output-filter nil t)
(cond
((eq sage-shell-view-default-commands 'plots)
(sage-shell-view-enable-inline-plots))
((eq sage-shell-view-default-commands 'output)
(sage-shell-view-enable-inline-output))
(sage-shell-view-default-commands
(sage-shell-view-enable-inline-plots)
(sage-shell-view-enable-inline-output))))
(t (remove-hook 'comint-output-filter-functions
'sage-shell-view-output-filter t)
(sage-shell-view-set-backend nil nil))))
;;;###autoload
(defalias 'sage-shell-view 'sage-shell-view-mode)
(defun sage-shell-view-output-filter (string)
"Generate and place overlay images for inline output and inline plots.
Function to be inserted in `comint-output-filter-functions'."
(when sage-shell-view-mode
(save-excursion
(save-restriction
(narrow-to-region comint-last-input-end
(process-mark (get-buffer-process (current-buffer))))
(when sage-shell-view-inline-plots-enabled
(sage-shell-view-output-filter-process-inline-plots string))
(when sage-shell-view-inline-output-enabled
(sage-shell-view-output-filter-process-inline-output string))))))
(defun sage-shell-view-update-modeline ()
"Update modeline to include information about whether sage-shell-view
is enabled."
(when (eq major-mode 'sage-shell-mode)
(let ((fmt (format "/%s%s"
(if sage-shell-view-inline-plots-enabled "p" "")
(if sage-shell-view-inline-output-enabled "t" "")))
(bare-mode-name (if (string-match "\\(^[^/]*\\)/" mode-name)
(match-string 1 mode-name)
mode-name)))
(setq mode-name
(if (> (length fmt) 1)
(concat bare-mode-name fmt)
bare-mode-name))
(force-mode-line-update))))
;;;###autoload
(defun sage-shell-view-enable-inline-output ()
"Enable inline output pretty-printing, i.e. typeset output from sage in the
`sage-shell-mode' buffer.
WARNING: this communicates with the sage process. Only use this when sage is
running."
(interactive)
(sage-shell-view--set-inline-state
'text t))
(defun sage-shell-view-disable-inline-output ()
"Disable inline output pretty-printing, i.e. do not typeset output from sage
in the `sage-shell-mode' buffer.
WARNING: this communicates with the sage process. Only use this when sage is running."
(interactive)
(sage-shell-view--set-inline-state
'text nil))
;;;###autoload
(defun sage-shell-view-enable-inline-plots ()
"Enable inline plotting, i.e. display plots in the `sage-shell-mode' buffer
and do not spawn an external viewer.
WARNING: this communicates with the sage process.
Only use this when sage is running."
(interactive)
(sage-shell-view--set-inline-state
'plot t))
(defun sage-shell-view-disable-inline-plots ()
"Disable inline plotting, i.e. do not display plots in the
`sage-shell-mode' buffer and instead spawn an external viewer.
WARNING: this communicates with the sage process.
Only use this when sage is running."
(interactive)
(sage-shell-view--set-inline-state
'plot nil))
;;;###autoload
(cl-defun sage-shell-view-toggle-inline-output (&optional (verbose t))
"Toggle inline typesetting of outputs in `sage-shell-mode' buffer."
(interactive)
(sage-shell-edit:set-sage-proc-buf-internal nil)
(sage-shell-view--set-inline-state
'text
(not (buffer-local-value 'sage-shell-view-inline-output-enabled
sage-shell:process-buffer))
verbose))
;;;###autoload
(cl-defun sage-shell-view-toggle-inline-plots (&optional (verbose t))
"Toggle inline plotting of graphs in `sage-shell-mode' buffer."
(interactive)
(sage-shell-edit:set-sage-proc-buf-internal nil)
(sage-shell-view--set-inline-state
'plot
(not (buffer-local-value 'sage-shell-view-inline-plots-enabled
sage-shell:process-buffer))
verbose))
(defun sage-shell-view--set-inline-state (type enable-p &optional verbose)
"Enable/disable inline outputs/plots."
(sage-shell-edit:set-sage-proc-buf-internal nil)
(with-current-buffer sage-shell:process-buffer
(unless sage-shell-view-mode
(let ((sage-shell-view-default-commands nil))
(sage-shell-view-mode 1)))
(let ((current-state `((text . ,sage-shell-view-inline-output-enabled)
(plot . ,sage-shell-view-inline-plots-enabled))))
(unless (assoc type current-state)
(error "TYPE should be text or plot."))
(setcdr (assoc type current-state) enable-p)
(let-alist current-state
(sage-shell-view-set-backend
.text .plot
(lambda () (when verbose
(message "Inline %s %s."
(let ((l '((text . "typesetting")
(plot . "plots"))))
(assoc-default type l))
(if enable-p
"enabled"
"disabled")))))))))
(defconst sage-shell-view--mod-name "_emacs_sage_shell_view")
(defun sage-shell-view--to-py-bool (a)
(if a "True" "False"))
(cl-defun sage-shell-view-set-backend (text plot &optional
(success-callback #'ignore))
(cl-check-type success-callback function)
(with-current-buffer sage-shell:process-buffer
(sage-shell-view--init)
(sage-shell:run-cell
(format "%s.%s(text=%s, plot=%s)"
sage-shell-view--mod-name
"set_backend"
(sage-shell-view--to-py-bool text)
(sage-shell-view--to-py-bool plot))
:sync t
:callback
(lambda (res)
(cond ((sage-shell:output-stct-success res)
(funcall success-callback)
(setq sage-shell-view-inline-plots-enabled plot
sage-shell-view-inline-output-enabled text)
(sage-shell-view-update-modeline))
(t (sage-shell--error-callback res)))))))
(defvar sage-shell-view--init-completed-p nil)
(make-variable-buffer-local 'sage-shell-view--init-completed-p)
(defun sage-shell-view--init ()
(unless sage-shell-view--init-completed-p
(sage-shell:run-cell
"import emacs_sage_shell_view as _emacs_sage_shell_view"
:sync t
:callback #'sage-shell--error-callback)
(with-current-buffer sage-shell:process-buffer
(setq sage-shell-view--init-completed-p t))))
(provide 'sage-shell-view)
;;; sage-shell-view.el ends here