diff options
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | personal/itches.md | 12 |
2 files changed, 11 insertions, 3 deletions
@@ -1,5 +1,5 @@ # Peniblec's Memory Leaks -## still reachable: 6050 words in 11 pages +## still reachable: 6072 words in 11 pages Hi! I am a software engineer interested in [a bunch of things]. diff --git a/personal/itches.md b/personal/itches.md index 97d3043..d755b72 100644 --- a/personal/itches.md +++ b/personal/itches.md @@ -55,8 +55,16 @@ ;; Apply to tar-parse-info in tar-summarize-buffer. ``` -- make mark(s) more visible when region is not active (add a command - or minor mode to highlight them) +- add a command or minor mode to highlight marks; serving suggestion: + + ``` elisp + (save-excursion + (dolist (m mark-ring) + (goto-char (marker-position m)) + (pulse-momentary-highlight-region (point) (point-at-eol)) + (sit-for 0.1))) + ``` + - StackOverflow-like suggestions when reporting bugs |
