]> code.delx.au - gnu-emacs-elpa/blob - packages/sotlisp/sotlisp.el
Merge commit '68160bad14b031b069f30f1bd494ba4f252321c1'
[gnu-emacs-elpa] / packages / sotlisp / sotlisp.el
1 ;;; sotlisp.el --- Write lisp at the speed of thought. -*- lexical-binding: t; -*-
2
3 ;; Copyright (C) 2014, 2015 Free Software Foundation, Inc.
4
5 ;; Author: Artur Malabarba <emacs@endlessparentheses.com>
6 ;; URL: https://github.com/Malabarba/speed-of-thought-lisp
7 ;; Keywords: convenience, lisp
8 ;; Package-Requires: ((emacs "24.1"))
9 ;; Version: 1.5.1
10
11 ;; This program is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
15
16 ;; This program is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
23
24 ;;; Commentary:
25 ;;
26 ;; This defines a new global minor-mode `speed-of-thought-mode', which
27 ;; activates locally on any supported buffer. Currently, only
28 ;; `emacs-lisp-mode' buffers are supported.
29 ;;
30 ;; The mode is quite simple, and is composed of two parts:
31 ;;
32 ;;; Abbrevs
33 ;;
34 ;; A large number of abbrevs which expand function
35 ;; initials to their name. A few examples:
36 ;;
37 ;; - wcb -> with-current-buffer
38 ;; - i -> insert
39 ;; - r -> require '
40 ;; - a -> and
41 ;;
42 ;; However, these are defined in a way such that they ONLY expand in a
43 ;; place where you would use a function, so hitting SPC after "(r"
44 ;; expands to "(require '", but hitting SPC after "(delete-region r"
45 ;; will NOT expand the `r', because that's obviously not a function.
46 ;; Furtheromre, "#'r" will expand to "#'require" (note how it ommits
47 ;; that extra quote, since it would be useless here).
48 ;;
49 ;;; Commands
50 ;;
51 ;; It also defines 4 commands, which really fit into this "follow the
52 ;; thought-flow" way of writing. The bindings are as follows, I
53 ;; understand these don't fully adhere to conventions, and I'd
54 ;; appreciate suggestions on better bindings.
55 ;;
56 ;; - M-RET :: Break line, and insert "()" with point in the middle.
57 ;; - C-RET :: Do `forward-up-list', then do M-RET.
58 ;;
59 ;; Hitting RET followed by a `(' was one of the most common key sequences
60 ;; for me while writing elisp, so giving it a quick-to-hit key was a
61 ;; significant improvement.
62 ;;
63 ;; - C-c f :: Find function under point. If it is not defined, create a
64 ;; definition for it below the current function and leave point inside.
65 ;; - C-c v :: Same, but for variable.
66 ;;
67 ;; With these commands, you just write your code as you think of it. Once
68 ;; you hit a "stop-point" of sorts in your tought flow, you hit `C-c f/v`
69 ;; on any undefined functions/variables, write their definitions, and hit
70 ;; `C-u C-SPC` to go back to the main function.
71 ;;
72 ;;; Small Example
73 ;;
74 ;; With the above (assuming you use something like paredit or
75 ;; electric-pair-mode), if you write:
76 ;;
77 ;; ( w t b M-RET i SPC text
78 ;;
79 ;; You get
80 ;;
81 ;; (with-temp-buffer (insert text))
82
83 ;;; Code:
84
85 ;;; Predicates
86 (defun sotlisp--auto-paired-p ()
87 "Non-nil if this buffer auto-inserts parentheses."
88 (or (bound-and-true-p electric-pair-mode)
89 (bound-and-true-p paredit-mode)
90 (bound-and-true-p smartparens-mode)))
91
92 (defun sotlisp--looking-back (regexp)
93 (string-match
94 (concat regexp "\\'")
95 (buffer-substring (line-beginning-position) (point))))
96
97 (defun sotlisp--function-form-p ()
98 "Non-nil if point is at the start of a sexp.
99 Specially, avoids matching inside argument lists."
100 (and (eq (char-before) ?\()
101 (not (sotlisp--looking-back "(\\(defun\\s-+.*\\|\\(lambda\\|dolist\\|dotimes\\)\\s-+\\)("))
102 (save-excursion
103 (forward-char -1)
104 (condition-case er
105 (progn
106 (backward-up-list)
107 (forward-sexp -1)
108 (not
109 (looking-at-p (rx (* (or (syntax word) (syntax symbol) "-"))
110 "let" symbol-end))))
111 (error t)))
112 (not (string-match (rx (syntax symbol)) (string last-command-event)))))
113
114 (defun sotlisp--function-quote-p ()
115 "Non-nil if point is at a sharp-quote."
116 (ignore-errors
117 (save-excursion
118 (forward-char -2)
119 (looking-at-p "#'"))))
120
121 (defun sotlisp--code-p ()
122 (save-excursion
123 (let ((r (point)))
124 (beginning-of-defun)
125 (let ((pps (parse-partial-sexp (point) r)))
126 (not (or (elt pps 3)
127 (elt pps 4)))))))
128
129 (defun sotlisp--function-p ()
130 "Non-nil if point is at reasonable place for a function name.
131 Returns non-nil if, after moving backwards by a sexp, either
132 `sotlisp--function-form-p' or `sotlisp--function-quote-p' return
133 non-nil."
134 (save-excursion
135 (ignore-errors
136 (skip-chars-backward (rx alnum))
137 (and (sotlisp--code-p)
138 (or (sotlisp--function-form-p)
139 (sotlisp--function-quote-p))))))
140
141 (defun sotlisp--whitespace-p ()
142 "Non-nil if current `self-insert'ed char is whitespace."
143 (sotlisp--whitespace-char-p last-command-event))
144 (make-obsolete 'sotlisp--whitespace-p 'sotlisp--whitespace-char-p "1.2")
145
146 (defun sotlisp--whitespace-char-p (char)
147 "Non-nil if CHAR is has whitespace syntax."
148 (ignore-errors
149 (string-match (rx space) (string char))))
150
151 \f
152 ;;; Expansion logic
153 (defvar sotlisp--needs-moving nil
154 "Will `sotlisp--move-to-$' move point after insertion?")
155
156 (defun sotlisp--move-to-$ ()
157 "Move backwards until `$' and delete it.
158 Point is left where the `$' char was. Does nothing if variable
159 `sotlisp-mode' is nil."
160 (when (bound-and-true-p speed-of-thought-mode)
161 (when sotlisp--needs-moving
162 (setq sotlisp--needs-moving nil)
163 (skip-chars-backward "^\\$")
164 (delete-char -1))))
165
166 (add-hook 'post-command-hook #'sotlisp--move-to-$ 'append)
167
168 (defun sotlisp--maybe-skip-closing-paren ()
169 "Move past `)' if variable `electric-pair-mode' is enabled."
170 (when (and (char-after ?\))
171 (sotlisp--auto-paired-p))
172 (forward-char 1)))
173
174 (defun sotlisp--post-expansion-cleanup ()
175 "Do some processing conditioned on the expansion done.
176 If the command that triggered the expansion was a whitespace
177 char, perform the steps below and return t.
178
179 If the expansion ended in a $, delete it and call
180 `sotlisp--maybe-skip-closing-paren'.
181 If it ended in a space and there's a space ahead, delete the
182 space ahead."
183 ;; Inform `expand-abbrev' that `self-insert-command' should not
184 ;; trigger, by returning non-nil on SPC.
185 (when (sotlisp--whitespace-char-p last-command-event)
186 ;; And maybe move out of closing paren if expansion ends with $.
187 (if (eq (char-before) ?$)
188 (progn (delete-char -1)
189 (setq sotlisp--needs-moving nil)
190 (sotlisp--maybe-skip-closing-paren))
191 (when (and (sotlisp--whitespace-char-p (char-after))
192 (sotlisp--whitespace-char-p (char-before)))
193 (delete-char 1)))
194 t))
195
196 (defvar sotlisp--function-table (make-hash-table :test #'equal)
197 "Table where function abbrev expansions are stored.")
198
199 (defun sotlisp--expand-function ()
200 "Expand the function abbrev before point.
201 See `sotlisp-define-function-abbrev'."
202 (let ((r (point)))
203 (skip-chars-backward (rx alnum))
204 (let* ((name (buffer-substring (point) r))
205 (expansion (gethash name sotlisp--function-table)))
206 (if (not expansion)
207 (progn (goto-char r) nil)
208 (delete-region (point) r)
209 (if (sotlisp--function-quote-p)
210 ;; After #' use the simple expansion.
211 (insert (sotlisp--simplify-function-expansion expansion))
212 ;; Inside a form, use the full expansion.
213 (insert expansion)
214 (when (string-match "\\$" expansion)
215 (setq sotlisp--needs-moving t)))
216 ;; Must be last.
217 (sotlisp--post-expansion-cleanup)))))
218
219 (put 'sotlisp--expand-function 'no-self-insert t)
220
221 (defun sotlisp--simplify-function-expansion (expansion)
222 "Take a substring of EXPANSION up to first space.
223 The space char is not included. Any \"$\" are also removed."
224 (replace-regexp-in-string
225 "\\$" ""
226 (substring expansion 0 (string-match " " expansion))))
227
228 \f
229 ;;; Abbrev definitions
230 (defconst sotlisp--default-function-abbrevs
231 '(
232 ("a" . "and ")
233 ("ah" . "add-hook '")
234 ("atl" . "add-to-list '")
235 ("bb" . "bury-buffer")
236 ("bc" . "forward-char -1")
237 ("bfn" . "buffer-file-name")
238 ("bl" . "buffer-list$")
239 ("blp" . "buffer-live-p ")
240 ("bn" . "buffer-name")
241 ("bod" . "beginning-of-defun")
242 ("bol" . "forward-line 0$")
243 ("bp" . "boundp '")
244 ("bs" . "buffer-string$")
245 ("bsn" . "buffer-substring-no-properties")
246 ("bss" . "buffer-substring ")
247 ("bw" . "forward-word -1")
248 ("c" . "concat ")
249 ("ca" . "char-after$")
250 ("cb" . "current-buffer$")
251 ("cc" . "condition-case er\n$\n(error nil)")
252 ("ci" . "call-interactively ")
253 ("cip" . "called-interactively-p 'any")
254 ("csv" . "customize-save-variable '")
255 ("d" . "delete-char 1")
256 ("dc" . "delete-char 1")
257 ("dcu" . "defcustom $ t\n \"\"\n :type 'boolean")
258 ("df" . "defun $ ()\n \"\"\n ")
259 ("dfa" . "defface $ \n '((t))\n \"\"\n ")
260 ("dfc" . "defcustom $ t\n \"\"\n :type 'boolean")
261 ("dff" . "defface $ \n '((t))\n \"\"\n ")
262 ("dfv" . "defvar $ t\n \"\"")
263 ("dk" . "define-key ")
264 ("dl" . "dolist (it $)")
265 ("dt" . "dotimes (it $)")
266 ("dmp" . "derived-mode-p '")
267 ("dm" . "defmacro $ ()\n \"\"\n ")
268 ("dr" . "delete-region ")
269 ("dv" . "defvar $ t\n \"\"")
270 ("e" . "error \"$\"")
271 ("ef" . "executable-find ")
272 ("efn" . "expand-file-name ")
273 ("eol" . "end-of-line")
274 ("f" . "format \"$\"")
275 ("fb" . "fboundp '")
276 ("fbp" . "fboundp '")
277 ("fc" . "forward-char 1")
278 ("ff" . "find-file ")
279 ("fl" . "forward-line 1")
280 ("fp" . "functionp ")
281 ("frp" . "file-readable-p ")
282 ("fs" . "forward-sexp 1")
283 ("fu" . "funcall ")
284 ("fw" . "forward-word 1")
285 ("g" . "goto-char ")
286 ("gc" . "goto-char ")
287 ("gsk" . "global-set-key ")
288 ("i" . "insert ")
289 ("ie" . "ignore-errors ")
290 ("ii" . "interactive")
291 ("il" . "if-let (($))")
292 ("ir" . "indent-region ")
293 ("jcl" . "justify-current-line ")
294 ("jl" . "delete-indentation")
295 ("jos" . "just-one-space")
296 ("jr" . "json-read$")
297 ("jtr" . "jump-to-register ")
298 ("k" . "kbd \"$\"")
299 ("kb" . "kill-buffer")
300 ("kn" . "kill-new ")
301 ("kp" . "keywordp ")
302 ("l" . "lambda ($)")
303 ("la" . "looking-at \"$\"")
304 ("lap" . "looking-at-p \"$\"")
305 ("lb" . "looking-back \"$\"")
306 ("lbp" . "line-beginning-position")
307 ("lep" . "line-end-position")
308 ("let" . "let (($))")
309 ("lp" . "listp ")
310 ("m" . "message \"$%s\"")
311 ("mb" . "match-beginning 0")
312 ("mc" . "mapcar ")
313 ("mct" . "mapconcat ")
314 ("me" . "match-end 0")
315 ("ms" . "match-string 0")
316 ("msn" . "match-string-no-properties 0")
317 ("msnp" . "match-string-no-properties 0")
318 ("msp" . "match-string-no-properties 0")
319 ("mt" . "mapconcat ")
320 ("n" . "not ")
321 ("nai" . "newline-and-indent$")
322 ("nl" . "forward-line 1")
323 ("np" . "numberp ")
324 ("ntr" . "narrow-to-region ")
325 ("ow" . "other-window 1")
326 ("p" . "point$")
327 ("pm" . "point-marker$")
328 ("pa" . "point-max$")
329 ("pg" . "plist-get ")
330 ("pi" . "point-min$")
331 ("pz" . "propertize ")
332 ("r" . "require '")
333 ("ra" . "use-region-p$")
334 ("rap" . "use-region-p$")
335 ("rb" . "region-beginning")
336 ("re" . "region-end")
337 ("rh" . "remove-hook '")
338 ("rm" . "replace-match \"$\"")
339 ("ro" . "regexp-opt ")
340 ("rq" . "regexp-quote ")
341 ("rris" . "replace-regexp-in-string ")
342 ("rrs" . "replace-regexp-in-string ")
343 ("rs" . "while (search-forward $ nil t)\n(replace-match \"\") nil t)")
344 ("rsb" . "re-search-backward \"$\" nil 'noerror")
345 ("rsf" . "re-search-forward \"$\" nil 'noerror")
346 ("s" . "setq ")
347 ("sb" . "search-backward $ nil 'noerror")
348 ("sbr" . "search-backward-regexp $ nil 'noerror")
349 ("scb" . "skip-chars-backward \"$\\r\\n[:blank:]\"")
350 ("scf" . "skip-chars-forward \"$\\r\\n[:blank:]\"")
351 ("se" . "save-excursion")
352 ("sf" . "search-forward $ nil 'noerror")
353 ("sfr" . "search-forward-regexp $ nil 'noerror")
354 ("sic" . "self-insert-command")
355 ("sl" . "setq-local ")
356 ("sm" . "string-match \"$\"")
357 ("smd" . "save-match-data")
358 ("sn" . "symbol-name ")
359 ("sp" . "stringp ")
360 ("sq" . "string= ")
361 ("sr" . "save-restriction")
362 ("ss" . "substring ")
363 ("ssn" . "substring-no-properties ")
364 ("ssnp" . "substring-no-properties ")
365 ("stb" . "switch-to-buffer ")
366 ("sw" . "selected-window$")
367 ("syp" . "symbolp ")
368 ("tap" . "thing-at-point 'symbol")
369 ("tf" . "thread-first ")
370 ("tl" . "thread-last ")
371 ("u" . "unless ")
372 ("ul" . "up-list")
373 ("up" . "unwind-protect\n(progn $)")
374 ("urp" . "use-region-p$")
375 ("w" . "when ")
376 ("wcb" . "with-current-buffer ")
377 ("wf" . "write-file ")
378 ("wh" . "while ")
379 ("wl" . "when-let (($))")
380 ("we" . "window-end")
381 ("ws" . "window-start")
382 ("wsw" . "with-selected-window ")
383 ("wtb" . "with-temp-buffer")
384 ("wtf" . "with-temp-file ")
385 )
386 "Alist of (ABBREV . EXPANSION) used by `sotlisp'.")
387
388 (defun sotlisp-define-function-abbrev (name expansion)
389 "Define a function abbrev expanding NAME to EXPANSION.
390 This abbrev will only be expanded in places where a function name is
391 sensible. Roughly, this is right after a `(' or a `#''.
392
393 If EXPANSION is any string, it doesn't have to be the just the
394 name of a function. In particular:
395 - if it contains a `$', this char will not be inserted and
396 point will be moved to its position after expansion.
397 - if it contains a space, only a substring of it up to the
398 first space is inserted when expanding after a `#'' (this is done
399 by defining two different abbrevs).
400
401 For instance, if one defines
402 (sotlisp-define-function-abbrev \"d\" \"delete-char 1\")
403
404 then triggering `expand-abbrev' after \"d\" expands in the
405 following way:
406 (d => (delete-char 1
407 #'d => #'delete-char"
408 (define-abbrev emacs-lisp-mode-abbrev-table
409 name t #'sotlisp--expand-function
410 ;; Don't override user abbrevs
411 :system t
412 ;; Only expand in function places.
413 :enable-function #'sotlisp--function-p)
414 (puthash name expansion sotlisp--function-table))
415
416 (defun sotlisp-erase-all-abbrevs ()
417 "Undefine all abbrevs defined by `sotlisp'."
418 (interactive)
419 (maphash (lambda (x _) (define-abbrev emacs-lisp-mode-abbrev-table x nil))
420 sotlisp--function-table))
421
422 (defun sotlisp-define-all-abbrevs ()
423 "Define all abbrevs in `sotlisp--default-function-abbrevs'."
424 (interactive)
425 (mapc (lambda (x) (sotlisp-define-function-abbrev (car x) (cdr x)))
426 sotlisp--default-function-abbrevs))
427
428 \f
429 ;;; The global minor-mode
430 (defvar speed-of-thought-turn-on-hook '()
431 "Hook run once when `speed-of-thought-mode' is enabled.
432 Note that `speed-of-thought-mode' is global, so this is not run
433 on every buffer.
434
435 See `sotlisp-turn-on-everywhere' for an example of what a
436 function in this hook should do.")
437
438 (defvar speed-of-thought-turn-off-hook '()
439 "Hook run once when `speed-of-thought-mode' is disabled.
440 Note that `speed-of-thought-mode' is global, so this is not run
441 on every buffer.
442
443 See `sotlisp-turn-on-everywhere' for an example of what a
444 function in this hook should do.")
445
446 ;;;###autoload
447 (define-minor-mode speed-of-thought-mode
448 nil nil nil nil
449 :global t
450 (run-hooks (if speed-of-thought-mode
451 'speed-of-thought-turn-on-hook
452 'speed-of-thought-turn-off-hook)))
453
454 ;;;###autoload
455 (defun speed-of-thought-hook-in (on off)
456 "Add functions ON and OFF to `speed-of-thought-mode' hooks.
457 If `speed-of-thought-mode' is already on, call ON."
458 (add-hook 'speed-of-thought-turn-on-hook on)
459 (add-hook 'speed-of-thought-turn-off-hook off)
460 (when speed-of-thought-mode (funcall on)))
461
462 \f
463 ;;; The local minor-mode
464 (define-minor-mode sotlisp-mode
465 nil nil " SoT"
466 `(([M-return] . sotlisp-newline-and-parentheses)
467 ([C-return] . sotlisp-downlist-newline-and-parentheses)
468 (,(kbd "C-M-;") . ,(if (fboundp 'comment-or-uncomment-sexp)
469 #'comment-or-uncomment-sexp
470 #'sotlisp-comment-or-uncomment-sexp))
471 ("\C-cf" . sotlisp-find-or-define-function)
472 ("\C-cv" . sotlisp-find-or-define-variable)))
473
474 (defun sotlisp-turn-on-everywhere ()
475 "Call-once function to turn on sotlisp everywhere.
476 Calls `sotlisp-mode' on all `emacs-lisp-mode' buffers, and sets
477 up a hook and abbrevs."
478 (add-hook 'emacs-lisp-mode-hook #'sotlisp-mode)
479 (sotlisp-define-all-abbrevs)
480 (mapc (lambda (b)
481 (with-current-buffer b
482 (when (derived-mode-p 'emacs-lisp-mode)
483 (sotlisp-mode 1))))
484 (buffer-list)))
485
486 (defun sotlisp-turn-off-everywhere ()
487 "Call-once function to turn off sotlisp everywhere.
488 Removes `sotlisp-mode' from all `emacs-lisp-mode' buffers, and
489 removes hooks and abbrevs."
490 (remove-hook 'emacs-lisp-mode-hook #'sotlisp-mode)
491 (sotlisp-erase-all-abbrevs)
492 (mapc (lambda (b)
493 (with-current-buffer b
494 (when (derived-mode-p 'emacs-lisp-mode)
495 (sotlisp-mode -1))))
496 (buffer-list)))
497
498 (speed-of-thought-hook-in #'sotlisp-turn-on-everywhere #'sotlisp-turn-off-everywhere)
499
500 \f
501 ;;; Commands
502 (defun sotlisp-newline-and-parentheses ()
503 "`newline-and-indent' then insert a pair of parentheses."
504 (interactive)
505 (point)
506 (ignore-errors (expand-abbrev))
507 (newline-and-indent)
508 (insert "()")
509 (forward-char -1))
510
511 (defun sotlisp-downlist-newline-and-parentheses ()
512 "`up-list', `newline-and-indent', then insert a parentheses pair."
513 (interactive)
514 (ignore-errors (expand-abbrev))
515 (up-list)
516 (newline-and-indent)
517 (insert "()")
518 (forward-char -1))
519
520 (defun sotlisp--find-in-buffer (r s)
521 "Find the string (concat R (regexp-quote S)) somewhere in this buffer."
522 (let ((l (save-excursion
523 (goto-char (point-min))
524 (save-match-data
525 (when (search-forward-regexp (concat r (regexp-quote s) "\\_>")
526 nil :noerror)
527 (match-beginning 0))))))
528 (when l
529 (push-mark)
530 (goto-char l)
531 l)))
532
533 (defun sotlisp--beginning-of-defun ()
534 "`push-mark' and move above this defun."
535 (push-mark)
536 (beginning-of-defun)
537 (forward-line -1)
538 (unless (looking-at "^;;;###autoload\\s-*\n")
539 (forward-line 1)))
540
541 (defun sotlisp--function-at-point ()
542 "Return name of `function-called-at-point'."
543 (if (save-excursion
544 (ignore-errors (forward-sexp -1)
545 (looking-at-p "#'")))
546 (thing-at-point 'symbol)
547 (let ((fcap (function-called-at-point)))
548 (if fcap (symbol-name fcap)
549 (thing-at-point 'symbol)))))
550
551 (defun sotlisp-find-or-define-function (&optional prefix)
552 "If symbol under point is a defined function, go to it, otherwise define it.
553 Essentially `find-function' on steroids.
554
555 If you write in your code the name of a function you haven't
556 defined yet, just place point on its name and hit \\[sotlisp-find-or-define-function]
557 and a defun will be inserted with point inside it. After that,
558 you can just hit `pop-mark' to go back to where you were.
559 With a PREFIX argument, creates a `defmacro' instead.
560
561 If the function under point is already defined this just calls
562 `find-function', with one exception:
563 if there's a defun (or equivalent) for this function in the
564 current buffer, we go to that even if it's not where the
565 global definition comes from (this is useful if you're
566 writing an Emacs package that also happens to be installed
567 through package.el).
568
569 With a prefix argument, defines a `defmacro' instead of a `defun'."
570 (interactive "P")
571 (let ((name (sotlisp--function-at-point)))
572 (unless (and name (sotlisp--find-in-buffer "(def\\(un\\|macro\\|alias\\) " name))
573 (let ((name-s (intern-soft name)))
574 (if (fboundp name-s)
575 (find-function name-s)
576 (sotlisp--beginning-of-defun)
577 (insert "(def" (if prefix "macro" "un")
578 " " name " (")
579 (save-excursion (insert ")\n \"\"\n )\n\n")))))))
580
581 (defun sotlisp-find-or-define-variable (&optional prefix)
582 "If symbol under point is a defined variable, go to it, otherwise define it.
583 Essentially `find-variable' on steroids.
584
585 If you write in your code the name of a variable you haven't
586 defined yet, place point on its name and hit \\[sotlisp-find-or-define-variable]
587 and a `defcustom' will be created with point inside. After that,
588 you can just `pop-mark' to go back to where you were. With a
589 PREFIX argument, creates a `defvar' instead.
590
591 If the variable under point is already defined this just calls
592 `find-variable', with one exception:
593 if there's a defvar (or equivalent) for this variable in the
594 current buffer, we go to that even if it's not where the
595 global definition comes from (this is useful if you're
596 writing an Emacs package that also happens to be installed
597 through package.el).
598
599 With a prefix argument, defines a `defvar' instead of a `defcustom'."
600 (interactive "P")
601 (let ((name (symbol-name (variable-at-point t))))
602 (unless (sotlisp--find-in-buffer "(def\\(custom\\|const\\|var\\) " name)
603 (unless (and (symbolp (variable-at-point))
604 (ignore-errors (find-variable (variable-at-point)) t))
605 (let ((name (thing-at-point 'symbol)))
606 (sotlisp--beginning-of-defun)
607 (insert "(def" (if prefix "var" "custom")
608 " " name " t")
609 (save-excursion
610 (insert "\n \"\""
611 (if prefix "" "\n :type 'boolean")
612 ")\n\n")))))))
613
614 \f
615 ;;; Comment sexp
616 (defun sotlisp-uncomment-sexp (&optional n)
617 "Uncomment a sexp around point."
618 (interactive "P")
619 (let* ((initial-point (point-marker))
620 (inhibit-field-text-motion t)
621 (p)
622 (end (save-excursion
623 (when (elt (syntax-ppss) 4)
624 (re-search-backward comment-start-skip
625 (line-beginning-position)
626 t))
627 (setq p (point-marker))
628 (comment-forward (point-max))
629 (point-marker)))
630 (beg (save-excursion
631 (forward-line 0)
632 (while (and (not (bobp))
633 (= end (save-excursion
634 (comment-forward (point-max))
635 (point))))
636 (forward-line -1))
637 (goto-char (line-end-position))
638 (re-search-backward comment-start-skip
639 (line-beginning-position)
640 t)
641 (ignore-errors
642 (while (looking-at comment-start-skip)
643 (forward-char -1))
644 (unless (looking-at "[\n\r[:blank]]")
645 (forward-char 1)))
646 (point-marker))))
647 (unless (= beg end)
648 (uncomment-region beg end)
649 (goto-char p)
650 ;; Indentify the "top-level" sexp inside the comment.
651 (ignore-errors
652 (while (>= (point) beg)
653 (backward-prefix-chars)
654 (skip-chars-backward "\r\n[:blank:]")
655 (setq p (point-marker))
656 (backward-up-list)))
657 ;; Re-comment everything before it.
658 (ignore-errors
659 (comment-region beg p))
660 ;; And everything after it.
661 (goto-char p)
662 (forward-sexp (or n 1))
663 (skip-chars-forward "\r\n[:blank:]")
664 (if (< (point) end)
665 (ignore-errors
666 (comment-region (point) end))
667 ;; If this is a closing delimiter, pull it up.
668 (goto-char end)
669 (skip-chars-forward "\r\n[:blank:]")
670 (when (eq 5 (car (syntax-after (point))))
671 (delete-indentation))))
672 ;; Without a prefix, it's more useful to leave point where
673 ;; it was.
674 (unless n
675 (goto-char initial-point))))
676
677 (defun sotlisp--comment-sexp-raw ()
678 "Comment the sexp at point or ahead of point."
679 (pcase (or (bounds-of-thing-at-point 'sexp)
680 (save-excursion
681 (skip-chars-forward "\r\n[:blank:]")
682 (bounds-of-thing-at-point 'sexp)))
683 (`(,l . ,r)
684 (goto-char r)
685 (skip-chars-forward "\r\n[:blank:]")
686 (save-excursion
687 (comment-region l r))
688 (skip-chars-forward "\r\n[:blank:]"))))
689
690 (defun sotlisp-comment-or-uncomment-sexp (&optional n)
691 "Comment the sexp at point and move past it.
692 If already inside (or before) a comment, uncomment instead.
693 With a prefix argument N, (un)comment that many sexps."
694 (interactive "P")
695 (if (or (elt (syntax-ppss) 4)
696 (< (save-excursion
697 (skip-chars-forward "\r\n[:blank:]")
698 (point))
699 (save-excursion
700 (comment-forward 1)
701 (point))))
702 (sotlisp-uncomment-sexp n)
703 (dotimes (_ (or n 1))
704 (sotlisp--comment-sexp-raw))))
705
706 (provide 'sotlisp)
707 ;;; sotlisp.el ends here