summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2019-04-01 07:18:23 +0200
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2019-04-01 07:18:34 +0200
commitf1683641b581c702656baada86ffbda8d4c17aa7 (patch)
treef7d803e0230e55566478df2c2358e7ed89a4d199
parentf86c0d58f20d6f7b41cacadc94f0774f54005731 (diff)
downloadmemory-leaks-f1683641b581c702656baada86ffbda8d4c17aa7.tar.xz
Add some more itches
-rw-r--r--README.md2
-rw-r--r--personal/itches/emacs/bulk.md17
2 files changed, 18 insertions, 1 deletions
diff --git a/README.md b/README.md
index 8ef193a..982ea1c 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
# Peniblec's Memory Leaks
-## still reachable: 7053 words in 14 pages
+## still reachable: 7148 words in 14 pages
Hi! I am a software engineer interested in [a bunch of things].
diff --git a/personal/itches/emacs/bulk.md b/personal/itches/emacs/bulk.md
index 9e33c20..31e6090 100644
--- a/personal/itches/emacs/bulk.md
+++ b/personal/itches/emacs/bulk.md
@@ -77,6 +77,16 @@
personal functions
- e-pair-mode inserts a closing `$` after point in tex-mode, but
inserts a new pair instead of overwriting when pressing `$` again
+- completions in python.el's comint buffer get confused when
+ readline's completion-prefix-display-length is set: candidates
+ become elided, maybe python-shell-completion-native-get-completions
+ is not ready for that?
+- some bindings advertised by `describe-mode` in texinfo-mode are
+ invalid:
+ - `C-c C-s` runs `Texinfo-insert-node` instead of
+ `texinfo-show-structure`
+ - `C-c C-e` runs `Texinfo-environment` instead of being a prefix
+ command for `texinfo-format-{buffer,region}`
[bug#30008]: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=30008
[bug#31586]: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=31586
@@ -177,6 +187,9 @@ Full disclosure
- `"a ${variable} inside a double-quoted string"` (Bash)
- `'a format string's {variable}` (Python)
- do not highlight a single-quoted command substitution
+- recognize [POSIX "immediate-expansion"][austin#330] operator `::=`
+
+[austin#330]: http://austingroupbugs.net/view.php?id=330
## read-passwd
@@ -262,3 +275,7 @@ Full disclosure
(set-face-attribute 'org-level-1 nil :height 1.2)
(find-file "README.org")
```
+
+- in Org buffers with org-indent-mode, lines before point will "dance"
+ around while editing, i.e. while I type, they stick to the left
+ margin, then when I stop typing, they become indented again.