[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: German quotation marks?
From: |
Tim Landscheidt |
Subject: |
Re: German quotation marks? |
Date: |
Tue, 30 Apr 2024 12:14:23 +0000 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
Michael Maurer <maurer.michael@gmail.com> wrote:
> When I'm writing in German, I need to quote like „Test“ instead of
> "Test". Any way to accomplish this in Emacs? Tried googling "German
> quotation marks", but that's probably not the right way to describe
> it.
One way to make it easier in Emacs is Electric Quote mode
(https://www.gnu.org/software/emacs/manual/html_node/emacs/Quotation-Marks.html):
With (taken from
https://www.reddit.com/r/orgmode/comments/k73ihb/german_quotation_marks_in_orgmode/):
| (setq electric-quote-replace-double t
| electric-quote-chars '(8216 8217 8222 8220))
one can type "Test" and get „Test“.
(Personally, on Linux I use the Compose key (Compose, ",",
'"' and Compose, "<", '"’) for quotation marks as this works
everywhere, i. e. also in the shell, etc.)
Tim