summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2020-04-12 14:56:12 +0200
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2020-04-12 14:56:12 +0200
commitd006e6b24ae86783c9a6d467a111e7a917672bef (patch)
tree7484527a2bf05eeabf0da4e1746a659688a544cf
parent5c8ba275ed91a128d5dee7c899767ad30af90b97 (diff)
downloadmemory-leaks-d006e6b24ae86783c9a6d467a111e7a917672bef.tar.xz
Move comint itches into their own file
-rw-r--r--itches/emacs/bulk.md9
-rw-r--r--itches/emacs/interpreters.org14
2 files changed, 14 insertions, 9 deletions
diff --git a/itches/emacs/bulk.md b/itches/emacs/bulk.md
index de5df2d..de4c4ea 100644
--- 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
new file mode 100644
index 0000000..43a60d7
--- /dev/null
+++ 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).