diff options
| -rw-r--r-- | index.md | 2 | ||||
| -rw-r--r-- | personal/itches.md | 16 |
2 files changed, 15 insertions, 3 deletions
@@ -1,5 +1,5 @@ # Peniblec's Memory Leaks -## still reachable: 2495 words in 3 pages +## still reachable: 2525 words in 3 pages Hi! I am a software engineer interested in [a bunch of things]. diff --git a/personal/itches.md b/personal/itches.md index 5edf4a0..826f045 100644 --- a/personal/itches.md +++ b/personal/itches.md @@ -50,8 +50,20 @@ default would make it more obvious that this character serves an actual purpose. As it stands, it looks no different from some stray CARRIAGE RETURN. -This could be re-used by e.g. Custom buffers, where sections are -delimited visually with a 999-character wide underlined space. +This could be re-used by e.g.: + +- `describe-symbol`, which uses the following ~~method~~ hack to + visually break up multiple symbol definitions: + + ``` lisp + (insert "\n\n" + (eval-when-compile + (propertize "\n" 'face '(:height 0.1 :inverse-video t))) + "\n") + ``` + +- Custom buffers, where sections are delimited visually with a + 999-character wide underlined space. Full disclosure : This reflection started because moving over this underlined space |
