memory-leaks

Still reachable: lots of words in many pages.
git clone https://git.kevinlegouguec.net/memory-leaks
Log | Files | Refs | README | LICENSE

commit d006e6b24ae86783c9a6d467a111e7a917672bef
parent 5c8ba275ed91a128d5dee7c899767ad30af90b97
Author: Kévin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Sun, 12 Apr 2020 14:56:12 +0200

Move comint itches into their own file

Diffstat:
Mitches/emacs/bulk.md | 9---------
Aitches/emacs/interpreters.org | 14++++++++++++++
2 files changed, 14 insertions(+), 9 deletions(-)

diff --git a/itches/emacs/bulk.md b/itches/emacs/bulk.md @@ -5,11 +5,6 @@ - going to man page section - opening eww on an anchor - visiting a function from its Help buffer -- shell-mode - - add faces instead of reusing font-lock-{comment,string} - - understand `autocd` and `cd !$` - - use Bash completions (e.g. `ls TAB` in a folder with one file) -- eshell: `ls --group-directories-first` does not color folders - scroll-lock-mode - cursor stuck on lines wrapped by visual-line-mode - cursor stuck on lines taller than regular height (see maybe @@ -62,10 +57,6 @@ e.g. `git-commit-setup-hook` recently added `bug-reference-mode`, but I never realized it because I customized the hook to add some personal functions -- 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 diff --git a/itches/emacs/interpreters.org b/itches/emacs/interpreters.org @@ -0,0 +1,14 @@ +* Shell +** Add faces instead of reusing font-lock-{comment,string}. +** Understand ~autocd~ and ~cd !$~. +** Use Bash completions. +E.g. in most terminals, typing ~ls TAB~ in a folder with a single file +expands to ~ls that-file~. +* Eshell +** ~ls --group-directories-first~ does not color folders. +* Python shell +** Handle ~completion-prefix-display-length~ +Setting this variable in an inputrc file causes the Python interpreter +to elide common prefixes when showing completion candidates. This +seems to confuse python-shell-completion-native-get-completions (at +best hitting TAB yields "No match", at worst it makes Emacs hang).