-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Changes
219 lines (156 loc) · 6.25 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
Revision history for anzu.el
Revision 0.64 2020/12/02 nokamoto
- default anzu-search-threshold and anzu-replace-threshold is 1000 (#113)
- support non-contiguous regions like rectangle region (#115)
Revision 0.62 2016/08/18 syohex
- Don't search over bounds(#80)
- Correct variable type attribute(#76 Thanks Matus Goljer)
Revision 0.61 2016/06/17 syohex
- Don't overwrite user's case-fold-search(#75)
- Implement anzu's isearch-query-replace commands(#72)
Revision 0.60 2016/01/31 syohex
- Add replacement threshold(#66)
- Refactoring code
Revision 0.59 2015/10/15 syohex
- Fix replacement around region issue(#63 Thanks akicho8)
Revision 0.58 2015/10/09 syohex
- Fix byte-compile warning(#63 Thanks tarsius)
Revision 0.57 2015/09/29 syohex
- Fix about migemo exception(#62 Reported by kosh04)
Revision 0.56 2015/09/13 syohex
- Fix literal replacement issue(#60 Thanks kosh04)
Revision 0.55 2015/09/11 syohex
- anzu--status declare as buffer local variable
Revision 0.54 2015/08/03 syohex
- Correct removed hook function name. This makes anzu information is shown if anzu-mode
is disabled.
Revision 0.53 2015/05/18 syohex
- Fix raising invalid regexp error issue(Thanks kosh04)
- Valid replaced regular expression in regexp replace commands
Revision 0.52 2015/02/22 syohex
- Fix default input issue(Reported by pronobis)
Revision 0.51 2015/02/18 syohex
- Improve new history feature of Emacs 25
(This feature works on both Emacs 24 and 25)
Revision 0.50 2015/02/11 syohex
- Fix Emacs 24 issue(Reported by LefterisJP)
Can't use both anzu replace commands and builtin replacements commands
Revision 0.49 2015/02/04 syohex
- Fix zero width replacement causes infinite loop issue(Reported by proofit404)
Revision 0.48 2015/01/28 syohex
- Fix case when expression(,(...)) cannot be compiled.
Revision 0.47 2015/01/21 syohex
- Fix displaying wrong current position in replacement commands
Revision 0.46 2015/01/10 syohex
- Refactoring for evil-anzu
Revision 0.45 2015/01/09 syohex
- Disable blink-matching-paren in replace commands
Revision 0.44 2014/12/16 syohex
- Improve replacement commands
- show case sensitive replacement text
- Fix storing replacement history format issue
- We could not use anzu replace commands with normal replacement
commands such as query-replace etc.
Revision 0.43 2014/11/30 syohex
- Re-factoring for using migemo variable(Thanks lunaryorn)
Revision 0.42 2014/11/28 syohex
- Replacement by case sensitive for at-cursor commands
Revision 0.41 2014/10/06 syohex
- Improve checking whether using migemo
Revision 0.40 2014/10/03 syohex
- Fix replace command bug when using '^' or 'no' command
Revision 0.39 2014/09/19 syohex
- Fix bug case when bounds-of-thing-at-point returns nil
Revision 0.38 2014/09/06 syohex
- Improve replace command suggested by DamienCassou
Revision 0.37 2014/08/27 syohex
- Fix for isearch toggle commands and symbol search
- Improve mode line in replacing commands
Revision 0.36 2014/07/04 syohex
- Implement replacement only specified lines
Revision 0.35 2014/04/23 syohex
- Change function name for maintenance
Revision 0.34 2014/03/28 syohex
- Fix replacement issue
Reported by purcell.
Revision 0.33 2014/03/19 syohex
- Fix byte compile warnings for Emacs 24.3
Revision 0.32 2014/03/08 syohex
- Specify Emacs version
Revision 0.31 2014/03/07 syohex
- Enable lexical-binding
- Update requirement cl-lib.el version
Revision 0.30 2014/02/02 syohex
- Fix wrong prompt issue
Revision 0.29 2014/02/02 syohex
- Add no query replace command
- Use cl-lib instead of cl.el
Revision 0.28 2014/01/29 syohex
- Fix ignore case issue
Revision 0.27 2014/01/27 syohex
- Fix non prefix issue
Revision 0.26 2014/01/16 syohex
- Fix #13 issue
https://github.com/syohex/emacs-anzu/issues/13
Reported by fukamachi
Revision 0.25 2014/01/16 syohex
- Support backward replacement for Emacs 24.4
Revision 0.24 2013/11/20 syohex
- Fix invalid return type of 'anzu-replace-to-string-separator'
Revision 0.23 2013/11/08 syohex
- Add 'anzu-replace-to-string-separator' for separator of 'to' string
Revision 0.22 2013/11/06 syohex
- Fix issue when using isearch-repeat-{forward,backward}
Revision 0.21 2013/11/05 syohex
- Fix different behavior from query-replace-regexp
Revision 0.20 2013/11/01 syohex
- Fix case of 0 width match such as '^', '$'
- Improve replace commands(We can use \#, \1 in \,(...))
- Re-factoring
Revision 0.19 2013/10/30 syohex
- Fix autoload cookie
- Implement anzu-query-replace-at-cursor-thing
Revision 0.18 2013/10/30 syohex
- Add switch of deactivate region feature
- Improve anzu-query-replace-at-cursor behavior
Revision 0.17 2013/10/28 syohex
- Fix case fold issue
Revision 0.16 2013/10/27 syohex
- Improve for performance at not regexp replace command
Revision 0.15 2013/10/26 syohex
- Improve replacement commands
Revision 0.14 2013/10/26 syohex
- Implement 'anzu-query-replace-at-cursor'
Revision 0.13 2013/10/23 syohex
- Add feature like evil's replacement
Revision 0.12 2013/10/21 syohex
- Re-factoring: reduce global variables
Revision 0.11 2013/10/21 syohex
- Change mode-line message at replace commands
Revision 0.10 2013/10/20 syohex
- Add feature that highlight replaced texts
Revision 0.09 2013/10/19 syohex
- Implement 'anzu-replace-query' and 'anzu-replace-query-regexp'
Revision 0.08 2013/10/16 syohex
- Fix that error message is displayed when regexp validation is failed
Revision 0.07 2013/10/01 syohex
- Introduce anzu-search-threshold
Revision 0.06 2013/09/30 syohex
- Introduce anzu-minimum-input-length
This is useful for migemo users
Revision 0.05 2013/09/28 syohex
Thanks Steve Purcell !!
- Improve description line
Revision 0.04 2013/09/28 syohex
Thanks Bozhidar Batsov!!
- Improve documentation
- Fix byte compile warning
Revision 0.03 2013/09/22 syohex
- Check isearch-regexp value for checking regexp search
Revision 0.02 2013/09/22 syohex
- Support display search information at any position in mode-line
(Suggest by gvol)
- Fix case that input is anchor(Report by dakrone)
- Improve non regexp search
Revision 0.01 2013/09/20 syohex
- Initial version