forked from haskell/haskell-mode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
haskell-interactive-mode.el
672 lines (583 loc) · 27.4 KB
/
haskell-interactive-mode.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
;;; haskell-interactive-mode.el --- The interactive Haskell mode
;; Copyright (C) 2011-2012 Chris Done
;; Author: Chris Done <chrisdone@gmail.com>
;; This file is not part of GNU Emacs.
;; This file 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, or (at your option)
;; any later version.
;; This file 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 GNU Emacs; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Commentary:
;;; Todo:
;;; Code:
(require 'haskell-process)
(require 'haskell-session)
(require 'haskell-show)
(with-no-warnings (require 'cl))
(defcustom haskell-interactive-mode-eval-pretty
nil
"Print eval results that can be parsed as Show instances prettily. Requires sexp-show (on Hackage)."
:type 'boolean
:group 'haskell-interactive)
(defvar haskell-interactive-prompt "λ> "
"The prompt to use.")
(defun haskell-interactive-prompt-regex ()
"Generate a regex for searching for any occurence of the prompt
at the beginning of the line. This should prevent any
interference with prompts that look like haskell expressions."
(concat "^" (regexp-quote haskell-interactive-prompt)))
(defcustom haskell-interactive-mode-eval-mode
nil
"Use the given mode's font-locking to render some text."
:type '(choice function (const :tag "None" nil))
:group 'haskell-interactive)
(defcustom haskell-interactive-mode-hide-multi-line-errors
t
"Hide collapsible multi-line compile messages by default."
:type 'boolean
:group 'haskell-interactive)
(defcustom haskell-interactive-mode-delete-superseded-errors
t
"Whether to delete compile messages superseded by recompile/reloads."
:type 'boolean
:group 'haskell-interactive)
(defcustom haskell-interactive-mode-include-file-name
t
"Include the file name of the module being compiled when
printing compilation messages."
:type 'boolean
:group 'haskell-interactive)
(defvar haskell-interactive-mode-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "RET") 'haskell-interactive-mode-return)
(define-key map (kbd "SPC") 'haskell-interactive-mode-space)
(define-key map (kbd "C-j") 'haskell-interactive-mode-newline-indent)
(define-key map (kbd "C-a") 'haskell-interactive-mode-beginning)
(define-key map (kbd "<home>") 'haskell-interactive-mode-beginning)
(define-key map (kbd "C-c C-k") 'haskell-interactive-mode-clear)
(define-key map (kbd "C-c C-c") 'haskell-process-interrupt)
(define-key map (kbd "C-c C-f") 'next-error-follow-minor-mode)
(define-key map (kbd "M-p") 'haskell-interactive-mode-history-previous)
(define-key map (kbd "M-n") 'haskell-interactive-mode-history-next)
(define-key map (kbd "C-<up>") 'haskell-interactive-mode-history-previous)
(define-key map (kbd "C-<down>") 'haskell-interactive-mode-history-next)
(define-key map (kbd "TAB") 'haskell-interactive-mode-tab)
map)
"Interactive Haskell mode map.")
;; buffer-local variables used internally by `haskell-interactive-mode'
(defvar haskell-interactive-mode-history)
(defvar haskell-interactive-mode-history-index)
(defvar haskell-interactive-mode-completion-cache)
;;;###autoload
(define-derived-mode haskell-interactive-mode fundamental-mode "Interactive-Haskell"
"Interactive mode for Haskell.
See Info node `(haskell-mode)haskell-interactive-mode' for more
information.
Key bindings:
\\{haskell-interactive-mode-map}"
:group 'haskell-interactive
(set (make-local-variable 'haskell-interactive-mode-history) (list))
(set (make-local-variable 'haskell-interactive-mode-history-index) 0)
(set (make-local-variable 'haskell-interactive-mode-completion-cache) nil)
(setq next-error-function 'haskell-interactive-next-error-function)
(setq completion-at-point-functions '(haskell-interactive-mode-completion-at-point-function))
(haskell-interactive-mode-prompt))
(defface haskell-interactive-face-prompt
'((t :inherit 'font-lock-function-name-face))
"Face for the prompt."
:group 'haskell-interactive)
(defface haskell-interactive-face-compile-error
'((t :inherit 'compilation-error))
"Face for compile errors."
:group 'haskell-interactive)
(defface haskell-interactive-face-compile-warning
'((t :inherit 'compilation-warning))
"Face for compiler warnings."
:group 'haskell-interactive)
(defface haskell-interactive-face-result
'((t :inherit 'font-lock-string-face))
"Face for the result."
:group 'haskell-interactive)
(defun haskell-interactive-mode-newline-indent ()
"Make newline and indent."
(interactive)
(insert "\n" (make-string (length haskell-interactive-prompt) ? )))
;;;###autoload
(defun haskell-interactive-bring ()
"Bring up the interactive mode for this session."
(interactive)
(let* ((session (haskell-session))
(buffer (haskell-session-interactive-buffer session)))
(unless (and (find-if (lambda (window) (equal (window-buffer window) buffer))
(window-list))
(= 2 (length (window-list))))
(delete-other-windows)
(display-buffer buffer)
(other-window 1))))
;;;###autoload
(defun haskell-interactive-switch ()
"Switch to the interactive mode for this session."
(interactive)
(let ((buffer (haskell-session-interactive-buffer (haskell-session))))
(unless (eq buffer (window-buffer))
(switch-to-buffer-other-window buffer))))
(defun haskell-interactive-mode-return ()
"Handle the return key."
(interactive)
(if (haskell-interactive-at-compile-message)
(next-error-internal)
(haskell-interactive-handle-line)))
(defun haskell-interactive-mode-space (n)
"Handle the space key."
(interactive "p")
(if (haskell-interactive-at-compile-message)
(next-error-no-select 0)
(self-insert-command n)))
(defun haskell-interactive-at-prompt ()
"If at prompt, returns start position of user-input, otherwise returns nil."
(let ((current-point (point)))
(save-excursion (goto-char (point-max))
(search-backward-regexp (haskell-interactive-prompt-regex))
(when (> current-point (point))
(+ (length haskell-interactive-prompt) (point))))))
(defun haskell-interactive-handle-line ()
(when (haskell-interactive-at-prompt)
(let ((expr (haskell-interactive-mode-input))
(session (haskell-session))
(process (haskell-process)))
(when (not (string= "" (replace-regexp-in-string " " "" expr)))
(haskell-interactive-mode-history-add expr)
(goto-char (point-max))
(haskell-process-queue-command
process
(make-haskell-command
:state (list session process expr 0)
:go (lambda (state)
(haskell-process-send-string (cadr state)
(caddr state)))
:live (lambda (state buffer)
(unless (and (string-prefix-p ":q" (caddr state))
(string-prefix-p (caddr state) ":quit"))
(let* ((cursor (cadddr state))
(next (replace-regexp-in-string
haskell-process-prompt-regex
"\n"
(substring buffer cursor))))
(when (= 0 cursor) (insert "\n"))
(haskell-interactive-mode-eval-result (car state) next)
(setf (cdddr state) (list (length buffer)))
nil)))
:complete (lambda (state response)
(cond
(haskell-interactive-mode-eval-mode
(haskell-interactive-mode-eval-as-mode (car state) response))
((haskell-interactive-mode-line-is-query (elt state 2))
(let ((haskell-interactive-mode-eval-mode 'haskell-mode))
(haskell-interactive-mode-eval-as-mode (car state) response)))
(haskell-interactive-mode-eval-pretty
(haskell-interactive-mode-eval-pretty-result (car state) response)))
(haskell-interactive-mode-prompt (car state)))))))))
(defun haskell-interactive-mode-line-is-query (line)
"Is LINE actually a :t/:k/:i?"
(and (string-match "^:[itk] " line)
t))
(defun haskell-interactive-jump-to-error-line ()
"Jump to the error line."
(let ((orig-line (buffer-substring-no-properties (line-beginning-position)
(line-end-position))))
(and (string-match "^\\([^:]+\\):\\([0-9]+\\):\\([0-9]+\\)\\(-[0-9]+\\)?:" orig-line)
(let* ((file (match-string 1 orig-line))
(line (match-string 2 orig-line))
(col (match-string 3 orig-line))
(session (haskell-session))
(cabal-path (haskell-session-cabal-dir session))
(src-path (haskell-session-current-dir session))
(cabal-relative-file (expand-file-name file cabal-path))
(src-relative-file (expand-file-name file src-path)))
(let ((file (cond ((file-exists-p cabal-relative-file)
cabal-relative-file)
((file-exists-p src-relative-file)
src-relative-file))))
(when file
(other-window 1)
(find-file file)
(haskell-interactive-bring)
(goto-char (point-min))
(forward-line (1- (string-to-number line)))
(goto-char (+ (point) (string-to-number col) -1))
(haskell-mode-message-line orig-line)
t))))))
(defun haskell-interactive-mode-beginning ()
"Go to the start of the line."
(interactive)
(if (search-backward-regexp (haskell-interactive-prompt-regex) (line-beginning-position) t 1)
(search-forward-regexp (haskell-interactive-prompt-regex) (line-end-position) t 1)
(move-beginning-of-line nil)))
(defun haskell-interactive-mode-clear ()
"Newline and indent at the prompt."
(interactive)
(let ((session (haskell-session)))
(with-current-buffer (haskell-session-interactive-buffer session)
(let ((inhibit-read-only t))
(set-text-properties (point-min) (point-max) nil))
(delete-region (point-min) (point-max))
(mapc 'delete-overlay (overlays-in (point-min) (point-max)))
(haskell-interactive-mode-prompt session)
(haskell-session-set session 'next-error-region nil)
(haskell-session-set session 'next-error-locus nil))))
(defun haskell-interactive-mode-input-partial ()
"Get the interactive mode input up to point."
(let ((input-start (haskell-interactive-at-prompt)))
(unless input-start
(error "not at prompt"))
(buffer-substring-no-properties input-start (point))))
(defun haskell-interactive-mode-input ()
"Get the interactive mode input."
(substring
(buffer-substring-no-properties
(save-excursion
(goto-char (point-max))
(search-backward-regexp (haskell-interactive-prompt-regex)))
(line-end-position))
(length haskell-interactive-prompt)))
(defun haskell-interactive-mode-prompt (&optional session)
"Show a prompt at the end of the REPL buffer.
If SESSION is non-nil, use the REPL buffer associated with
SESSION, otherwise operate on the current buffer.
"
(with-current-buffer (if session
(haskell-session-interactive-buffer session)
(current-buffer))
(goto-char (point-max))
(insert (propertize haskell-interactive-prompt
'face 'haskell-interactive-face-prompt
'read-only t
'rear-nonsticky t
'prompt t))))
(defun haskell-interactive-mode-eval-result (session text)
"Insert the result of an eval as plain text."
(with-current-buffer (haskell-session-interactive-buffer session)
(goto-char (point-max))
(insert (propertize text
'face 'haskell-interactive-face-result
'rear-nonsticky t
'read-only t
'prompt t
'result t))))
(defun haskell-interactive-mode-eval-as-mode (session text)
"Insert TEXT font-locked according to `haskell-interactive-mode-eval-mode'."
(with-current-buffer (haskell-session-interactive-buffer session)
(let ((start-point (save-excursion (search-backward-regexp (haskell-interactive-prompt-regex))
(forward-line 1)
(point)))
(inhibit-read-only t))
(delete-region start-point (point))
(goto-char (point-max))
(insert (haskell-interactive-text-as-mode (concat text "\n")
haskell-interactive-mode-eval-mode)))))
(defun haskell-interactive-text-as-mode (text mode)
"Propertize `text' according to the font locking settings of
`mode'."
(with-current-buffer (get-buffer-create (concat " haskell-font-lock-as-"
(symbol-name mode)))
(unless (eq major-mode mode)
(funcall mode))
(erase-buffer)
(insert text)
(font-lock-fontify-region (point-min) (point-max))
(buffer-substring (point-min)
(point-max))))
(defun haskell-interactive-mode-eval-pretty-result (session text)
"Insert the result of an eval as a pretty printed Showable, if
parseable, or otherwise just as-is."
(with-current-buffer (haskell-session-interactive-buffer session)
(let ((start-point (save-excursion (search-backward-regexp (haskell-interactive-prompt-regex))
(forward-line 1)
(point)))
(inhibit-read-only t))
(delete-region start-point (point))
(goto-char (point-max))
(haskell-show-parse-and-insert text)
(insert "\n"))))
;;;###autoload
(defun haskell-interactive-mode-echo (session message &optional mode)
"Echo a read only piece of text before the prompt."
(with-current-buffer (haskell-session-interactive-buffer session)
(save-excursion
(haskell-interactive-mode-goto-end-point)
(insert (if mode
(haskell-interactive-text-as-mode
(concat message "\n")
mode)
(propertize (concat message "\n")
'read-only t
'rear-nonsticky t))))))
(defun haskell-interactive-mode-compile-error (session message)
"Echo an error."
(haskell-interactive-mode-compile-message
session message 'haskell-interactive-face-compile-error))
(defun haskell-interactive-mode-compile-warning (session message)
"Warning message."
(haskell-interactive-mode-compile-message
session message 'haskell-interactive-face-compile-warning))
(defun haskell-interactive-mode-compile-message (session message type)
"Echo a compiler warning."
(with-current-buffer (haskell-session-interactive-buffer session)
(setq next-error-last-buffer (current-buffer))
(save-excursion
(haskell-interactive-mode-goto-end-point)
(let ((lines (string-match "^\\(.*\\)\n\\([[:unibyte:][:nonascii:]]+\\)" message)))
(when lines
(insert (propertize (concat (match-string 1 message) " …\n")
'face type
'read-only t
'rear-nonsticky t
'expandable t))
(insert (propertize (concat (match-string 2 message) "\n")
'face type
'read-only t
'rear-nonsticky t
'collapsible t
'invisible haskell-interactive-mode-hide-multi-line-errors
'message-length (length (match-string 2 message)))))
(unless lines
(insert (propertize (concat message "\n")
'face type
'read-only t
'rear-nonsticky t)))))))
(defun haskell-interactive-mode-insert (session message)
"Echo a read only piece of text before the prompt."
(with-current-buffer (haskell-session-interactive-buffer session)
(save-excursion
(haskell-interactive-mode-goto-end-point)
(insert (propertize message
'read-only t
'rear-nonsticky t)))))
(defun haskell-interactive-mode-goto-end-point ()
"Go to the 'end' of the buffer (before the prompt.)"
(goto-char (point-max))
(when (search-backward-regexp (haskell-interactive-prompt-regex) (point-min) t 1)))
(defun haskell-interactive-mode-history-add (input)
"Add item to the history."
(setq haskell-interactive-mode-history
(cons ""
(cons input
(remove-if (lambda (i) (or (string= i input) (string= i "")))
haskell-interactive-mode-history))))
(setq haskell-interactive-mode-history-index
0))
(defun haskell-interactive-mode-history-toggle (n)
"Toggle the history n items up or down."
(unless (null haskell-interactive-mode-history)
(setq haskell-interactive-mode-history-index
(mod (+ haskell-interactive-mode-history-index n)
(length haskell-interactive-mode-history)))
(unless (zerop haskell-interactive-mode-history-index)
(message "History item: %d" haskell-interactive-mode-history-index))
(haskell-interactive-mode-set-prompt
(nth haskell-interactive-mode-history-index
haskell-interactive-mode-history))))
(defun haskell-interactive-mode-history-previous (arg)
"Cycle backwards through input history."
(interactive "*p")
(when (haskell-interactive-at-prompt)
(if (not (zerop arg))
(haskell-interactive-mode-history-toggle arg)
(setq haskell-interactive-mode-history-index 0)
(haskell-interactive-mode-history-toggle 1))))
(defun haskell-interactive-mode-history-next (arg)
"Cycle forward through input history."
(interactive "*p")
(when (haskell-interactive-at-prompt)
(if (not (zerop arg))
(haskell-interactive-mode-history-toggle (- arg))
(setq haskell-interactive-mode-history-index 0)
(haskell-interactive-mode-history-toggle -1))))
(defun haskell-interactive-mode-set-prompt (p)
"Set (and overwrite) the current prompt."
(with-current-buffer (haskell-session-interactive-buffer (haskell-session))
(goto-char (point-max))
(goto-char (line-beginning-position))
(search-forward-regexp (haskell-interactive-prompt-regex))
(delete-region (point) (line-end-position))
(insert p)))
(defun haskell-interactive-buffer ()
"Get the interactive buffer of the session."
(haskell-session-interactive-buffer (haskell-session)))
(defun haskell-interactive-show-load-message (session type module-name file-name echo)
"Show the '(Compiling|Loading) X' message."
(let ((msg (ecase type
('compiling
(if haskell-interactive-mode-include-file-name
(format "Compiling: %s (%s)" module-name file-name)
(format "Compiling: %s" module-name)))
('loading (format "Loading: %s" module-name)))))
(haskell-mode-message-line msg)
(when haskell-interactive-mode-delete-superseded-errors
(haskell-interactive-mode-delete-compile-messages session file-name))
(when echo
(haskell-interactive-mode-echo session msg))))
(defun haskell-interactive-mode-completion-at-point-function ()
"Offer completions for partial expression between prompt and point"
(when (haskell-interactive-at-prompt)
(let* ((process (haskell-process))
(session (haskell-session))
(inp (haskell-interactive-mode-input-partial)))
(if (string= inp (car-safe haskell-interactive-mode-completion-cache))
(cdr haskell-interactive-mode-completion-cache)
(let* ((resp2 (haskell-process-get-repl-completions process inp))
(rlen (- (length inp) (length (car resp2))))
(coll (append (if (string-prefix-p inp "import") '("import"))
(if (string-prefix-p inp "let") '("let"))
(cdr resp2)))
(result (list (- (point) rlen) (point) coll)))
(setq haskell-interactive-mode-completion-cache (cons inp result))
result)))))
(defun haskell-interactive-mode-tab ()
"The tab command."
(interactive)
(cond
((haskell-interactive-at-prompt)
(completion-at-point))
((get-text-property (point) 'collapsible)
(let ((column (current-column)))
(search-backward-regexp "^[^ ]")
(haskell-interactive-mode-tab-expand)
(goto-char (+ column (line-beginning-position)))))
(t (haskell-interactive-mode-tab-expand))))
(defun haskell-interactive-mode-tab-expand ()
"Expand the rest of the message."
(cond ((get-text-property (point) 'expandable)
(let* ((pos (1+ (line-end-position)))
(visibility (get-text-property pos 'invisible))
(length (1+ (get-text-property pos 'message-length))))
(let ((inhibit-read-only t))
(put-text-property pos
(+ pos length)
'invisible
(not visibility)))))))
(defconst haskell-interactive-mode-error-regexp
"^\\([^\r\n:]+\\):\\([0-9]+\\):\\([0-9]+\\)\\(-[0-9]+\\)?:")
(defun haskell-interactive-at-compile-message ()
"Am I on a compile message?"
(save-excursion
(goto-char (line-beginning-position))
(looking-at haskell-interactive-mode-error-regexp)))
(defun haskell-interactive-mode-error-backward (&optional count)
"Go backward to the previous error."
(interactive)
(search-backward-regexp haskell-interactive-mode-error-regexp nil t count))
(defun haskell-interactive-mode-error-forward (&optional count)
"Go forward to the next error, or return to the REPL."
(interactive)
(goto-char (line-end-position))
(if (search-forward-regexp haskell-interactive-mode-error-regexp nil t count)
(progn (goto-char (line-beginning-position))
t)
(progn (goto-char (point-max))
nil)))
(defun haskell-interactive-next-error-function (&optional n reset)
"See `next-error-function' for more information."
(let* ((session (haskell-session))
(next-error-region (haskell-session-get session 'next-error-region))
(next-error-locus (haskell-session-get session 'next-error-locus))
(reset-locus nil))
(when (and next-error-region (or reset (and (/= n 0) (not next-error-locus))))
(goto-char (car next-error-region))
(unless (looking-at haskell-interactive-mode-error-regexp)
(haskell-interactive-mode-error-forward))
(setq reset-locus t)
(unless (looking-at haskell-interactive-mode-error-regexp)
(error "no errors found")))
;; move point if needed
(cond
(reset-locus nil)
((> n 0) (unless (haskell-interactive-mode-error-forward n)
(error "no more errors")))
((< n 0) (unless (haskell-interactive-mode-error-backward (- n))
(error "no more errors"))))
(let ((orig-line (buffer-substring-no-properties (line-beginning-position) (line-end-position))))
(when (string-match haskell-interactive-mode-error-regexp orig-line)
(let* ((msgmrk (set-marker (make-marker) (line-beginning-position)))
(file (match-string 1 orig-line))
(line (match-string 2 orig-line))
(col1 (match-string 3 orig-line))
(col2 (match-string 4 orig-line))
(cabal-relative-file (expand-file-name file (haskell-session-cabal-dir session)))
(src-relative-file (expand-file-name file (haskell-session-current-dir session)))
(real-file (cond ((file-exists-p cabal-relative-file) cabal-relative-file)
((file-exists-p src-relative-file) src-relative-file))))
(haskell-session-set session 'next-error-locus msgmrk)
(if real-file
(let ((m1 (make-marker))
(m2 (make-marker)))
(with-current-buffer (find-file-noselect real-file)
(save-excursion
(goto-char (point-min))
(forward-line (1- (string-to-number line)))
(set-marker m1 (+ (string-to-number col1) (point) -1))
(when col2
(set-marker m2 (- (point) (string-to-number col2))))))
;; ...finally select&hilight error locus
(compilation-goto-locus msgmrk m1 (and (marker-position m2) m2)))
(error "don't know where to find %S" file)))))))
(defun haskell-interactive-mode-delete-compile-messages (session &optional file-name)
"Delete compile messages in REPL buffer.
If FILE-NAME is non-nil, restrict to removing messages concerning
FILE-NAME only."
(with-current-buffer (haskell-session-interactive-buffer session)
(save-excursion
(goto-char (point-min))
(while (when (re-search-forward haskell-interactive-mode-error-regexp nil t)
(let ((msg-file-name (match-string-no-properties 1))
(msg-startpos (line-beginning-position)))
;; skip over hanging continuation message lines
(while (progn (forward-line) (looking-at "^ ")))
(when (or (not file-name) (string= file-name msg-file-name))
(let ((inhibit-read-only t))
(set-text-properties msg-startpos (point) nil))
(delete-region msg-startpos (point))
))
t)))))
(defun haskell-interactive-mode-visit-error ()
"Visit the buffer of the current (or last) error message."
(interactive)
(with-current-buffer (haskell-session-interactive-buffer (haskell-session))
(if (progn (goto-char (line-beginning-position))
(looking-at haskell-interactive-mode-error-regexp))
(progn (forward-line -1)
(haskell-interactive-jump-to-error-line))
(progn (goto-char (point-max))
(haskell-interactive-mode-error-backward)
(haskell-interactive-jump-to-error-line)))))
;;;###autoload
(defun haskell-interactive-mode-reset-error (session)
"Reset the error cursor position."
(interactive)
(with-current-buffer (haskell-session-interactive-buffer session)
(haskell-interactive-mode-goto-end-point)
(let ((mrk (point-marker)))
(haskell-session-set session 'next-error-locus nil)
(haskell-session-set session 'next-error-region (cons mrk (copy-marker mrk t))))
(goto-char (point-max))))
(defun haskell-interactive-kill ()
"Kill the buffer and (maybe) the session."
(interactive)
(when (eq major-mode 'haskell-interactive-mode)
(when (and (boundp 'haskell-session)
haskell-session
(y-or-n-p "Kill the whole session?"))
(haskell-session-kill t))))
(add-hook 'kill-buffer-hook 'haskell-interactive-kill)
(provide 'haskell-interactive-mode)
;; Local Variables:
;; byte-compile-warnings: (not cl-functions)
;; End:
;;; haskell-interactive-mode.el ends here