-
Notifications
You must be signed in to change notification settings - Fork 13
/
CHANGES.TXT
241 lines (221 loc) · 11.4 KB
/
CHANGES.TXT
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
0.1
- Initial release
0.2
- exists('b:quickfixsigns_balloonexpr')
0.3
- Old signs weren't always removed
- Avoid "flicker" etc.
- g:quickfixsigns_max: Don't display signs if the list is longer than n items.
Incompatible changes:
- Removed g:quickfixsigns_show_marks variable
- g:quickfixsigns_marks: Marks that should be used for signs
- g:quickfixsigns_lists: event field is a list
- g:quickfixsigns_lists: timeout field: don't re-display this list more often than n seconds
0.4
- FIX: Error when g:quickfixsigns_marks = [] (thanks Ingo Karkat)
- s:ClearBuffer: removed old code
- QuickfixsignsMarks(state): Switch the display of marks on/off.
0.5
- Set balloonexpr only if empty (don't try to be smart)
- Disable CursorMoved(I) events, when &lazyredraw isn't set.
0.6
- Don't require qfl.item.text to be set
0.7
- b:noquickfixsigns: If true, disable quickfixsigns for the current
buffer (patch by Sergey Khorev; must be set before entering a buffer)
- b:quickfixsigns_ignore_marks: A list of ignored marks (per buffer)
0.8
- Support for relative line numbers
- QuickfixsignsSet command
- quickfixsigns#RelNumbersOnce()
0.9
- Support for vcs diff (this requires either b:vcs_type or
b:VCSCommandVCSType to be set to a supported vcs, e.g. git)
version: "0.10"
- quickfixsigns#vcsdiff#GuessType(): use b:git_dir if set (by fugitive)
- vcsdiff: Support for hg, svn
- run qfl/loc checks more also on CursorHold & QuickfixCommandPost events
- Experimental support for icons (currently assumes that gnome icons 16x16 are ok)
- Support for sign classes that affect all buffers (all_buffers != 0)
- Avoid unnecessary updates
- Simplify handling of ids (construct a global id based on the sign definition)
- Include icons from the open icon library
- marks: Don't use own ID generator
- s:PruneRegister()
- Don't display icons on windows
MD5 checksum: 2ba95f98307ea61db8de28d6e60fb61b
version: "0.11"
- Don't check the buffer number in s:ClearBuffer()
- Improved handling of scopes (vim, buffer)
- Always include the bufnr in the ID
- FIX: upper case marks
- Increase g:quickfixsigns_max = 500
MD5 checksum: 6fa3a5dd60e62af094f7f7fe41d8695f
version: "0.12"
- 'test' field; additional test if a sign should be updated (e.g. update _cursor only if lnum has changed)
- breakpoints (currently vim only)
- set g:quickfixsigns#vcsdiff#loaded
- g:quickfixsigns_class_cursor: remove test (interferes with put & delete-like commands)
- breakpoints: test for a known filetype
- QuickfixsignsSet(event, ?classes=[])
- Disable the 'cursor' class by default.
- Set b:quickfixsigns_last_line
MD5 checksum: 936abcfd67be7efe52fb0f85481c8665
version: "0.13"
- QuickfixsignsSelect(): check if g:quickfixsigns_class_{what} exists
MD5 checksum: 833e1a48f7a3d7460ae29795fb328be4
version: "0.14"
- Take more care to run autocommands on the right buffer
- vcsdiff: always run the vcs command in the buffer's directory
- make last_run buffer-local
- QuickfixsignsBalloon: Error after recent change
- .gitignore
- Merge branch 'master' of github.com:tomtom/quickfixsigns_vim
- Support for git combined diff format
- Don't run vcsdiff#GetList() in special buffers (reported by rememberthemer)
- Doc review
- Do not change directory to current buffer's.
- Included the doc fixes by blueyed into the doc template.
- Merge git://github.com/blueyed/quickfixsigns_vim
- quickfixsigns#vcsdiff#GetList(): Ignore files that are not readable
- s:PlaceSign(): E706: Variable type mismatch for: item https://github.com/tomtom/quickfixsigns_vim/issues/#issue/7
- s:SetItemId() returns {} if item.bufnr == -1 (fix issue #7?)
- quickfixsigns#RelNumbersOnce(): temporarily enable &cul and &cuc
- s:ClearBuffer(): Check bufnr(def.bufnr) != -1 (issue #9)
- quickfixsigns#RelNumbersOnce(): Remove highlighting also on TabLeave and WinLeave events
- Clear*(): duplicate code
- always_new: avoid wrong optimizations for certain sign classes (e.g. vcsdiff), fixes #10
MD5 checksum: 542b6deeb5a0505f5bd6cfcaaeca9c57
version: "1.00"
- g:quickfixsigns_debug, quickfixsigns#AssertUniqueSigns()
- Be smarter at detecting old signs that already exist: s:SignExistsAt() etc.
- debugging
- if !exists('g:quickfixsigns_class_rel2')
- QuickfixsignsSet: clean up
- QuickfixsignsDisable, QuickfixsignsEnable commands (fixes #12)
- Don't call QuickfixsignsSet during startup (fixes #13)
- Use full filenames
- GetLocList(): call getloclist with the window number
- quickfixsigns#AssertUniqueSigns: Debug message includes bufnr
- s:GetScopeTest(): Build query in advance if possible
- QuickfixsignsRemoveBuffer() on BufDelete events
- don't allow external diff applications for git
- Make the highlight group for mark sign user configurable (teranex)
- Distinguish between buffer-local and global marks
- Try 1 to fix SetItemId etc.
- Explicitely set the sign level for most sign classes
- Make sure item.sign is the actual sign (not a generator function)
- Events for "cursor" class: BufEnter, CursorHoldI?, CursorMovedI?
- Removed use of always_new
- vcsdiff: Changed how DEL lines are displayed
- Remove s:PruneRegister()
- Debug: quickfixsigns#CheckBuffers()
- autocmd BufDelete: Forgot the pattern
- Don't place signs for unloaded buffers
- call QuickfixsignsRemoveBuffer() also on BufUnload
- Rename quickfixsigns#CheckBuffers() -> quickfixsigns#AssertNoObsoleteBuffers(register)
- Update line numbers in order to avoid unnecessarily setting signs
- s:UpdateLineNumbers(): Debug messages on internal errors
- g:quickfixsigns#use_relativenumber = v:version >= 703
- Call cd only for diff command (don't cd vim's dir; fixes #15)
- Reset ikey after updating line numbers (avoid inconsistent registry entries & duplicate signs)
- Call QuickfixsignsRemoveBuffer() also on BufWipeout events
- Call s:PurgeRegister() on CursorHoldI? events
- s:BufferSigns(): Return empty list if :sign-place returns fewer than 2 lines
- BufferSigns(): Show debug message only if g:quickfixsigns_debug is true
- Update signs also in QuickfixsignsBalloon()
- Update signs also in QuickfixsignsBalloon()
- QuickfixsignsBalloon(): Don't update signs (undo previous change)
- Guess vcs type (replaced g:quickfixsigns#vcsdiff#cmds with g:quickfixsigns#vcsdiff#vcs)
- Search for guess vcs type only once.
- quickfixsigns#vcsdiff#GetList(): Set last_del also on CHANGEs
- Consistently use bufloaded
- UpdateLineNumbers(): Remove old items only when the items match
- Display "Invalid lnum" message only when g:quickfixsigns_debug is set (fixes #16)
- UpdateLineNumbers(): Avoid duplicate signs
- Support for bzr
- quickfixsigns#vcsdiff#GuessType(): Make sure to pick the lower repo directory
- Run brz diff with -U0
- Show diffs on first and last line
- Make svn diff use "diff -U0"
- UpdateLineNumbers(): Use str2nr(), not char2nr()
MD5 checksum: 00e4af7843f2619e55ee3cee3e614240
version: "1.01"
- Debug: Removed check for invalid line numbers (e.g. fugitive's Glog uses qfl for file lists only)
- QuickfixsignsRemoveBuffer(): take a bufnr as argument (not a bufname)
- Rename QuickfixsignsRemoveBuffer() to s:RemoveBuffer()
- Call s:PurgeRegister() on BufLeave events (not CursorHold)
- quickfixsigns#AssertUniqueSigns(): Additional debug message: Empty bsign1
- s:Redir(): Protect against verbose != 0
- QuickfixsignsUnique(): Collapse multiple items at one line
- QuickfixsignsBalloon(): Make sure the balloon text doesn't include \n if !has('balloon_multiline')
- s:UpdateLineNumbers(): Don't update line numbers if bufnr <= 0
- g:quickfixsigns_class_loc: Update on QuickFixCmdPost events
- QuickfixsignsSelect(): Clear unselected signs
- QuickfixsignsSet(): match g:quickfixsigns_blacklist_buffer against the base filename
- QuickfixsignsToggle command
- s:Redir: Deal with :redir bug
- Merge branch 'toggle' of https://github.com/iNecas/quickfixsigns_vim
- Blacklist buffers used by nerdtree & minibufferexplorer (fixes #23).
- Optional enhancement: use tinykeymap (vimscript #4199) to move between signs/sign groups (closes #24)
- quickfixsigns#AssertUniqueSigns(): buffer sign is a dictionary now; use bsign.sign
- readme: don't mention tlib as dependency (fixes #25)
- UpdateLineNumbers(): bufnrsigns[sign.id] = sign.lnum
- b:quickfixsigns_ignore: Ignore sign classes per buffer
- addon-info
- allow to customize QFS_VCS_* signs
- Avoid irrelevant checks when no buffer signs will be displayed
MD5 checksum: 8dbfd054978cc99491cf9fbe150cd636
- vcsdiff: Trigger on BufRead instead of BufEnter events (fixes #30)
- vcsdiff: Trigger update on FocusGained events
- vcsdiff: cache intermediate results
- quickfixsigns#vcsdiff#GetList(): Make sure to return a list (fixes #32)
- vcsdiff: Change signs to be more like diff -y
- vcsdiff: Removed FocusGained event (fixes #33)
- Don't unplace signs on BufUnload events
- Merge branch 'master' of https://github.com/Chronial/vim-quickfixsigns into vcsdiff_deletes
- vcsdiff: Support for alternative list display (see https://github.com/Chronial/vim-quickfixsigns/commit/1cf739c790746157c3cb9b6234c1454333397c9e)
- QuickfixsignsBalloon(): use elseif
- Help template
- Blacklist unite buffers
- Provide an example with "Sign Regexp" input
- Fix off-by-one error
- Display debug message, if quickfixsigns_max is reached
- Merge branch 'debug-info-with-max-reached' of https://github.com/blueyed/quickfixsigns_vim
- Support for setting maxsigns per class (closes #38)
- g:quickfixsigns#vcsdiff#list_type defaults to 1; use scriptencoding
- g:quickfixsigns#vcsdiff#del_numbered: If enabled, add a number to DEL signs to indicate the number of deleted lines (fixes #37)
- Use own colors
MD5 checksum: df86c09e3a6fca2f363fcfd2af7d9fd5
version: "1.02"
version: "1.03"
- FIX: set quickfix signs when loaded after vim_starting
- Additional icon files from the open icon library
- Use different signs for errors & warnings (closes #42)
- g:quickfixsign_type_rx: patch suboptimal 'errorformat' definitions (fix #42)
- Changed icons
- FIX #42: Use "*" if &ft is empty (it is never unset)
- Configurable g:quickfixsign_timeout (default value for timeout option)
- Remove InsertChange from g:quickfixsigns_events
- g:quickfixsigns_blacklist_buffer matches full filename (don't check buffers with empty filenames)
- Minor improvements to avoid unnecessary updates (fix #43)
- Call s:UpdateLineNumbers() only if necessary
- g:quickfixsign_use_dummy: Option to set dummy sign (fix #44)
- Make sure to use new IDs for dummy signs
- Set the dummy sign ID correctly
- g:quickfixsign_use_dummy defaults to 1
- g:quickfixsigns_class_vcsdiff: Update on FocusGained events
- Add -bar to command definitions
- Call s:UpdateLineNumbers() only when the list has actually changed
- g:quickfixsigns_class_vcsdiff: Remove FocusGained event Caused infinite loop when calling git etc.
- doc: fix grammar/typos with "Adding new sign classes"
- :QuickfixsignsSet: Takes sign classes as optional arguments
- quickfixsigns_register is script-local; FIX #47: Use g:quickfixsigns_lists to toggle state
- Call RemoveBuffer on BufDelete, not BufUnload (fix #46)
MD5 checksum: 415d45c58cbbce01e276d80685ce3096
- FIX #48: Omit 3rd arg for getbufvar() (vim 7.3 compatibility)
MD5 checksum: 556e79d0556d77801d76c634f7a3be50
version: "1.04"
- FIX: regexp-related error @ windows: properly escape backslashes
MD5 checksum: 7e465b9bdccd1736746d8f02ba4637e9
version: "1.05"