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
|
;;; racket-mode.el --- Racket editing, REPL, and more -*- lexical-binding: t; -*-
;; Copyright (c) 2013-2020 by Greg Hendershott.
;; Package: racket-mode
;; Package-Requires: ((emacs "25.1") (faceup "0.0.2") (pos-tip "20191127.1028"))
;; Author: Greg Hendershott
;; URL: https://www.racket-mode.com/
;; License:
;; This 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 2, or (at your option)
;; any later version. This 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. See
;; http://www.gnu.org/licenses/ for details.
;;; Commentary:
;; Goals:
;; - Focus on Racket lang.
;; - Follow DrRacket concepts where applicable.
;; - Thorough font-lock and indent.
;; - Compatible with Emacs 25.1+ and Racket 6.9+.
;;
;; Details: https://github.com/greghendershott/racket-mode
;;; Code:
(require 'racket-doc)
(require 'racket-edit)
(require 'racket-xp)
(require 'racket-custom)
(require 'racket-smart-open)
(require 'racket-imenu)
(require 'racket-profile)
(require 'racket-logger)
(require 'racket-stepper)
(require 'racket-repl)
(require 'racket-repl-buffer-name)
(require 'racket-collection)
(require 'racket-bug-report)
(require 'racket-util)
(require 'easymenu)
(defvar racket-mode-map
(racket--easy-keymap-define
'((("C-c C-c"
"C-c C-k") racket-run-module-at-point)
("C-c C-z" racket-repl)
("<f5>" racket-run-and-switch-to-repl)
("M-C-<f5>" racket-racket)
("C-<f5>" racket-test)
("C-c C-t" racket-test)
("C-c C-l" racket-logger)
("C-c C-o" racket-profile)
("M-C-x" racket-send-definition)
("C-x C-e" racket-send-last-sexp)
("C-c C-r" racket-send-region)
("C-c C-e f" racket-expand-file)
("C-c C-e x" racket-expand-definition)
("C-c C-e e" racket-expand-last-sexp)
("C-c C-e r" racket-expand-region)
("C-c C-x C-f" racket-open-require-path)
("TAB" indent-for-tab-command)
("M-C-u" racket-backward-up-list)
("C-c C-p" racket-cycle-paren-shapes)
("M-C-y" racket-insert-lambda)
("C-c C-d" racket-documentation-search)
("C-c C-f" racket-fold-all-tests)
("C-c C-u" racket-unfold-all-tests)
((")" "]" "}") racket-insert-closing)))
"Keymap for Racket mode.")
(easy-menu-define racket-mode-menu racket-mode-map
"Menu for Racket mode."
'("Racket"
("Run"
["in REPL" racket-run]
["in REPL and switch to REPL" racket-run-and-switch-to-repl]
["in *shell* using `racket`" racket-racket])
("Tests"
["in REPL" racket-test]
["in *shell* using `raco test`" racket-raco-test]
"---"
["Fold All" racket-fold-all-tests]
["Unfold All" racket-unfold-all-tests])
("Eval"
["Region" racket-send-region :active (region-active-p)]
["Definition" racket-send-definition]
["Last S-Expression" racket-send-last-sexp])
("Macro Expand"
["File" racket-expand-file]
["Region" racket-expand-region :active (region-active-p)]
["Definition" racket-expand-definition]
["Last S-Expression" racket-expand-last-sexp])
["Switch to REPL" racket-repl]
("Tools"
["Profile" racket-profile]
["Error Trace" racket-run-with-errortrace]
["Step Debug" racket-run-with-debugging]
["Toggle XP Mode" racket-xp-mode])
"---"
["Comment" comment-dwim]
["Insert λ" racket-insert-lambda]
["Indent Region" indent-region]
["Cycle Paren Shapes" racket-cycle-paren-shapes]
["Align" racket-align]
["Unalign" racket-unalign]
"---"
["Visit Module" xref-find-definitions]
["Return from Visit" xref-pop-marker-stack]
"---"
["Open Require Path" racket-open-require-path]
["Find Collection" racket-find-collection]
"---"
["Next Error or Link" next-error]
["Previous Error" previous-error]
"---"
["Tidy Requires" racket-tidy-requires]
["Trim Requires" racket-trim-requires]
["Use #lang racket/base" racket-base-requires]
"---"
["Start Faster" racket-mode-start-faster]
["Customize..." customize-mode]))
;;;###autoload
(define-derived-mode racket-mode prog-mode
"Racket"
"Major mode for editing Racket source files.
\\{racket-mode-map}"
(racket--common-variables)
(setq-local imenu-create-index-function #'racket-imenu-create-index-function)
(hs-minor-mode t)
(setq-local completion-at-point-functions (list #'racket-complete-at-point))
(setq-local eldoc-documentation-function nil)
(funcall (or (and (functionp racket-repl-buffer-name-function)
racket-repl-buffer-name-function)
#'racket-repl-buffer-name-shared))
(add-hook 'kill-buffer-hook
#'racket-mode-maybe-offer-to-kill-repl-buffer
nil t)
(add-hook 'xref-backend-functions
#'racket-mode-xref-backend-function
nil t))
;;;###autoload
(progn
;; Use simple regexps for auto-mode-alist as they may be given to
;; grep (e.g. by default implementation of `xref-find-references').
(add-to-list 'auto-mode-alist '("\\.rkt\\'" . racket-mode))
(add-to-list 'auto-mode-alist '("\\.rktd\\'" . racket-mode))
(add-to-list 'auto-mode-alist '("\\.rktl\\'" . racket-mode))
;; "Fancier" regexp OK here:
(modify-coding-system-alist 'file "\\.rkt[dl]?\\'" 'utf-8)
(add-to-list 'interpreter-mode-alist '("racket" . racket-mode)))
;;;###autoload
(defun racket-mode-start-faster ()
"Compile Racket Mode's .rkt files for faster startup.
Racket Mode is implemented as an Emacs Lisp \"front end\" that
talks to a Racket process \"back end\". Because Racket Mode is
delivered as an Emacs package instead of a Racket package,
installing it does not do the `raco setup` that is normally done
for Racket packages.
This command will do a `raco make` of Racket Mode's .rkt files,
creating bytecode files in `compiled/` subdirectories. As a
result, when a `racket-run' or `racket-repl' command must start
the Racket process, it will start faster.
If you run this command, ever, you should run it again after:
- Installing an updated version of Racket Mode. Otherwise, you
might lose some of the speed-up.
- Installing a new version of Racket and/or changing the value of
the variable `racket-program'. Otherwise, you might get an
error message due to the bytecode being different versions."
(interactive)
(let* ((racket (executable-find racket-program))
(rkts0 (expand-file-name "*.rkt" racket--rkt-source-dir) )
(rkts1 (expand-file-name "commands/*.rkt" racket--rkt-source-dir))
(command (format "%s -l raco make -v %s %s"
(shell-quote-wildcard-pattern racket)
(shell-quote-wildcard-pattern rkts0)
(shell-quote-wildcard-pattern rkts1)))
(prompt (format "Do `%s` " command)))
(when (y-or-n-p prompt)
(async-shell-command command))))
(defun racket-documentation-search ()
"Search documentation.
This command is useful in several situations:
- You are not using `racket-xp-mode' for a `racket-mode' edit
buffer, so `racket-xp-documentation' is not available.
- There is no `racket-repl-mode' buffer with a live namespace, so
`racket-repl-documentation' is not available or helpful.
- You want to search for definitions provided by all modules --
for example, the \"define\" syntax provided by racket/base, by
typed/racket/base, and by other modules, as well definitions or
topics that merely include \"define\".
This command does not try to go directly to the help topic for a
definition provided by any specific module. Instead it goes to
the Racket \"Search Manuals\" page."
(interactive)
(racket--doc '(16) nil nil))
;;; xref
;; Note that this backend will be ignored when `racket-xp-mode' minor
;; mode is active. This backend is a weak effort to do /something/ in
;; plain `racket-mode' edit buffers, without using the Racket Mode
;; back end process.
;;
;; Currently, aside from being able to visit relative require files,
;; it just suggests using `racket-xp-mode' to find definitions.
;;
;; As for finding references: We just use the default
;; `xref-backend-references' which greps within a project.
;; `racket-xp-mode' is better only for intra-file references found by
;; check-syntax; otherwise it defers to the same default, too.
(defun racket-mode-xref-backend-function ()
'racket-mode-xref)
(cl-defmethod xref-backend-identifier-at-point ((_backend (eql racket-mode-xref)))
(or (racket--module-path-name-at-point)
(thing-at-point 'symbol)))
(cl-defmethod xref-backend-identifier-completion-table ((_backend (eql racket-mode-xref)))
(completion-table-dynamic #'ignore))
(cl-defmethod xref-backend-definitions ((_backend (eql racket-mode-xref)) str)
(or (pcase (get-text-property 0 'racket-module-path str)
(`relative
(let ((path (expand-file-name (substring-no-properties str 1 -1))))
(list (xref-make str (xref-make-file-location path 1 0))))))
(list (xref-make str
(xref-make-bogus-location
"Cannot find definitions in plain `racket-mode'; see `racket-xp-mode'")))))
;; Use the default `xref-backend-references', which greps within a project.
;;; Commands that predate `racket-xp-mode'
(defun racket-doc ()
"Instead please use `racket-documentation-search', `racket-xp-documentation' or `racket-repl-documentation'.
See: <https://github.com/greghendershott/racket-mode/issues/439>"
(interactive)
(describe-function 'racket-doc))
(defun racket-describe ()
"Instead please use `racket-xp-describe' or `racket-repl-describe'.
See: <https://github.com/greghendershott/racket-mode/issues/439>"
(interactive)
(describe-function 'racket-describe))
;; See also `racket-visit-definition' alias in racket-visit.el
(provide 'racket-mode)
;;; racket-mode.el ends here
|