Questions tagged [ascii]
7 questions
1
vote
2 answers
How to remove indent on left margin and vertical line from src block when exporting org-mode to ascii?
When I export an org file to an ascii file, using org-export-to-ascii, I get some annoying lines on the left margin and an indent
,----
| .class{
| background:red;
| }
This is what I'm after:
.class{
background:red;
}
I'm using some code to…

F. Certainly.
- 27
- 3
1
vote
1 answer
What ASCII character is C-q C-E?
I did a spurious replacement across many files that shows in Emacs as '^E', equivalently the result of C-q C-E. What ASCII character does that correspond to, so I can undo the replacement?
user19777
0
votes
0 answers
Doom Emacs AsciiDoc syntax highlighting?
I want to write AsciiDoc documents in Emacs (more specifically Doom Emacs) with syntax highlighting.
I've tried:
Adding (package! adoc-mode) to the bottom of ~/.doom.d/packages.el .
Adding adoc-mode to ~/.doom.d/init.el
Running ~/.emacs.d/bin/doom…

01AutoMonkey
- 123
- 4
0
votes
1 answer
Left-aligning the title in org export to ASCII
When I export an Org document to text, the title (along with the decorative ASCII art above and below it) is centered. What's the best way to suppress the centering, and simply have it start at the left margin?

J Maraist
- 3
- 1
0
votes
1 answer
How to replace ascii codes with characters in custom settings or buffer?
I customized org-tag-alist using the built-in customization interface. This stored the values in ("tag") . ) pairs like this:
("ez" . 90)
("pin" . 73)
("per" . 61)
("inprog" . 78)
("maybe" . 66)
Is there any way to view…

Max Pfleger
- 101
- 8
0
votes
1 answer
What is the keycode of C-TAB?
iTerm does not send ctrl+tab itself, so I need to configure it myself. I can't figure it what key code ctrl+tab is though.

HappyFace
- 751
- 4
- 16
0
votes
1 answer
What are these characters?
I have been on the agenda of actually applying the formatting done by various programs within various types of Emacs major modes, e. g., the compilation major mode. I found this and added this to my configuration file:
(use-package ansi-color
…

scribe
- 930
- 4
- 15