File tree 2 files changed +26
-4
lines changed
2 files changed +26
-4
lines changed Original file line number Diff line number Diff line change 16
16
(transient-mark-mode 1 )
17
17
(lispy-mode)
18
18
(insert , in )
19
- (when (search-backward " ~" nil t )
20
- (delete-char 1 )
21
- (set-mark (point ))
22
- (goto-char (point-max )))
19
+ (goto-char (point-min ))
20
+ (when (search-forward " ~" nil t )
21
+ (backward-delete-char 1 )
22
+ (set-mark (point )))
23
+ (goto-char (point-max ))
23
24
(search-backward " |" )
24
25
(delete-char 1 )
25
26
(setq current-prefix-arg)
@@ -1243,6 +1244,12 @@ Insert KEY if there's no command."
1243
1244
(should (string= (lispy-with " |;;* Intro" " a" )
1244
1245
" ;;* Intro\n ;;* |" )))
1245
1246
1247
+ (ert-deftest lispy-outline-add ()
1248
+ (should (string= (lispy-with " (quote ~foo|)" " ~" )
1249
+ " (quote ~~foo|)" ))
1250
+ (should (string= (lispy-with " (quote ~~foo|)" " ~" )
1251
+ " (quote ~foo|)" )))
1252
+
1246
1253
(provide 'lispy-test )
1247
1254
1248
1255
; ;; lispy-test.el ends here
Original file line number Diff line number Diff line change @@ -1277,6 +1277,20 @@ Special case is (|( -> ( |(."
1277
1277
(lispy--space-unless "\\s-\\|\\s(\\|[:?`']\\\\?")
1278
1278
(insert "`"))
1279
1279
1280
+ (defun lispy-tilde (arg)
1281
+ "Insert ~ ARG times.
1282
+ When region is active, toggle a ~ at the start of the region."
1283
+ (interactive "p")
1284
+ (if (region-active-p)
1285
+ (let ((bnd (lispy--bounds-dwim))
1286
+ deactivate-mark)
1287
+ (save-excursion
1288
+ (goto-char (car bnd))
1289
+ (if (eq (char-after) ?~)
1290
+ (delete-char 1)
1291
+ (insert "~"))))
1292
+ (self-insert-command 1)))
1293
+
1280
1294
(defun lispy-hash ()
1281
1295
"Insert #."
1282
1296
(interactive)
@@ -5318,6 +5332,7 @@ FUNC is obtained from (`lispy--insert-or-call' DEF PLIST)"
5318
5332
(lispy-define-key map "V" 'lispy-visit)
5319
5333
(lispy-define-key map "-" 'lispy-ace-subword)
5320
5334
(lispy-define-key map "." 'lispy-repeat)
5335
+ (lispy-define-key map "~" 'lispy-tilde)
5321
5336
;; ——— locals: digit argument ———————————————
5322
5337
(mapc (lambda (x) (lispy-define-key map (format "%d" x) 'digit-argument))
5323
5338
(number-sequence 0 9)))
You can’t perform that action at this time.
0 commit comments