forked from emacsorphanage/helm-gtags
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changes
290 lines (210 loc) · 7.83 KB
/
Changes
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
Revision history for helm-gtags.el
Revision 1.5.6 2016/04/17 syohex
- Fix opening file command on remote host(#151, #152)
Revision 1.5.5 2016/03/13 syohex
- Fix select-path command with using cache(#147 Thanks lbsx)
- Better helm header.
Revision 1.5.4 2016/02/02 syohex
- Display searched tag in helm header(#144)
Revision 1.5.3 2016/01/24 syohex
- Fix wrong persistent action of helm-gtags-select
Revision 1.5.2 2016/01/18 syohex
- Fix path style issue of search path command(#139, #140)
- Refactoring code for newer helm
Revision 1.5.1 2015/12/05 syohex
- Fix carriage return issue on Windows(#137)
Revision 1.5.0 2015/11/08 syohex
- Add parameter whether always uses helm completion
- Fix persistent action when using relative path style(#126)
- Update minimum helm version
Revision 1.4.9 2015/08/17 syohex
- Apply workaround to helm-gtags-select
- helm-run-after-quit is not work with latest helm
Revision 1.4.8 2015/08/15 syohex
- Improve helm-gtags-dwim for searching under GTAGSLIBPATH
- Fix helm-gtags-dwim for buffer which is not visited file(#116)
- Set default-directory to GTAGSROOT if it is set(#114)
Revision 1.4.7 2015/04/18 syohex
- Add preselect feature
- Avoid exception in helm-gtags-find-tag-from-here
Revision 1.4.6 2015/01/28 syohex
- Fix choosing action issue
Revision 1.4.5 2015/01/21 syohex
- Fix tramp issue of helm-gtags-update-tags(#96)
Revision 1.4.4 2015/01/09 syohex
- Fix helm-gtags-select(Reported by mofaph)
Revision 1.4.3 2015/01/03 syohex
- Support fuzzy matching
- Fix for symbolic link(Thanks artagnon)
Revision 1.4.2 2014/11/11 syohex
- Fix for tramp
Revision 1.4.1 2014/11/03 syohex
- Read gtagslabel type at helm-gtags-create-tags
- [Incompatible Change]
Change signature of helm-gtags-create-tags
There is problem if you use it as function
Revision 1.4.0 2014/10/22 syohex
- Fix helm-gtags-select when gtags generates some warnings
- Add verbose message for clear context stack commands
Revision 1.3.9 2014/10/05 syohex
- Fix Windows relative path issue and helm-gtags-select bug(Reported by SiameseCat)
Revision 1.3.8 2014/10/02 syohex
- Fix helm-gtags-parse-file bug(Reported by MatthiasScholz)
Revision 1.3.7 2014/09/25 syohex
- Fix case when global command generates warnings
Revision 1.3.6 2014/09/24 syohex
- Fix for Windows system
- Add action which opens buffer in other window
Revision 1.3.5 2014/09/14 syohex
- Bug fix for helm-gtags-tags-in-this-function
- Add persistent action of helm-gtags-tags-in-this-function
- Improve tag creation commands
Revision 1.3.4 2014/09/12 syohex
- Implement tag creation feature
- helm-gtags asks user about creating tag if tags is not found.
(Suggested by tuhdo)
Revision 1.3.3 2014/09/05 syohex
- Improve default tag name for rtag command
Revision 1.3.2 2014/09/03 syohex
- Add command 'helm-gtags-tags-in-this-function'
- Refactoring
Revision 1.3.1 2014/08/30 syohex
- Refactoring
- Fix wrong function call
Revision 1.3.0 2014/08/26 syohex
- Implement helm-dwim
- Fix helm-gtags-find-files issue
- Refactoring
Revision 1.2.9 2014/08/10 syohex
- Add recommendation keymaps
(Thanks kosaki-san!!)
Revision 1.2.8 2014/07/23 syohex
- Add helm-gtags-resume command
Revision 1.2.7 2014/06/08 syohex
- Support remote file for helm-gtags-find-tag-from-here
Thanks gifnksm
Revision 1.2.6 2014/03/28 syohex
- Improve highlighting (suggested by lbsx)
- Add feature use word at cursor as default(suggested by tuhdo)
Revision 1.2.5 2014/03/20 syohex
- Fix helm-gtags-show-stack issue(#40)
Reported by tuhdo
Revision 1.2.4 2014/03/12 syohex
- Improve getting symbol at cursor
Reported by byplayer
Revision 1.2.3 2014/03/11 syohex
- Implement 'helm-gtags-find-pattern' which looks like grep but fast
Thanks byplayer
Revision 1.2.2 2014/03/08 syohex
- Enable lexical binding
- Update requirement cl-lib version
Revision 1.2.1 2014/02/23 syohex
- Switch to cl-lib.el from cl.el
Revision 1.2.0 2014/02/22 syohex
- Fix missing source highlighting setting
Thanks lbsx
Revision 1.1.9 2014/02/21 syohex
- Support highlighting candidates
Thanks fgeller
Revision 1.1.8 2014/01/28 syohex
- Use buffer name instead of buffer object
Thanks nanasess
Revision 1.1.7 2014/01/25 syohex
- Support TRAMP
Revision 1.1.6 2013/12/27 syohex
- Introduce variable of limit of helm candidates
Revision 1.1.5 2013/12/13 syohex
- Update the location info in the stack if the cursor has moved before jumping
Thanks lbsx
Revision 1.1.4 2013/12/11 syohex
- Add customize flag of pulsing at cursor
Revision 1.1.3 2013/12/04 syohex
- Recenter after moving point
Thanks lbsx
Revision 1.1.2 2013/12/04 syohex
- Check exit status of global command
- back-to-indentation after jumping point
Thanks lbsx
Revision 1.1.1 2013/12/04 syohex
- Pulse highlight after jumping point
Advised by lbsx
Revision 1.1.0 2013/12/04 syohex
- Recenter after jumping to file for smooth scrolling
Thanks lbsx
Revision 1.0.9 2013/12/03 syohex
- Fix tag location issue
Thanks lbsx
Revision 1.0.8 2013/11/26 syohex
- Fix for latest helm and update dependency version
Thanks lbsx
Revision 1.0.7 2013/11/24 syohex
- Fix GTAGSLIBPATH issue(#13)
Thanks lbsx
Revision 1.0.6 2013/11/21 syohex
- Apply shell quote for file path(#17)
- Support GTAGSLIBPATH(#16)
Thanks jixiuf, lbsx, afa311
Revision 1.0.5 2013/11/20 syohex
- Implement context stack history commands
(Suggestion by lbsx)
Revision 1.0.4 2013/11/12 syohex
- Generate tags at other directory with 'C-u C-u' prefix
- Introduce interval of updating tags
(Suggestion by jixiuf)
Revision 1.0.3 2013/11/09 syohex
- Support cache for helm-gtags-select and helm-gtags-select-path
(Thanks lbsx)
Revision 1.0.2 2013/11/01 syohex
- Add command helm-gtags-select-path(Thanks lbsx)
Revision 1.0.1 2013/10/26 syohex
- Improve for persistent action(Thanks lbsx)
Revision 1.0.0 2013/10/25 syohex
- Add highlight line feature at persistent action
Revision 0.9.9 2013/09/25 syohex
- Implement helm-gtags-find-tag-from-here by pekatuu
Revision 0.9.8 2013/08/22 syohex
- Improve function which updates TAGS
(Synchronous -> Asynchronous)
Revision 0.9.7 2013/08/15 syohex
- Implement function which provides update TAGS, and auto update.
Revision 0.9.6 2013/07/31 syohex
- fix encoding problem
Revision 0.9.5 2013/07/17 syohex
- fix helm-gtags-select error(Thanks f-kubotar)
Revision 0.9.4 2013/06/26 syohex
- Implement helm-gtags-parse-file(EXPERIMENTAL)
Revision 0.9.3 2013/06/07 syohex
- Open other window if command has 'C--'(minus) prefix.
Revision 0.9.2 2013/05/24 syohex
- Context stack is allocated per GTAGS location
Revision 0.9.1 2013/03/28 syohex
- Fix for base directory setting bug(regression bug)
Revision 0.9 2013/03/28 syohex
- implement `helm-gtags-show-stack'
Revision 0.8 2013/03/09 syohex
- Rename function and variable names for new helm naming convention
- Set name of helm source to searched directory
Revision 0.7.1 2013/01/30 syohex
- Add history stack for completing-reading
Revision 0.7.0 2013/01/21 syohex
- Improve helm-gtags-find-files
Use helm file action now
Revision 0.6.2 2013/01/17 syohex
- Implement searching under current directory(with C-u C-u)
Revision 0.6.1 2013/01/15 syohex
- Add `autoload` directives to helm-gtags-select
Revision 0.6 2013/01/07 syohex
- Raise error if input string is empty
- Refactoring some functions
Revision 0.5 2012/11/19 syohex
- Add `helm-gtags-clear-stack' which clear point stack
- Add function document
- Add `autoload' directives to interactive functions
Revision 0.4 2012/08/30 syohex
- Fixed problem using helm-gtags.el with helm-mode
Revision 0.3 2012/07/20 syohex
- Implement helm-gtags-select(Experimental)
Revision 0.2 2012/07/17 syohex
- Implement read only flag
Revision 0.1 2012/07/16 syohex
- Initial version