1 ;;; factor.el --- Interacting with Factor within emacs
3 ;; Authors: Eduardo Cavazos <wayo.cavazos@gmail.com>
4 ;; Jose A Ortega Ruiz <jao@gnu.org>
11 ;; Add these lines to your .emacs file:
13 ;; (load-file "/scratch/repos/Factor/misc/factor.el")
14 ;; (setq factor-binary "/scratch/repos/Factor/factor")
15 ;; (setq factor-image "/scratch/repos/Factor/factor.image")
17 ;; Of course, you'll have to edit the directory paths for your system
18 ;; accordingly. Alternatively, put this file in your load-path and use
22 ;; instead of load-file.
24 ;; That's all you have to do to "install" factor.el on your
25 ;; system. Whenever you edit a factor file, Emacs will know to switch
28 ;; For further customization options,
29 ;; M-x customize-group RET factor
31 ;; To start a Factor listener inside Emacs,
47 (defcustom factor-default-indent-width
4
48 "Default indentantion width for factor-mode.
50 This value will be used for the local variable
51 `factor-indent-width' in new factor buffers. For existing code,
52 we first check if `factor-indent-width' is set explicitly in a
53 local variable section or line (e.g. '! -*- factor-indent-witdth: 2 -*-').
54 If that's not the case, `factor-mode' tries to infer its correct
55 value from the existing code in the buffer."
59 (defcustom factor-binary
"~/factor/factor"
60 "Full path to the factor executable to use when starting a listener."
61 :type
'(file :must-match t
)
64 (defcustom factor-image
"~/factor/factor.image"
65 "Full path to the factor image to use when starting a listener."
66 :type
'(file :must-match t
)
69 (defcustom factor-use-doc-window t
70 "When on, use a separate window to display help information.
71 Disable to see that information in the factor-listener comint
76 (defcustom factor-listener-use-other-window t
77 "Use a window other than the current buffer's when switching to
78 the factor-listener buffer."
82 (defcustom factor-listener-window-allow-split t
83 "Allow window splitting when switching to the factor-listener
88 (defcustom factor-help-always-ask t
89 "When enabled, always ask for confirmation in help prompts."
93 (defcustom factor-help-use-minibuffer t
94 "When enabled, use the minibuffer for short help messages."
98 (defcustom factor-display-compilation-output t
99 "Display the REPL buffer before compiling files."
103 (defcustom factor-mode-hook nil
104 "Hook run when entering Factor mode."
108 (defcustom factor-help-mode-hook nil
109 "Hook run by `factor-help-mode'."
113 (defgroup factor-faces nil
114 "Faces used in Factor mode"
118 (defface factor-font-lock-parsing-word
(face-default-spec font-lock-keyword-face
)
119 "Face for parsing words."
120 :group
'factor-faces
)
122 (defface factor-font-lock-declaration
(face-default-spec font-lock-keyword-face
)
123 "Face for declaration words (inline, parsing ...)."
124 :group
'factor-faces
)
126 (defface factor-font-lock-comment
(face-default-spec font-lock-comment-face
)
128 :group
'factor-faces
)
130 (defface factor-font-lock-string
(face-default-spec font-lock-string-face
)
132 :group
'factor-faces
)
134 (defface factor-font-lock-stack-effect
(face-default-spec font-lock-comment-face
)
135 "Face for stack effect specifications."
136 :group
'factor-faces
)
138 (defface factor-font-lock-word-definition
(face-default-spec font-lock-function-name-face
)
139 "Face for word, generic or method being defined."
140 :group
'factor-faces
)
142 (defface factor-font-lock-symbol-definition
(face-default-spec font-lock-variable-name-face
)
143 "Face for name of symbol being defined."
144 :group
'factor-faces
)
146 (defface factor-font-lock-vocabulary-name
(face-default-spec font-lock-constant-face
)
147 "Face for names of vocabularies in USE or USING."
148 :group
'factor-faces
)
150 (defface factor-font-lock-type-definition
(face-default-spec font-lock-type-face
)
151 "Face for type (tuple) names."
152 :group
'factor-faces
)
154 (defface factor-font-lock-constructor
(face-default-spec font-lock-type-face
)
155 "Face for constructors (<foo>)."
156 :group
'factor-faces
)
158 (defface factor-font-lock-setter-word
(face-default-spec font-lock-function-name-face
)
159 "Face for setter words (>>foo)."
160 :group
'factor-faces
)
162 (defface factor-font-lock-parsing-word
(face-default-spec font-lock-keyword-face
)
163 "Face for parsing words."
164 :group
'factor-faces
)
166 (defface factor-font-lock-help-mode-headlines
'((t (:bold t
:weight bold
)))
167 "Face for headlines in help buffers."
168 :group
'factor-faces
)
172 (when (not (fboundp 'ring-member
))
173 (defun ring-member (ring item
)
175 (dotimes (ind (ring-length ring
) nil
)
176 (when (equal item
(ring-ref ring ind
))
177 (throw 'found ind
))))))
180 ;;; Factor mode font lock:
182 (defconst factor--parsing-words
183 '("{" "}" "^:" "^::" ";" "<<" "<PRIVATE" ">>"
184 "BIN:" "BV{" "B{" "C:" "C-STRUCT:" "C-UNION:" "CHAR:" "CS{" "C{"
185 "DEFER:" "ERROR:" "EXCLUDE:" "FORGET:"
186 "GENERIC#" "GENERIC:" "HEX:" "HOOK:" "H{"
187 "IN:" "INSTANCE:" "INTERSECTION:"
188 "M:" "MACRO:" "MACRO::" "MAIN:" "MATH:" "METHOD:" "MIXIN:"
189 "OCT:" "POSTPONE:" "PREDICATE:" "PRIMITIVE:" "PRIVATE>" "PROVIDE:"
190 "REQUIRE:" "REQUIRES:" "SINGLETON:" "SLOT:" "SYMBOL:" "SYMBOLS:"
191 "TUPLE:" "T{" "t\\??" "TYPEDEF:"
192 "UNION:" "USE:" "USING:" "V{" "VARS:" "W{"))
194 (defconst factor--regex-parsing-words-ext
195 (regexp-opt '("B" "call-next-method" "delimiter" "f" "initial:" "read-only")
198 (defconst factor--declaration-words
199 '("flushable" "foldable" "inline" "parsing" "recursive"))
201 (defconst factor--regex-declaration-words
202 (regexp-opt factor--declaration-words
'words
))
204 (defsubst factor--regex-second-word
(prefixes)
205 (format "^%s +\\([^ \r\n]+\\)" (regexp-opt prefixes t
)))
207 (defconst factor--regex-method-definition
208 "^M: +\\([^ ]+\\) +\\([^ ]+\\)")
210 (defconst factor--regex-word-definition
211 (factor--regex-second-word '(":" "::" "GENERIC:")))
213 (defconst factor--regex-type-definition
214 (factor--regex-second-word '("TUPLE:" "SINGLETON:")))
216 (defconst factor--regex-parent-type
"^TUPLE: +[^ ]+ +< +\\([^ ]+\\)")
218 (defconst factor--regex-constructor
"<[^ >]+>")
220 (defconst factor--regex-setter
"\\W>>[^ ]+\\b")
222 (defconst factor--regex-symbol-definition
223 (factor--regex-second-word '("SYMBOL:" "VAR:")))
225 (defconst factor--regex-stack-effect
" ( .* )")
227 (defconst factor--regex-using-lines
"^USING: +\\(\\([^;]\\|[\n\r\f]\\)*\\);")
229 (defconst factor--regex-use-line
"^USE: +\\(.*\\)$")
231 (defconst factor--font-lock-keywords
232 `((,factor--regex-stack-effect .
'factor-font-lock-stack-effect
)
233 ("\\(P\\|SBUF\\)\"" 1 'factor-font-lock-parsing-word
)
234 ,@(mapcar #'(lambda (w) (cons (concat "\\(^\\| \\)\\(" w
"\\)\\($\\| \\)")
235 '(2 'factor-font-lock-parsing-word
)))
236 factor--parsing-words
)
237 (,factor--regex-parsing-words-ext .
'factor-font-lock-parsing-word
)
238 (,factor--regex-declaration-words
1 'factor-font-lock-declaration
)
239 (,factor--regex-word-definition
2 'factor-font-lock-word-definition
)
240 (,factor--regex-type-definition
2 'factor-font-lock-type-definition
)
241 (,factor--regex-method-definition
(1 'factor-font-lock-type-definition
)
242 (2 'factor-font-lock-word-definition
))
243 (,factor--regex-parent-type
1 'factor-font-lock-type-definition
)
244 (,factor--regex-constructor .
'factor-font-lock-constructor
)
245 (,factor--regex-setter .
'factor-font-lock-setter-word
)
246 (,factor--regex-symbol-definition
2 'factor-font-lock-symbol-definition
)
247 (,factor--regex-use-line
1 'factor-font-lock-vocabulary-name
))
248 "Font lock keywords definition for Factor mode.")
251 ;;; Factor mode syntax:
253 (defconst factor--regex-definition-starters
254 (regexp-opt '("VARS" "TUPLE" "MACRO" "MACRO:" "M" ":" "")))
256 (defconst factor--regex-definition-start
257 (format "^\\(%s:\\) " factor--regex-definition-starters
))
259 (defconst factor--regex-definition-end
260 (format "\\(;\\( +%s\\)*\\)" factor--regex-declaration-words
))
262 (defconst factor--font-lock-syntactic-keywords
263 `(("\\(#!\\)" (1 "<"))
266 ("\\(!(\\) .* \\()\\)" (1 "<") (2 ">"))))
268 (defvar factor-mode-syntax-table nil
269 "Syntax table used while in Factor mode.")
271 (if factor-mode-syntax-table
274 (setq factor-mode-syntax-table
(make-syntax-table))
276 ;; Default is atom-constituent
278 (modify-syntax-entry i
"_ " factor-mode-syntax-table
)
284 (modify-syntax-entry i
"w " factor-mode-syntax-table
)
288 (modify-syntax-entry i
"w " factor-mode-syntax-table
)
292 (modify-syntax-entry i
"w " factor-mode-syntax-table
)
296 (modify-syntax-entry ?
\t " " factor-mode-syntax-table
)
297 (modify-syntax-entry ?
\f " " factor-mode-syntax-table
)
298 (modify-syntax-entry ?
\r " " factor-mode-syntax-table
)
299 (modify-syntax-entry ?
" " factor-mode-syntax-table
)
302 (modify-syntax-entry ?
\n ">" factor-mode-syntax-table
)
305 (modify-syntax-entry ?\
[ "(] " factor-mode-syntax-table
)
306 (modify-syntax-entry ?\
] ")[ " factor-mode-syntax-table
)
307 (modify-syntax-entry ?
{ "(} " factor-mode-syntax-table
)
308 (modify-syntax-entry ?
} "){ " factor-mode-syntax-table
)
310 (modify-syntax-entry ?\
( "()" factor-mode-syntax-table
)
311 (modify-syntax-entry ?\
) ")(" factor-mode-syntax-table
)
314 (modify-syntax-entry ?
\" "\"" factor-mode-syntax-table
)
315 (modify-syntax-entry ?
\\ "/" factor-mode-syntax-table
)))
320 (defun factor--beginning-of-symbol ()
321 "Move point to the beginning of the current symbol."
322 (while (eq (char-before) ?
:) (backward-char))
323 (skip-syntax-backward "w_"))
325 (defun factor--end-of-symbol ()
326 "Move point to the end of the current symbol."
327 (skip-syntax-forward "w_")
328 (while (looking-at ":") (forward-char)))
330 (put 'factor-symbol
'end-op
'factor--end-of-symbol
)
331 (put 'factor-symbol
'beginning-op
'factor--beginning-of-symbol
)
333 (defsubst factor--symbol-at-point
()
334 (let ((s (substring-no-properties (thing-at-point 'factor-symbol
))))
335 (and (> (length s
) 0) s
)))
338 ;;; Factor mode indentation:
340 (make-variable-buffer-local
341 (defvar factor-indent-width factor-default-indent-width
342 "Indentation width in factor buffers. A local variable."))
344 (defun factor--guess-indent-width ()
345 "Chooses an indentation value from existing code."
346 (let ((word-cont "^ +[^ ]")
349 (beginning-of-buffer)
351 (if (not (re-search-forward factor--regex-definition-start nil t
))
352 (setq iw factor-default-indent-width
)
354 (when (looking-at word-cont
)
355 (setq iw
(current-indentation))))))
358 (defsubst factor--ppss-brackets-depth
()
359 (nth 0 (syntax-ppss)))
361 (defsubst factor--ppss-brackets-start
()
362 (nth 1 (syntax-ppss)))
364 (defun factor--ppss-brackets-end ()
366 (goto-char (factor--ppss-brackets-start))
368 (progn (forward-sexp)
372 (defsubst factor--indentation-at
(pos)
373 (save-excursion (goto-char pos
) (current-indentation)))
375 (defsubst factor--at-first-char-p
()
376 (= (- (point) (line-beginning-position)) (current-indentation)))
378 (defconst factor--regex-single-liner
379 (format "^%s" (regexp-opt '("DEFER:" "GENERIC:" "IN:"
380 "PRIVATE>" "<PRIVATE"
381 "SINGLETON:" "SYMBOL:" "USE:" "VAR:"))))
383 (defconst factor--regex-begin-of-def
384 (format "^USING: \\|\\(%s\\)\\|\\(%s .*\\)"
385 factor--regex-definition-start
386 factor--regex-single-liner
))
388 (defconst factor--regex-end-of-def-line
389 (format "^.*%s" factor--regex-definition-end
))
391 (defconst factor--regex-end-of-def
392 (format "\\(%s\\)\\|\\(%s .*\\)"
393 factor--regex-end-of-def-line
394 factor--regex-single-liner
))
396 (defsubst factor--at-begin-of-def
()
397 (looking-at factor--regex-begin-of-def
))
399 (defsubst factor--at-end-of-def
()
400 (looking-at factor--regex-end-of-def
))
402 (defsubst factor--looking-at-emptiness
()
403 (looking-at "^[ \t]*$"))
405 (defun factor--at-setter-line ()
408 (if (not (factor--looking-at-emptiness))
409 (re-search-forward factor--regex-setter
(line-end-position) t
)
411 (or (factor--at-constructor-line)
412 (factor--at-setter-line)))))
414 (defun factor--at-constructor-line ()
417 (re-search-forward factor--regex-constructor
(line-end-position) t
)))
419 (defsubst factor--increased-indentation
(&optional i
)
420 (+ (or i
(current-indentation)) factor-indent-width
))
421 (defsubst factor--decreased-indentation
(&optional i
)
422 (- (or i
(current-indentation)) factor-indent-width
))
424 (defun factor--indent-in-brackets ()
427 (when (> (factor--ppss-brackets-depth) 0)
428 (let ((op (factor--ppss-brackets-start))
429 (cl (factor--ppss-brackets-end))
430 (ln (line-number-at-pos)))
431 (when (> ln
(line-number-at-pos op
))
432 (if (and (> cl
0) (= ln
(line-number-at-pos cl
)))
433 (factor--indentation-at op
)
434 (factor--increased-indentation (factor--indentation-at op
))))))))
436 (defun factor--indent-definition ()
439 (when (factor--at-begin-of-def) 0)))
441 (defun factor--indent-setter-line ()
442 (when (factor--at-setter-line)
444 (let ((indent (and (factor--at-constructor-line) (current-indentation))))
445 (while (not (or indent
447 (factor--at-begin-of-def)
448 (factor--at-end-of-def)))
449 (if (factor--at-constructor-line)
450 (setq indent
(factor--increased-indentation))
454 (defun factor--indent-continuation ()
457 (while (and (not (bobp)) (factor--looking-at-emptiness))
459 (if (or (factor--at-end-of-def) (factor--at-setter-line))
460 (factor--decreased-indentation)
461 (if (and (factor--at-begin-of-def)
462 (not (looking-at factor--regex-using-lines
)))
463 (factor--increased-indentation)
464 (current-indentation)))))
466 (defun factor--calculate-indentation ()
467 "Calculate Factor indentation for line at point."
469 (factor--indent-definition)
470 (factor--indent-in-brackets)
471 (factor--indent-setter-line)
472 (factor--indent-continuation)
475 (defun factor--indent-line ()
476 "Indent current line as Factor code"
477 (let ((target (factor--calculate-indentation))
478 (pos (- (point-max) (point))))
479 (if (= target
(current-indentation))
480 (if (< (current-column) (current-indentation))
481 (back-to-indentation))
483 (delete-horizontal-space)
485 (if (> (- (point-max) pos
) (point))
486 (goto-char (- (point-max) pos
))))))
490 (defvar factor-mode-map
(make-sparse-keymap)
491 "Key map used by Factor mode.")
493 (defsubst factor--beginning-of-defun
(&optional times
)
494 (re-search-backward factor--regex-begin-of-def nil t times
))
496 (defsubst factor--end-of-defun
()
497 (re-search-forward factor--regex-end-of-def nil t
))
500 (defun factor-mode ()
501 "A mode for editing programs written in the Factor programming language.
504 (kill-all-local-variables)
505 (use-local-map factor-mode-map
)
506 (setq major-mode
'factor-mode
)
507 (setq mode-name
"Factor")
509 (set (make-local-variable 'comment-start
) "! ")
510 (set (make-local-variable 'parse-sexp-lookup-properties
) t
)
511 (set (make-local-variable 'font-lock-comment-face
) 'factor-font-lock-comment
)
512 (set (make-local-variable 'font-lock-string-face
) 'factor-font-lock-string
)
513 (set (make-local-variable 'font-lock-defaults
)
514 `(factor--font-lock-keywords
516 (font-lock-syntactic-keywords .
,factor--font-lock-syntactic-keywords
)))
518 (set-syntax-table factor-mode-syntax-table
)
520 (set (make-local-variable 'beginning-of-defun-function
) 'factor--beginning-of-defun
)
521 (set (make-local-variable 'end-of-defun-function
) 'factor--end-of-defun
)
522 (set (make-local-variable 'open-paren-in-column-0-is-defun-start
) nil
)
524 (set (make-local-variable 'indent-line-function
) 'factor--indent-line
)
525 (setq factor-indent-width
(factor--guess-indent-width))
526 (setq indent-tabs-mode nil
)
528 (set (make-local-variable 'eldoc-documentation-function
) 'factor--eldoc
)
530 (run-hooks 'factor-mode-hook
))
532 (add-to-list 'auto-mode-alist
'("\\.factor\\'" . factor-mode
))
535 ;;; Factor listener mode:
538 (define-derived-mode factor-listener-mode comint-mode
"Factor Listener"
539 "Major mode for interacting with an inferior Factor listener process.
540 \\{factor-listener-mode-map}"
541 (set (make-local-variable 'comint-prompt-regexp
) "^( [^)]+ ) "))
543 (defvar factor--listener-buffer nil
544 "The buffer in which the Factor listener is running.")
546 (defun factor--listener-start-process ()
547 "Start an inferior Factor listener process, using
548 `factor-binary' and `factor-image'."
549 (setq factor--listener-buffer
550 (apply 'make-comint
"factor" (expand-file-name factor-binary
) nil
551 `("-run=listener" ,(format "-i=%s" (expand-file-name factor-image
)))))
552 (with-current-buffer factor--listener-buffer
553 (factor-listener-mode)))
555 (defun factor--listener-process (&optional start
)
556 (or (and (buffer-live-p factor--listener-buffer
)
557 (get-buffer-process factor--listener-buffer
))
559 (error "No running factor listener. Try M-x run-factor.")
560 (factor--listener-start-process)
561 (factor--listener-process t
))))
564 (defalias 'switch-to-factor
'run-factor
)
566 (defun run-factor (&optional arg
)
567 "Show the factor-listener buffer, starting the process if needed."
569 (let ((buf (process-buffer (factor--listener-process t
)))
570 (pop-up-windows factor-listener-window-allow-split
))
571 (if factor-listener-use-other-window
573 (switch-to-buffer buf
))))
575 (defun factor-telnet-to-port (port)
576 (interactive "nPort: ")
578 (make-comint-in-buffer "factor-telnet" nil
(cons "localhost" port
))))
580 (defun factor-telnet ()
582 (factor-telnet-to-port 9000))
584 (defun factor-telnet-factory ()
586 (factor-telnet-to-port 9010))
589 ;;; Factor listener interaction:
591 (defun factor--listener-send-cmd (cmd)
592 (let ((proc (factor--listener-process)))
594 (let* ((out (get-buffer-create "*factor messages*"))
595 (beg (with-current-buffer out
(goto-char (point-max)))))
596 (comint-redirect-send-command-to-process cmd out proc nil t
)
597 (with-current-buffer factor--listener-buffer
598 (while (not comint-redirect-completed
) (sleep-for 0 1)))
599 (with-current-buffer out
600 (split-string (buffer-substring-no-properties beg
(point-max))
601 "[\"\f\n\r\v]+" t
))))))
603 ;;;;; Current vocabulary:
604 (make-variable-buffer-local
605 (defvar factor--current-vocab nil
606 "Current vocabulary."))
608 (defconst factor--regexp-current-vocab
"^IN: +\\([^ \r\n\f]+\\)")
610 (defun factor--current-buffer-vocab ()
612 (when (or (re-search-backward factor--regexp-current-vocab nil t
)
613 (re-search-forward factor--regexp-current-vocab nil t
))
614 (setq factor--current-vocab
(match-string-no-properties 1)))))
616 (defun factor--current-listener-vocab ()
617 (car (factor--listener-send-cmd "USING: parser ; in get .")))
619 (defun factor--set-current-listener-vocab (&optional vocab
)
620 (factor--listener-send-cmd
621 (format "IN: %s" (or vocab
(factor--current-buffer-vocab))))
624 (defmacro factor--with-vocab
(vocab &rest body
)
625 (let ((current (make-symbol "current")))
626 `(let ((,current
(factor--current-listener-vocab)))
627 (factor--set-current-listener-vocab ,vocab
)
628 (prog1 (condition-case nil
(progn .
,body
) (error nil
))
629 (factor--set-current-listener-vocab ,current
)))))
631 (put 'factor--with-vocab
'lisp-indent-function
1)
633 ;;;;; Synchronous interaction:
635 (defsubst factor--listener-vocab-cmds
(cmds &optional vocab
)
636 (factor--with-vocab vocab
637 (mapcar #'factor--listener-send-cmd cmds
)))
639 (defsubst factor--listener-vocab-cmd
(cmd &optional vocab
)
640 (factor--with-vocab vocab
641 (factor--listener-send-cmd cmd
)))
644 ;;;;; Buffer cycling and docs
647 (defconst factor--cycle-endings
648 '(".factor" "-tests.factor" "-docs.factor"))
650 (defconst factor--regex-cycle-endings
651 (format "\\(.*?\\)\\(%s\\)$"
652 (regexp-opt factor--cycle-endings
)))
654 (defconst factor--cycle-endings-ring
655 (let ((ring (make-ring (length factor--cycle-endings
))))
656 (dolist (e factor--cycle-endings ring
)
657 (ring-insert ring e
))))
659 (defun factor--cycle-next (file)
660 (let* ((match (string-match factor--regex-cycle-endings file
))
661 (base (and match
(match-string-no-properties 1 file
)))
662 (ending (and match
(match-string-no-properties 2 file
)))
663 (idx (and ending
(ring-member factor--cycle-endings-ring ending
)))
664 (gfl (lambda (i) (concat base
(ring-ref factor--cycle-endings-ring i
)))))
666 (let ((l (length factor--cycle-endings
)) (i 1) next
)
667 (while (and (not next
) (< i l
))
668 (when (file-exists-p (funcall gfl
(+ idx i
)))
669 (setq next
(+ idx i
)))
671 (funcall gfl
(or next idx
))))))
673 (defun factor-visit-other-file (&optional file
)
674 "Cycle between code, tests and docs factor files."
676 (find-file (factor--cycle-next (or file
(buffer-file-name)))))
681 (defconst factor--regex-error-marker
"^Type :help for debugging")
682 (defconst factor--regex-data-stack
"^--- Data stack:")
684 (defun factor--prune-ans-strings (ans)
689 (cond ((string-match factor--regex-stack-effect a
)
690 (throw 'done
(cons a res
)))
691 ((string-match factor--regex-data-stack a
)
693 ((string-match factor--regex-error-marker a
)
695 (t (push a res
))))))))
697 (defun factor--see-ans-to-string (ans)
698 (let ((s (mapconcat #'identity
(factor--prune-ans-strings ans
) " "))
699 (font-lock-verbose nil
))
700 (and (> (length s
) 0)
704 (font-lock-fontify-buffer)
707 (defun factor--see-current-word (&optional word
)
708 (let ((word (or word
(factor--symbol-at-point))))
710 (let ((answer (factor--listener-send-cmd (format "\\ %s see" word
))))
711 (and answer
(factor--see-ans-to-string answer
))))))
713 (defalias 'factor--eldoc
'factor--see-current-word
)
715 (defun factor-see-current-word (&optional word
)
716 "Echo in the minibuffer information about word at point."
718 (let* ((proc (factor--listener-process))
719 (word (or word
(factor--symbol-at-point)))
720 (msg (factor--see-current-word word
)))
721 (if msg
(message "%s" msg
)
722 (if word
(message "No help found for '%s'" word
)
723 (message "No word at point")))))
726 (defun factor-run-file ()
728 (when (and (buffer-modified-p)
729 (y-or-n-p (format "Save file %s? " (buffer-file-name))))
731 (when factor-display-compilation-output
732 (factor-display-output-buffer))
733 (comint-send-string "*factor*" (format "\"%s\"" (buffer-file-name)))
734 (comint-send-string "*factor*" " run-file\n"))
736 (defun factor-display-output-buffer ()
737 (with-current-buffer "*factor*"
738 (goto-char (point-max))
739 (unless (get-buffer-window (current-buffer) t
)
740 (display-buffer (current-buffer) t
))))
742 (defun factor-send-string (str)
743 (let ((n (length (split-string str
"\n"))))
745 (set-buffer "*factor*")
746 (goto-char (point-max))
747 (if (> n
1) (newline))
749 (comint-send-input))))
751 (defun factor-send-region (start end
)
753 (let ((str (buffer-substring start end
))
754 (n (count-lines start end
)))
756 (set-buffer "*factor*")
757 (goto-char (point-max))
758 (if (> n
1) (newline))
760 (comint-send-input))))
762 (defun factor-send-definition ()
764 (factor-send-region (search-backward ":")
765 (search-forward ";")))
767 (defun factor-edit ()
769 (comint-send-string "*factor*" "\\ ")
770 (comint-send-string "*factor*" (thing-at-point 'sexp
))
771 (comint-send-string "*factor*" " edit\n"))
773 (defun factor-clear ()
775 (factor-send-string "clear"))
777 (defun factor-comment-line ()
783 ;;;; Factor help mode:
785 (defvar factor-help-mode-map
(make-sparse-keymap)
786 "Keymap for Factor help mode.")
788 (defconst factor--help-headlines
789 (regexp-opt '("Definition"
791 "Generic word contract"
801 (defconst factor--help-headlines-regexp
(format "^%s" factor--help-headlines
))
803 (defconst factor--help-font-lock-keywords
804 `((,factor--help-headlines-regexp .
'factor-font-lock-help-mode-headlines
)
805 ,@factor--font-lock-keywords
))
807 (defun factor-help-mode ()
808 "Major mode for displaying Factor help messages.
809 \\{factor-help-mode-map}"
811 (kill-all-local-variables)
812 (use-local-map factor-help-mode-map
)
813 (setq mode-name
"Factor Help")
814 (setq major-mode
'factor-help-mode
)
815 (set (make-local-variable 'font-lock-defaults
)
816 '(factor--help-font-lock-keywords t nil nil nil
))
817 (set (make-local-variable 'comint-redirect-subvert-readonly
) t
)
818 (set (make-local-variable 'comint-redirect-echo-input
) nil
)
819 (set (make-local-variable 'view-no-disable-on-exit
) t
)
821 (setq view-exit-action
823 ;; Use `with-current-buffer' to make sure that `bury-buffer'
824 ;; also removes BUFFER from the selected window.
825 (with-current-buffer buffer
827 (run-mode-hooks 'factor-help-mode-hook
))
829 (defun factor--listener-help-buffer ()
830 (with-current-buffer (get-buffer-create "*factor-help*")
831 (let ((inhibit-read-only t
)) (erase-buffer))
835 (defvar factor--help-history nil
)
837 (defun factor--listener-show-help (&optional see
)
838 (let* ((proc (factor--listener-process))
839 (def (factor--symbol-at-point))
840 (prompt (format "See%s help on%s: " (if see
" short" "")
841 (if def
(format " (%s)" def
) "")))
842 (ask (or (not (eq major-mode
'factor-mode
))
844 factor-help-always-ask
))
845 (cmd (format "\\ %s %s"
846 (if ask
(read-string prompt nil
'factor--help-history def
) def
)
847 (if see
"see" "help")))
848 (hb (factor--listener-help-buffer)))
849 (comint-redirect-send-command-to-process cmd hb proc nil
)
851 (beginning-of-buffer hb
)))
853 ;;;; Interface: see/help commands
855 (defun factor-see (&optional arg
)
856 "See a help summary of symbol at point.
857 By default, the information is shown in the minibuffer. When
858 called with a prefix argument, the information is displayed in a
859 separate help buffer."
861 (if (if factor-help-use-minibuffer
(not arg
) arg
)
862 (factor-see-current-word)
863 (factor--listener-show-help t
)))
865 (defun factor-help ()
866 "Show extended help about the symbol at point, using a help
869 (factor--listener-show-help))
873 (defun factor-refresh-all ()
874 "Reload source files and documentation for all loaded
875 vocabularies which have been modified on disk."
877 (comint-send-string "*factor*" "refresh-all\n"))
882 (defun factor--define-key (key cmd
&optional both
)
883 (let ((ms (list factor-mode-map
)))
884 (when both
(push factor-help-mode-map ms
))
886 (define-key m
(vector '(control ?c
) key
) cmd
)
887 (define-key m
(vector '(control ?c
) `(control ,key
)) cmd
))))
889 (defun factor--define-auto-indent-key (key)
890 (define-key factor-mode-map
(vector key
)
893 (self-insert-command n
)
894 (indent-for-tab-command))))
896 (factor--define-key ?f
'factor-run-file
)
897 (factor--define-key ?r
'factor-send-region
)
898 (factor--define-key ?d
'factor-send-definition
)
899 (factor--define-key ?s
'factor-see t
)
900 (factor--define-key ?e
'factor-edit
)
901 (factor--define-key ?z
'switch-to-factor t
)
902 (factor--define-key ?o
'factor-visit-other-file
)
903 (factor--define-key ?c
'comment-region
)
905 (factor--define-auto-indent-key ?\
])
906 (factor--define-auto-indent-key ?\
})
908 (define-key factor-mode-map
"\C-ch" 'factor-help
)
909 (define-key factor-help-mode-map
"\C-ch" 'factor-help
)
910 (define-key factor-mode-map
"\C-m" 'newline-and-indent
)
912 (define-key factor-listener-mode-map
[f8] 'factor-refresh-all)
917 ;;; factor.el ends here