summary refs log tree commit diff stats
path: root/compiler/suggest.nim
Commit message (Collapse)AuthorAgeFilesLines
* nimsuggest: suggest types in a type sectionAndreas Rumpf2017-03-141-2/+2
|
* nimsuggest: special rule for 'of' completion in case statementsAndreas Rumpf2017-03-101-0/+6
|
* nimsuggest: maxresults limit; fixed local symbol usages priorizationsAndreas Rumpf2017-03-101-47/+42
|
* nimsuggest: more things workAraq2017-03-091-8/+20
|
* nimsuggest: more precise cursor trackingAraq2017-03-091-47/+8
|
* nimsuggest: revert cpFuzzy bailoutsAndreas Rumpf2017-03-091-21/+21
|
* bugfix: consider type contexts properlyAraq2017-03-081-33/+41
|
* nimsuggest: chk checks the full project lazily; much better suggestions ↵Andreas Rumpf2017-03-081-47/+94
| | | | orderings
* make some tests greenAndreas Rumpf2017-03-071-2/+3
|
* nimsuggest: better ordering of symbols (part 1)Andreas Rumpf2017-03-071-35/+59
|
* nimsuggest: minor doc additionAndreas Rumpf2017-03-031-0/+2
|
* nimsuggest: structured error reporting; EPC mode still failsAndreas Rumpf2017-03-031-4/+3
|
* make tests green againAndreas Rumpf2017-03-021-1/+6
|
* nimsuggest: track type contextsAraq2017-03-011-2/+7
|
* nimsuggest supports prefix matching (first version)Araq2017-02-281-33/+76
|
* big compiler refactoring; avoid globals for multi method dispatcher generationAndreas Rumpf2017-02-221-9/+9
|
* nimsuggest uses multithreading and full project recompilesAndreas Rumpf2017-02-131-3/+3
|
* disable transitive closure computations; only semcheck procs that have the ↵Andreas Rumpf2017-02-091-2/+2
| | | | cursor
* nimsuggest: bugfix: also output documentation commentsAndreas Rumpf2017-02-031-0/+14
|
* fixes nimsuggest issue #44Andreas Rumpf2017-01-261-3/+5
|
* Merge branch 'devel' into sighashesAraq2016-12-191-2/+3
|\
| * fixes nimsuggest bug #43Andreas Rumpf2016-12-181-2/+3
| |
* | removed tyArrayConstr completely from the compiler; introduced tyAlias ↵Araq2016-11-141-2/+2
|/ | | | instead in preparation for further bugfixes
* new dependency tracking for nimsuggestAraq2016-11-051-1/+1
|
* nimsuggest is now part of NimAraq2016-10-311-1/+1
|
* C++ backend: use .noInit pragma for non-public default constructors; refs #4687Andreas Rumpf2016-09-041-6/+5
|
* fixes #4673Andreas Rumpf2016-09-011-1/+1
|
* stdlib and compiler don't use .immediate anymoreAndreas Rumpf2016-07-291-1/+1
|
* fixes #4510Andreas Rumpf2016-07-291-0/+2
|
* nimsuggest: added 'chk', 'outline' and 'highlight' featuresAraq2015-11-011-50/+129
|
* nimsuggest: added 'dus' command that combines 'def' and 'use'Araq2015-10-121-1/+5
|
* renamed inCompilesContext to compilesContextId; added test case for #3313Araq2015-09-181-3/+3
|
* compiler: Trim .nim files trailing whitespaceAdam Strzelecki2015-09-041-37/+37
| | | | via OSX: find . -name '*.nim' -exec sed -i '' -E 's/[[:space:]]+$//' {} +
* changed from parseEnum to direct copySimon Hafner2015-05-131-5/+1
| | | | Let's hope this doesn't break anything
* removed unnecessary depsSimon Hafner2015-05-081-2/+1
|
* removed a few consts and rewired to IdeCmdSimon Hafner2015-04-261-16/+11
|
* barebones in nimsuggest for EPCSimon Hafner2015-04-221-11/+12
|
* parseEnum ftwSimon Hafner2015-04-221-40/+4
|
* rewrite suggest.nim for suggestionResultHookSimon Hafner2015-04-221-39/+106
|
* removed dead codeAraq2015-01-301-9/+2
|
* nimsuggest improvementsAraq2015-01-301-13/+17
|
* nimsuggest: sane dirty buffer handlingAraq2015-01-291-5/+1
|
* nimsuggest: first versionAraq2015-01-271-111/+86
|
* fixes #1774Araq2014-12-311-3/+0
|
* improvements for nimfixAraq2014-09-101-2/+1
|
* 'pretty' command does not exist anymore; improvements for nimfixAraq2014-09-101-1/+1
|
* Nimrod renamed to NimAraq2014-08-281-1/+1
|
* fixes #1285Araq2014-06-301-19/+19
|
* Fix idetools --def crash.Dominik Picheta2014-06-151-1/+1
|
* Fixed #1172 (for real)Clay Sweetser2014-06-011-2/+5
|
.com> 2011-12-30 14:15:12 +0100 fixes for readAll' href='/ahoang/Nim/commit/tests/specials.nim?h=devel&id=24917aaf1ecd1e0d443861c37d3b2e9e7673f856'>24917aaf1 ^
a497b4d1c ^
355ae07b8 ^


a497b4d1c ^
62aa8bed3 ^
a497b4d1c ^

62aa8bed3 ^
a497b4d1c ^
fc9fdc2b9 ^


4d9e8e13a ^
8aa4e4670 ^
f30eb9feb ^
034686d4c ^


cb6ad8cb7 ^
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214