From 0ad160dffd0efe2b80063727eb40990336ac3296 Mon Sep 17 00:00:00 2001 From: Runxi Yu Date: Thu, 17 Aug 2023 20:36:06 +0100 Subject: Remove HTML smart quotes --- note/emacs.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'note/emacs.html') diff --git a/note/emacs.html b/note/emacs.html index 11b8b3d..e00ff59 100644 --- a/note/emacs.html +++ b/note/emacs.html @@ -9,7 +9,7 @@

A Few Problems with Emacs

- Emacs is supposedly a text editor but is more of a integrated computing environment. At its core is an Emacs Lisp interpreter and a text and buffer-oriented set of conventions that Emacs Lisp code follows. The “default”/“standard” build of Emacs contains a World Wide Web browser, newsreader, electronic mail client, Internet Relay Chat client, a few games, and overall a ton of stuff that I do not use, need or want in my environment. Therefore I use a minimal-ish custom build (i.e. simply leaving stuff out during ./configure, which makes me feel a bit better. + Emacs is supposedly a text editor but is more of a integrated computing environment. At its core is an Emacs Lisp interpreter and a text and buffer-oriented set of conventions that Emacs Lisp code follows. The "default"/"standard" build of Emacs contains a World Wide Web browser, newsreader, electronic mail client, Internet Relay Chat client, a few games, and overall a ton of stuff that I do not use, need or want in my environment. Therefore I use a minimal-ish custom build (i.e. simply leaving stuff out during ./configure, which makes me feel a bit better.

One problem that I've recently noticed with Emacs is the tendency to use a set amount of spaces, expecting a monospace font, to align items across a buffer. For example, when :tags are used with org-agenda, the agenda page aligns the tags to the right of the page with spaces precalculated from the window size. But when we have double-width unicode characters, for example Chinese characters in the mix, or if we are using a variable-width Latin font, the alignment is completely screwed up. Resizing the window also doesn't update the wrapping and alignment of items inside. Emacs's text buffer-centric design makes it really hard to do otherwise. @@ -20,7 +20,7 @@

-- cgit 1.4.1-2-gfad0 7 19:05:04 -0500 committer Thomas E. Dickey <dickey@invisible-island.net> 1997-10-27 19:05:04 -0500 snapshot of project "lynx", label v2-7-1ac_0-89' href='/ingrix/lynx-snapshots/commit/docs/README.chartrans?id=8f8c57cc7c0e876cd291e2b4de23a52e060b30ba'>8f8c57cc ^
899516a7 ^
5816641f ^
899516a7 ^
5816641f ^
8f8c57cc ^

8f8c57cc ^
5816641f ^
b63d287c ^


8f8c57cc ^
c82d2a40 ^

5816641f ^
8f8c57cc ^
5816641f ^
8f8c57cc ^

c82d2a40 ^
b63d287c ^


899516a7 ^
8f8c57cc ^
5816641f ^
8f8c57cc ^









b63d287c ^

8f8c57cc ^



899516a7 ^


b63d287c ^
c82d2a40 ^
8f8c57cc ^

b63d287c ^

8f8c57cc ^




b63d287c ^



8f8c57cc ^

899516a7 ^
8f8c57cc ^




5816641f ^
8f8c57cc ^


b63d287c ^



8f8c57cc ^

8f8c57cc ^








8f8c57cc ^

b63d287c ^


8f8c57cc ^



899516a7 ^
8f8c57cc ^









5816641f ^
8f8c57cc ^


5816641f ^
8f8c57cc ^
5816641f ^
8f8c57cc ^










5816641f ^
8f8c57cc ^




c82d2a40 ^
8f8c57cc ^

5816641f ^
8f8c57cc ^




5816641f ^

8f8c57cc ^





5816641f ^
8f8c57cc ^



5816641f ^
b63d287c ^
8f8c57cc ^
5816641f ^
8f8c57cc ^
c82d2a40 ^
8f8c57cc ^
b63d287c ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163