summaryrefslogtreecommitdiff
path: root/itches
diff options
context:
space:
mode:
authorKévin Le Gouguec <kevin.legouguec@gmail.com>2019-12-03 22:03:58 +0100
committerKévin Le Gouguec <kevin.legouguec@gmail.com>2019-12-03 22:03:58 +0100
commit89977da7e3355c6fcfeafac66f8bd6ac1bdde9f6 (patch)
tree3f394b98c7e91af6c684a631303dd556174d0599 /itches
parent1e664d73cd70a2d3fc11879aa13eef886b0e3cb3 (diff)
downloadmemory-leaks-89977da7e3355c6fcfeafac66f8bd6ac1bdde9f6.tar.xz
Update Emacs itches
Diffstat (limited to 'itches')
-rw-r--r--itches/emacs/bulk.md12
-rw-r--r--itches/emacs/language-support.org16
2 files changed, 25 insertions, 3 deletions
diff --git a/itches/emacs/bulk.md b/itches/emacs/bulk.md
index 01a34b4..1214290 100644
--- a/itches/emacs/bulk.md
+++ b/itches/emacs/bulk.md
@@ -13,7 +13,8 @@
- eww, gnus-article: adapt filling to window width changes
- scroll-lock-mode
- cursor stuck on lines wrapped by visual-line-mode
- - cursor stuck on lines with lines taller than regular height
+ - cursor stuck on lines with lines taller than regular height (see
+ maybe bug#36421?)
- scroll when going down newline with forward-…
- matching-paren analysis fails: `;; (here is\n;; a comment)`
- some modes redefine C-M-h, which makes this binding hard to
@@ -100,12 +101,17 @@
- dissociate sub- and super-script fontification from everything else
in org-toggle-pretty-entities
-- make org-ctrl-c-ctrl-c call `(org-clock-update-mode-line t)` when
- point is on the clocked-in heading
+- make org-ctrl-c-ctrl-c or org-clock-in call
+ `(org-clock-update-mode-line t)` when point is on the clocked-in
+ heading
- new command `org-clock-in-late` to clock out x minutes ago from
previous task, and clock in x ago on task at point
+- the org-hide face is computed when org-mode is activated;
+ customizing the default background makes it obsolete until the mode
+ is reverted
+
## read-passwd
- prevent kills from ending up in the clipboard
diff --git a/itches/emacs/language-support.org b/itches/emacs/language-support.org
index 76f1f5e..145786e 100644
--- a/itches/emacs/language-support.org
+++ b/itches/emacs/language-support.org
@@ -86,3 +86,19 @@ Things decreased: \textcolor{green}{-49.22%} (514 $\searrow$ 261)
#+END_SRC
Can workaround it with =\catcode36= instead of =\catcode`$=.
+*** saving does not add a final newline
+*** TeX-auto-write does not handle absent parent folders
+E.g. =.auctex/auto=.
+*** faces
+It would be nice if AUCTeX defined more faces, inheriting from the
+ones it currently uses, so that users could set them independently.
+**** description labels
+Currently using font-lock-variable-name-face.
+**** texttt
+Currently using font-lock-type-face.
+**** footnote
+Currently using font-lock-constant-face.
+**** macros
+Maybe font-latex-sedate-face should be moved before
+font-lock-keyword-face? Otherwise if the latter has a foreground, the
+former has no effect.