summaryrefslogtreecommitdiff
path: root/itches/emacs/interpreters.org
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 /itches/emacs/interpreters.org
parent5c8ba275ed91a128d5dee7c899767ad30af90b97 (diff)
downloadmemory-leaks-d006e6b24ae86783c9a6d467a111e7a917672bef.tar.xz
Move comint itches into their own file
Diffstat (limited to 'itches/emacs/interpreters.org')
-rw-r--r--itches/emacs/interpreters.org14
1 files changed, 14 insertions, 0 deletions
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).