aboutsummaryrefslogtreecommitdiff
path: root/emacs/.emacs.d/lisp/my/my-editing.el
blob: b420d8934eb9723b0a627c7ec85e223395369468 (plain) (blame)
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
;;; my-editing.el -- Editing related extensions for emacs core -*- lexical-binding: t -*-

;; Copyright (C) 2023 Free Software Foundation.

;; Author: Yuchen Pei <id@ypei.org>
;; Package-Requires: ((emacs "28.2"))

;; This file is part of dotfiles.

;; dotfiles is free software: you can redistribute it and/or modify it under
;; the terms of the GNU Affero General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.

;; dotfiles 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 Affero General
;; Public License for more details.

;; You should have received a copy of the GNU Affero General Public
;; License along with dotfiles.  If not, see <https://www.gnu.org/licenses/>.

;;; Commentary:

;; Editing related extensions.

;;; Code:



;;; Some of the following functions are adapted from prot-dotfiles
(defun my-comment-and-copy-selection ()
  (interactive)
  (comment-dwim nil)
  (my-yank-primary))

(defun my-kill-region-if-active (beg end &optional region)
  (interactive (list (mark) (point) 'region))
  (when mark-active
    (kill-region beg end region)))

;;; Stefan Monnier <foo at acm.org>. It is the opposite of fill-paragraph
(defun my-unfill-paragraph (&optional region)
  "Takes a multi-line paragraph and makes it into a single line of text."
  (interactive (progn (barf-if-buffer-read-only) '(t)))
  (let ((fill-column (point-max))
        ;; This would override `fill-column' if it's an integer.
        (emacs-lisp-docstring-fill-column t))
    (fill-paragraph nil region)))

;;; fixme: move to search
(defun my-replace-leading-space (to-string begin end)
  (interactive (list (read-string "Replace leading whitespace by: ")
		                 (region-beginning) (region-end)))
  (save-excursion
    (goto-char begin)
    (while (re-search-forward "^\\ +" end t)
      (replace-match to-string))))

(defun my-concat-lines (begin end)
  (interactive (list (region-beginning) (region-end)))
  (replace-regexp "\n" " " nil begin end))

(defun my-save-without-formatting ()
  (interactive)
  (read-only-mode 1)
  (save-buffer)
  (read-only-mode -1))

(defun my-yank-primary ()
  (interactive)
  (let ((primary (gui-get-primary-selection)))
    (push-mark)
    (insert-for-yank primary)))

(defun my-beginning-of-line-or-indentation ()
  "Move to beginning of line, or indentation"
  (interactive)
  (if (bolp)
      (back-to-indentation)
    (beginning-of-line)))

(defun my-copy-url-at-point ()
  (interactive)
  (when-let ((url (thing-at-point-url-at-point)))
    (kill-new url)
    (message "Copied: %s" (thing-at-point-url-at-point))))

(defun my-backward-kill-path-component ()
  (interactive)
  (zap-up-to-char -1 ?/))

(defun my-toggle-forward-word-viper-symbol ()
  (interactive)
  (require 'viper)
  (cond ((eq (lookup-key (current-global-map) "\M-f") 'forward-word)
         (progn
           (define-key global-map "\M-f" 'viper-forward-word)
           (define-key global-map "\M-b" 'viper-backward-word)
           (message "M-f is viper-forward-word")))
        ((eq (lookup-key (current-global-map) "\M-f") 'viper-forward-word)
         (progn
           (define-key global-map "\M-f" 'forward-symbol)
           (define-key global-map "\M-b"
             (lambda () (interactive)
               (forward-symbol -1)))
           (message "M-f is forward-symbol")))
        (t (progn
             (define-key global-map "\M-f" 'forward-word)
             (define-key global-map "\M-b" 'backward-word)
             (message "M-f is forward-word")))))

(defun my-kill-line-backward ()
  "Kill from point to the beginning of the line."
  (interactive)
  (kill-line 0))

(defun my--duplicate-buffer-substring (beg end &optional indent)
  "Duplicate buffer substring between BEG and END positions.
With optional INDENT, run `indent-for-tab-command' after
inserting the substring."
  (save-excursion
    (goto-char end)
    (insert (buffer-substring-no-properties beg end))
    (when indent
      (indent-for-tab-command))))

;;;###autoload
(defun my-copy-line-or-region (&optional duplicate)
  "Copy the current line or active region to the `kill-ring'.
With optional DUPLICATE as a prefix argument, duplicate the
current line or active region without adding it to the `kill-ring'."
  (interactive "P")
  (let* ((region (region-active-p))
         (beg (if region (region-beginning) (line-beginning-position)))
         (end (if region (region-end) (1+ (line-end-position))))
         (message (if region "region" "line")))
    (if duplicate
        (my--duplicate-buffer-substring beg end)
      (copy-region-as-kill beg end)
      (message "Copied current %s" message))))

;;;###autoload
(defun my-new-line-below (&optional arg)
  "Create an empty line below the current one.
Move the point to the absolute beginning.  Adapt indentation by
passing optional prefix ARG (\\[universal-argument]).  Also see
`my-new-line-above'."
  (interactive "P")
  (end-of-line)
  (if arg
      (newline-and-indent)
    (newline)))

;;;###autoload
(defun my-new-line-above-or-below (&optional arg)
  "Create an empty line above the current one.
Move the point to the absolute beginning.  Open a new line below
by passing optional prefix ARG (\\[universal-argument])."
  (interactive "P")
  (if arg
      (my-new-line-below)
    (if (or (bobp)
            (line-number-at-pos (point-min)))
        (progn
          (beginning-of-line)
          (newline)
          (forward-line -1))
      (forward-line -1)
      (my-new-line-below))))

(defun my--pos-url-on-line (&optional char)
  "Return position of `my-url-regexp' on line or at CHAR."
  (save-excursion
    (goto-char (or char (line-beginning-position)))
    (re-search-forward my-url-regexp (line-end-position) :noerror)))

;;;###autoload
(defun my-escape-url-line (&optional char)
  "Escape all URLs or email addresses on the current line.
By default, start operating from `line-beginning-position' to the
end of the current line.  With optional CHAR as a buffer
position, operate from CHAR to the end of the line."
  (interactive)
  (when-let ((regexp-end (my--pos-url-on-line char)))
    (save-excursion
      (goto-char regexp-end)
      (unless (looking-at ">")
        (insert ">")
        (search-backward "\s")
        (forward-char 1)
        (insert "<")))
    (my-escape-url-line (1+ regexp-end))))

;; Thanks to Bruno Boal for `my-escape-url-region'.  I am
;; just renaming it for consistency with the rest of prot-simple.el.
;; Check Bruno's Emacs config: <https://github.com/BBoal/emacs-config>.

;;;###autoload
(defun my-escape-url-region (&optional beg end)
  "Apply `my-escape-url-line' on region lines between BEG and END."
  (interactive
   (if (region-active-p)
       (list (region-beginning) (region-end))
     (error "There is no region!")))
  (unless (> end beg)
    (cl-rotatef end beg))
  (save-excursion
    (goto-char beg)
    (setq beg (line-beginning-position))
    (while (<= beg end)
      (my-escape-url-line beg)
      (beginning-of-line 2)
      (setq beg (point)))))

;;;###autoload
(defun my-escape-url-dwim ()
  "Escape URL on the current line or lines implied by the active region.
Call the commands `my-escape-url-line' and
`my-escape-url-region' ."
  (interactive)
  (call-interactively
   (if (region-active-p)
       #'my-escape-url-region
     #'my-escape-url-line)))

;; Got those numbers from `string-to-char'
(defcustom my-insert-pair-alist
  '(("' Single quote"        . (39 39))     ; ' '
    ("\" Double quotes"      . (34 34))     ; " "
    ("` Elisp quote"         . (96 39))     ; ` '
    ("‘ Single apostrophe"   . (8216 8217)) ; ‘ ’
    ("“ Double apostrophes"  . (8220 8221)) ; “ ”
    ("( Parentheses"         . (40 41))     ; ( )
    ("{ Curly brackets"      . (123 125))   ; { }
    ("[ Square brackets"     . (91 93))     ; [ ]
    ("< Angled brackets"     . (60 62))     ; < >
    ("« Εισαγωγικά Gr quote" . (171 187))   ; « »
    ("= Equals signs"        . (61 61))     ; = =
    ("~ Tilde"               . (126 126))   ; ~ ~
    ("* Asterisks"           . (42 42))     ; * *
    ("/ Forward Slash"       . (47 47))     ; / /
    ("_ underscores"         . (95 95)))    ; _ _
  "Alist of pairs for use with `my-insert-pair-completion'."
  :type 'alist
  :group 'my-editing)

(defvar my--character-hist '()
  "History of inputs for `my-insert-pair-completion'.")

(defun my--character-prompt (chars)
  "Helper of `my-insert-pair-completion' to read CHARS."
  (let ((def (car my--character-hist)))
    (let ((electric-pair-mode nil))
      (completing-read
       (format "Select character [%s]: " def)
       chars nil t nil 'my--character-hist def))))

;;;###autoload
(defun my-insert-pair (pair &optional count)
  "Insert PAIR from `my-insert-pair-alist'.
Operate on the symbol at point.  If the region is active, use it
instead.

With optional COUNT (either as a natural number from Lisp or a
universal prefix argument (\\[universal-argument]) when used
interactively) prompt for the number of delimiters to insert."
  (interactive
   (list
    (my--character-prompt my-insert-pair-alist)
    current-prefix-arg))
  (let* ((data my-insert-pair-alist)
         (left (cadr (assoc pair data)))
         (right (caddr (assoc pair data)))
         (n (cond
             ((and count (natnump count))
              count)
             (count
              (read-number "How many delimiters?" 2))
             (1)))
         (beg)
         (end)
         (forward))
    (cond
     ((region-active-p)
      (setq beg (region-beginning)
            end (region-end)))
     ((when (thing-at-point 'symbol)
        (let ((bounds (bounds-of-thing-at-point 'symbol)))
          (setq beg (car bounds)
                end (cdr bounds)))))
     (t (setq beg (point)
              end (point)
              forward t)))
    (save-excursion
      (goto-char end)
      (dotimes (_ n)
        (insert right))
      (goto-char beg)
      (dotimes (_ n)
        (insert left)))
    (when forward (forward-char n))))

;;;###autoload
(defun my-delete-pair-dwim ()
  "Delete pair following or preceding point.
For Emacs version 28 or higher, the feedback's delay is
controlled by `delete-pair-blink-delay'."
  (interactive)
  (if (eq (point) (cdr (bounds-of-thing-at-point 'sexp)))
      (delete-pair -1)
    (delete-pair 1)))

;;;###autoload
(defun my-zap-back-to-char (char &optional arg)
  "Backward `zap-to-char' for CHAR.
Optional ARG is a numeric prefix to match ARGth occurance of
CHAR."
  (interactive
   (list
    (read-char-from-minibuffer "Zap to char: " nil 'read-char-history)
    (prefix-numeric-value current-prefix-arg)))
  (zap-to-char (- arg) char))

(defun my-transpose-lines ()
  "Same as `transpose-lines' but move point to the original position

Basically move the line up
"
  (interactive)
  (let ((line (current-line))
        (col (current-column)))
    (call-interactively 'transpose-lines)
    (goto-line line)
    (forward-char col)))

(defun my-kill-line (&optional arg)
  "Calls `my-kill-forward' or `kill-line' in case of prefix arg."
  (interactive "P")
  (if prefix-arg
      (kill-line)
    (my-kill-forward)))

(defun my-kill-forward ()
  "Kill towards end of line, but not out of sexp."
  (interactive)
  (if (eolp)
      (delete-char 1)
    (let ((end)
          (eol (save-excursion (end-of-line) (point))))
      (save-excursion
        (skip-chars-forward " \t")
        (while (not (or (eq end (point))
                        (>= (point) eol)))
          (setq end (point))
          (ignore-errors (forward-sexp))
          (skip-chars-forward " \t"))
        (when (> (point) eol) (skip-chars-backward " \t"))
        (setq end (point)))
      (kill-region (point) end))))

(defun my-kill-line-backward (&optional arg)
  "Calls `my-kill-backward' or `kill-line' with 0 in case of prefix arg."
  (interactive "P")
  (if prefix-arg
      (kill-line 0)
    (my-kill-backward)))

(defun my-kill-backward ()
  "Kill towards beginning of line, but not out of sexp."
  (interactive)
  (if (bolp)
      (delete-char -1)
    (let ((beg)
          (bol (save-excursion (beginning-of-line) (point))))
      (save-excursion
        (skip-chars-backward " \t")
        (while (not (or (eq beg (point))
                        (<= (point) bol)))
          (setq beg (point))
          (ignore-errors (backward-sexp))
          (skip-chars-backward " \t"))
        (when (< (point) bol) (skip-chars-forward " \t"))
        (setq beg (point)))
      (kill-region beg (point)))))

(defun my-copy-buffer-file-name (&optional relative)
  "Copy the file name of the current buffer.

With an prefix-arg, copy the file name relative to project root."
  (interactive "P")
  (let ((to-kill
         (if (and relative (project-current))
             (file-relative-name (buffer-file-name)
                                 (project-root (project-current)))
           (buffer-file-name))))
    (kill-new to-kill)
    (message "Copied %s" to-kill)))

(defun my-non-special-modes-setup ()
  (setq indicate-empty-lines t)
  (setq show-trailing-whitespace t)
  )

(provide 'my-editing)
;;; my-editing.el ends here