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
|
;;; racket-util.el -*- lexical-binding: t -*-
;; Copyright (c) 2013-2025 by Greg Hendershott.
;; Portions Copyright (C) 1985-1986, 1999-2013 Free Software Foundation, Inc.
;; Author: Greg Hendershott
;; URL: https://github.com/greghendershott/racket-mode
;; SPDX-License-Identifier: GPL-3.0-or-later
(require 'project)
(require 'subr-x)
(require 'racket-custom)
(defun racket--easy-keymap-define (spec)
"Make a sparse keymap with the bindings in SPEC.
SPEC is
(list (list KEY-OR-KEYS DEF) ...)
KEY-OR-KEYs is either a single key, or, as a convenience when
multiple keys bind to the same command, a list of keys.
Each key is either a string, which transformed by `kbd' before
being given to `define-key', or another value given directly to
`define-key'. An example of the latter is [remap command-name].
DEF is the same as DEF for `define-key'."
(let ((m (make-sparse-keymap)))
(mapc (lambda (x)
(let ((keys (if (listp (car x))
(car x)
(list (car x))))
(def (cadr x)))
(mapc (lambda (key)
(define-key m
(if (stringp key)
(kbd key)
key)
def))
keys)))
spec)
m))
(defun racket--buffer-file-name (&optional no-replace-slash)
"Like `buffer-file-name' but adjusted for use outside Emacs.
Always a non-propertized string.
When on Windows and unless NO-REPLACE-SLASH is not nil, replaces
back slashes with forward slashes. Emacs uses forward slashes for
buffer file names even on Windows, so we need to \"reverse\"
this to use the names with shell programs or a Racket back end."
(let ((v (and (buffer-file-name)
(substring-no-properties (buffer-file-name)))))
(if (and racket--winp
(not no-replace-slash))
(subst-char-in-string ?\\ ?/ v)
v)))
(defun racket--save-if-changed ()
(racket--assert-edit-mode)
(when (or (buffer-modified-p)
(and (buffer-file-name)
(not (file-exists-p (buffer-file-name)))))
(save-buffer)))
(defun racket--mode-edits-racket-p ()
"Return non-nil if the current major mode is one that edits Racket code.
This is intended to be used with commands that customize their
behavior based on whether they are editing Racket, such as
Paredit bindings, without each of those commands needing to have
a list of all modes in which Racket is edited."
(memq major-mode '(racket-mode racket-repl-mode)))
(defun racket--take-while (xs pred)
(pcase xs
(`() `())
(`(,x . ,xs) (if (funcall pred x)
(cons x (racket--take-while xs pred))
`()))))
(defconst racket--el-source-dir
(file-name-directory (or load-file-name (racket--buffer-file-name)))
"Path to dir of our Emacs Lisp source files.
When installed as a package, this can be found from the variable
`load-file-name'. When developing interactively, get it from the
.el buffer file name.")
(defvar racket--rkt-source-dir
(expand-file-name "./racket/" racket--el-source-dir)
"Path to dir of our Racket source files. ")
(defun racket--restoring-current-buffer (proc)
"Return a procedure restoring `current-buffer' during the dynamic extent of PROC."
(let ((buf (current-buffer)))
(lambda (&rest args)
(with-current-buffer buf
(apply proc args)))))
(defun racket--non-empty-string-p (v)
(and (stringp v) (not (string-blank-p v))))
(defun racket-project-root (file)
"Given an absolute pathname for FILE, return its project root directory.
The \"project\" is determined by trying, in order:
- `projectile-project-root', if that exists
- `project-current'
- `file-name-directory'"
(let ((dir (if (and (stringp file)
(file-exists-p file))
(file-name-directory file)
default-directory)))
(or (and (fboundp 'projectile-project-root)
(projectile-project-root dir))
(when-let (pr (project-current nil dir))
;; In newer Emacs `project-root' is defined; `project-roots'
;; is deprecated (and someday may disappear). We check both
;; with `fboundp' here, in order to work correctly and to
;; please byte compiler on older, current, and future
;; versions of Emacs.
(cond ((fboundp 'project-root) (project-root pr))
((fboundp 'project-roots) (car (project-roots pr)))))
dir)))
(defun racket--edit-mode-p ()
(and (seq-some #'derived-mode-p '(racket-mode racket-hash-lang-mode)) t))
(defun racket--assert-edit-mode (&optional fail-thunk)
(unless (racket--edit-mode-p)
(when fail-thunk (funcall fail-thunk))
(user-error "%S works only in racket-mode or racket-hash-lang-mode edit buffers"
this-command)))
(defun racket--assert-edit-or-repl-mode (&optional fail-thunk)
(unless (or (racket--edit-mode-p)
(derived-mode-p 'racket-repl-mode))
(when fail-thunk (funcall fail-thunk))
(user-error "%S works only in racket-mode or racket-hash-lang-mode edit buffers, or racket-repl-mode buffers"
this-command)))
;; Avoid circular require
(declare-function racket-hash-lang-forward-sexp "racket-hash-lang" (&optional arg))
(defun racket--sexp-edit-mode-p ()
"Either `racket-mode' or `racket-hash-lang-mode', provided the
latter has /not/ set the variable `forward-sexp-function' because
the hash-lang uses racket-grouping-position. In other words, when
`forward-sexp-function' is nil we may assume that the lang uses
s-expressions."
(and (racket--edit-mode-p)
(not (equal forward-sexp-function #'racket-hash-lang-forward-sexp))))
(defun racket--assert-sexp-edit-mode ()
(unless (racket--sexp-edit-mode-p)
(user-error "%S only works in racket-mode, or, racket-hash-lang-mode when the lang uses sexps"
this-command)))
;;; Mouse event posn (for context menus) as well as `point'.
(defun racket--menu-position ()
(ignore-errors
(posn-point (event-start (aref (this-command-keys-vector) 0)))))
(defun racket--point ()
(or (racket--menu-position)
(point)))
(defun racket--thing-at-point (thing &optional no-properties)
(if-let (pos (racket--menu-position))
(save-excursion
(goto-char pos)
(thing-at-point thing no-properties))
(thing-at-point thing no-properties)))
(defun racket--bounds-of-thing-at-point (thing)
(if-let (pos (racket--menu-position))
(save-excursion
(goto-char pos)
(bounds-of-thing-at-point thing))
(bounds-of-thing-at-point thing)))
(defun racket--symbol-at-point-or-prompt (force-prompt-p
prompt
&optional
completions
allow-blank-p)
"Return `racket-thing-at-point` symbol or prompt user.
When FORCE-PROMPT-P always prompt. The prompt uses
`read-from-minibuffer' when COMPLETIONS is nil, else
`completing-read'.
Returns `stringp' not `symbolp' to simplify using the result in a
sexpr that can be passed to Racket backend. Likewise the string
is trimmed and text properties are stripped.
Unless ALLOW-BLANK-P, a blank string after trimming returns nil
as if the user had C-g to quit."
(let ((sap (racket--thing-at-point 'symbol t)))
(if (or force-prompt-p
(not sap))
(let* ((s (if completions
(completing-read prompt completions nil nil sap)
(read-from-minibuffer prompt sap)))
(s (if s
(string-trim (substring-no-properties s))
s)))
(if (or (not s)
(and (not allow-blank-p) (string-blank-p s)))
nil
s))
sap)))
(defconst racket--f5-bindings
'(("<f5>" racket-run-and-switch-to-repl)
("M-C-<f5>" racket-racket)
("C-<f5>" racket-test))
"On the one hand, we want to allow `racket-mode-map' and
`racket-hash-lang-mode-map' to bind <f5> as a convenience for
users coming from DrRacket.
On the other hand, Emacs convention reserves <f5> for user
bindings. See issue #714.
On the third hand, we want to initialize the major mode's keymaps
with these, for use by doc/generate.el, to document the default
bindings.
Solution: Append these in the keymap initialization, and also
call `racket--polite-user-f-keys' in the major mode
initialization function. That adds/remove the binding based on
whether it would shadow an end user binding in the global map.")
(defun racket--polite-user-f-keys (major-mode-keymap keys+cmds)
"Politely bind/unbind KEYS+CMDS in MAJOR-MODE-KEYMAP."
(dolist (k+c keys+cmds)
(let ((key (kbd (car k+c)))
(cmd (cadr k+c)))
;; Avoid shadowing a binding user has made in the global map.
(if (lookup-key (current-global-map) key)
(define-key major-mode-keymap key nil)
;; Unless user has modified binding in major-mode-keymap,
;; restore our binding there.
(unless (lookup-key major-mode-keymap key)
(define-key major-mode-keymap key cmd))))))
(defun racket--file-name-slug (str)
"Change STR to a string that is a valid file name."
;; 2. But not leading or trailing ?-
(replace-regexp-in-string
(rx (or (seq bos (+ ?-))
(seq (+ ?-) eos)))
""
;; 1. Replace runs of anything that is not alnum with a single ?-.
(replace-regexp-in-string
(rx (+ (not (any alnum))))
"-"
str)))
(provide 'racket-util)
;; racket-util.el ends here
|