summary refs log tree commit diff stats
path: root/lib/std/widestrs.nim
diff options
context:
space:
mode:
authorIvan Yonchovski <yyoncho@users.noreply.github.com>2022-10-06 08:18:46 +0300
committerGitHub <noreply@github.com>2022-10-06 07:18:46 +0200
commit7caa0379366a500b5db11922d3ac1e739dd5dea1 (patch)
treeb62734791211da5a56fda007d7965e5c6e1661bf /lib/std/widestrs.nim
parent723a71bd229cad3498f01c3095a10cf9f6c3255d (diff)
downloadNim-7caa0379366a500b5db11922d3ac1e739dd5dea1.tar.gz
Fix/improve handling of forward declarations in nimsuggest (#20493)
* Fix/improve handling of forward declarations in nimsuggest

- ideUse now works fine when invoked on the implementation
- implemented ideDeclaration to make cover lsp feature textDocument/declaration
- fixed performance issue related to deduplicating symbols. Now the
deduplication happens after the symbols are filtered. As a alternative we might
change the way cached symbols are stored(e. g. use set).
- I also fixed the way globalSymbols work. Now it will sort the responses based
on the match location to make sure that the results are sorted in user friendly way.

* Update nimsuggest/nimsuggest.nim

Co-authored-by: Andreas Rumpf <rumpf_a@web.de>

Co-authored-by: Andreas Rumpf <rumpf_a@web.de>
Diffstat (limited to 'lib/std/widestrs.nim')
0 files changed, 0 insertions, 0 deletions
/aerc/blame/commands/msg/forward.go?h=0.6.0&id=ad68a9e4e471eb708893ad16601ab14a4672a2da'>^
05fa79e ^

3ba69ed ^
217e885 ^







6838c23 ^
217e885 ^


6838c23 ^
217e885 ^


6838c23 ^
3ba69ed ^
1f52939 ^



3ba69ed ^
1f52939 ^



3ba69ed ^

1f52939 ^


36c6030 ^
217e885 ^
1f52939 ^
217e885 ^


















1f52939 ^
217e885 ^

bf28e23 ^

3ba69ed ^

bf28e23 ^
8f1c6c4 ^
3ba69ed ^

3102ac3 ^
bf28e23 ^
3ba69ed ^
caad1b2 ^
3ba69ed ^


217e885 ^
1f52939 ^
36c6030 ^



217e885 ^







3ba69ed ^
217e885 ^

1f52939 ^
1f52939 ^

3ba69ed ^
1f52939 ^


05fa79e ^
3ba69ed ^






1f52939 ^
3ba69ed ^
05fa79e ^
3ba69ed ^







1f52939 ^
3ba69ed ^


217e885 ^

3ba69ed ^
61e9940 ^







3ba69ed ^
9096049 ^
bf28e23 ^
3ba69ed ^



217e885 ^
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