summary refs log tree commit diff stats
path: root/compiler/nimfix/prettybase.nim
Commit message (Expand)AuthorAgeFilesLines
* remove shallowCopy for ARC/ORC (#20070)ringabout2022-07-261-2/+8
* [refactoring] remove unused imports in the compiler and in some stdlib modulesAraq2019-07-181-2/+0
* implements a --nep1:on switch to make the compiler enforce the naming convent...Andreas Rumpf2018-06-131-13/+3
* cleanup compiler/prettybase to not use redudant global variablesAndreas Rumpf2018-05-271-49/+6
* remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-1/+1
* preparations of making compiler/msgs.nim free of global variablesAndreas Rumpf2018-05-171-9/+9
* pretty, prettybase: simplify relative paths (#7779)alaviss2018-05-071-1/+1
* refactoring: make FileIndex a distinct type; make line information an uint16;...Andreas Rumpf2018-04-211-8/+8
* fixes #7522Araq2018-04-061-1/+1
* Hopefully fixes nimsuggest building against the compiler package.Dominik Picheta2015-06-041-3/+4
* Happy new year!Guillaume Gelin2015-01-061-1/+1
* nimfix now in its own directory; single file mode now the defaultAraq2014-10-051-0/+93
mitter Kartik K. Agaram <vc@akkartik.com> 2022-05-17 22:43:41 -0700 split keyboard handling between Text and Drawing' href='/akkartik/text.love/commit/geom.lua?id=222a11a8dd0c8b5b68b5628928a38f05d0a3d13c'>222a11a ^
de495ae ^





007b965 ^
de495ae ^

























0248339 ^
de495ae ^





0248339 ^
de495ae ^



0248339 ^
de495ae ^



0248339 ^
de495ae ^














e27165c ^





















de495ae ^


























222a11a ^
de495ae ^
















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
164
165
166
167