summary refs log tree commit diff stats
path: root/nimsuggest/nimsuggest.nim
Commit message (Expand)AuthorAgeFilesLines
* Fix infinite recursion introduced in 7031ea6 [backport 1.6] (#21555)Peter Munch-Ellingsen2023-03-201-1/+1
* replaces implicit passes array registed at runtime with explicit function cal...ringabout2023-03-031-1/+1
* Implemented basic macro expand functionality (#20579)Ivan Yonchovski2023-01-271-42/+151
* Nimsuggest now defines the backends symbol (#21083)Jake Leahy2022-12-121-2/+5
* rename `std/threads` to `std/typedthreads` (#20850)ringabout2022-11-161-1/+1
* Fix typo in nimsuggest.nim (#20767)Ikko Ashimine2022-11-051-1/+1
* put std/threads under the umbrella of nimPreviewSlimSystem (#20711)ringabout2022-10-311-0/+2
* Fix/improve handling of forward declarations in nimsuggest (#20493)Ivan Yonchovski2022-10-061-9/+77
* [nimsuggest] fix def call on identifier 2 times on the line (#20228)Ivan Yonchovski2022-08-301-38/+34
* Implement type command (#19944)Ivan Yonchovski2022-07-151-1/+11
* Initial implementation of nimsuggest v3 (#19826)Ivan Yonchovski2022-06-131-14/+228
* Deprecate TaintedString (#15423)Juan Carlos2021-01-151-1/+1
* IC: next steps (#16550)Andreas Rumpf2021-01-071-1/+1
* cmdline: improve command processing (#16056)Timothee Cour2020-11-261-2/+2
* rename loadConfigsAndRunMainCommand => loadConfigsAndProcessCmdLine, reflect ...Timothee Cour2020-11-201-2/+2
* refactoring: removed cmdlinehelper.mainCommand callbackAndreas Rumpf2020-10-111-6/+8
* * honor --errorMax even for tools (eg drnim, nim doc) (#14546)Timothee Cour2020-06-021-4/+2
* fix nimsuggest warning (#13699)Jasper Jenkins2020-03-201-3/+0
* Revert "nimsuggest: don't add CRLF to replies (#13545)" (#13597)alaviss2020-03-061-4/+4
* nimsuggest: don't add CRLF to replies (#13545)alaviss2020-03-041-4/+4
* remove unused importsnarimiran2019-11-061-4/+3
* nimsuggest: add a command that returns the project file (#12411)alaviss2019-10-111-1/+10
* nimsuggest: add option to force finding the project file (#12409)alaviss2019-10-111-1/+10
* nimsuggest: fix tcp socket leak for epc backend (#12384) [backport]alaviss2019-10-081-1/+1
* nimsuggest: fix tcp socket leak (#12377) [backport]alaviss2019-10-081-1/+1
* Fix spellings (#12277) [backport]Federico Ceratto2019-09-271-1/+1
* minor style changesAraq2019-07-111-9/+9
* [bugfix] fix #11482, fix nimsuggest range error (#11519)Miran2019-06-171-2/+2
* [other] nimsuggest: adhere to our style guideAraq2019-06-131-2/+2
* nimsuggest: make use project file name if none given for 'sug' command; allow...Andreas Rumpf2019-03-041-4/+8
* nimsuggest: only log when logging is enabled (#10646)alaviss2019-02-131-2/+2
* nimsuggest: add an option to bind to a free port (#10328)alaviss2019-01-161-2/+15
* fixes nim-lang/nimsuggest#76 (#10093)alaviss2018-12-251-2/+2
* Moved some code around in nimsuggest to avoid crash when run as library (#9818)PMunch2018-12-011-8/+22
* Made nimsuggest importable as a library and add Nim-path override option (#9784)PMunch2018-11-231-1/+100
* nimsuggest: fixes #96Timothee Cour2018-11-201-2/+3
* compiler refactoring; use typesafe path handing; docgen: render symbols betwe...Andreas Rumpf2018-09-071-18/+21
* make config.nims behave like nim.cfg in terms of where these scripts are sear...Timothee Cour2018-08-301-48/+25
* make more tests greenAndreas Rumpf2018-08-131-3/+3
* implements a --nep1:on switch to make the compiler enforce the naming convent...Andreas Rumpf2018-06-131-1/+0
* incremental compilation: implemented basic replay logicAndreas Rumpf2018-06-021-16/+16
* compiler API: final cleanups; improve security by diabling 'gorge' and friendsAndreas Rumpf2018-05-291-3/+6
* vm now free of global variablesAndreas Rumpf2018-05-281-1/+1
* refactoring: remove idents.legacy global variable and pass the IdentCache aro...Andreas Rumpf2018-05-271-1/+1
* remove more global variables in the Nim compilerAndreas Rumpf2018-05-271-33/+32
* preparations of making compiler/msgs.nim free of global variablesAndreas Rumpf2018-05-171-6/+6
* make nimsuggest compile againAndreas Rumpf2018-05-141-10/+10
* make nimsuggest compile againAndreas Rumpf2018-05-131-69/+77
* .experimental can now be used to enable specific featuresAndreas Rumpf2018-04-241-4/+4
* include help short option in processCmdLine (#7515)skilchen2018-04-061-1/+1
63f934e ^
1fbce01 ^














00263bf ^

































63f934e ^
















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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196