host info updates
[distro-setup] / .vim / doc / bufexplorer.txt
1 *bufexplorer.txt* Buffer Explorer Last Change: 21 Dec 2007
2
3 Buffer Explorer *buffer-explorer* *bufexplorer*
4 Version 7.1.7
5
6 Plugin for easily exploring (or browsing) Vim |:buffers|.
7
8 |bufexplorer-usage| Usage
9 |bufexplorer-installation| Installation
10 |bufexplorer-customization| Customization
11 |bufexplorer-changelog| Change Log
12 |bufexplorer-todo| Todo
13 |bufexplorer-credits| Credits
14
15 For Vim version 7.0 and above.
16 This plugin is only available if 'compatible' is not set.
17
18 {Vi does not have any of this}
19
20 ==============================================================================
21 INSTALLATION *bufexplorer-installation*
22
23 To install:
24 - Download the bufexplorer.zip.
25 - Extract the zip archive into your runtime directory.
26 The archive contains plugin/bufexplorer.vim, and doc/bufexplorer.txt.
27 - Start Vim or goto an existing instance of Vim.
28 - Execute the following command:
29 >
30 :helptag <your runtime directory/doc
31 <
32 This will generate all the help tags for any file located in the doc
33 directory.
34
35 ==============================================================================
36 USAGE *bufexplorer-usage*
37
38 To start exploring in the current window, use: >
39
40 \be OR :BufExplorer
41
42 If you would like to use something other than '\', you may simply change the
43 leader (see |mapleader|).
44
45 Note: If the current buffer is modified when bufexplorer started, the current
46 window is always split and the new bufexplorer is displayed in that new
47 window.
48
49 Commands to use once exploring:
50
51 <enter> Opens the buffer that is under the cursor into the current
52 window.
53 <F1> Toggle help information.
54 <leftmouse> Opens the buffer that is under the cursor into the current
55 window.
56 <shift-enter> Opens the buffer that is under the cursor in another tab.
57 d |:wipeout| the buffer under the cursor from the list.
58 When a buffers is wiped, it will not be shown when unlisted
59 buffer are displayed.
60 D |:delete| the buffer under the cursor from the list.
61 The buffer's 'buflisted' is cleared. This allows for the buffer
62 to be displayed again using the 'show unlisted' command.
63 f Toggles whether you are taken to the active window when
64 selecting a buffer or not.
65 p Toggles the showing of a split filename/pathname.
66 q Quit exploring.
67 r Reverses the order the buffers are listed in.
68 R Toggles relative path/absolute path.
69 s Selects the order the buffers are listed in. Either by buffer
70 number, file name, file extension, most recently used (MRU), or
71 full path.
72 t Opens the buffer that is under the cursor in another tab.
73 u Toggles the showing of "unlisted" buffers.
74
75 Once invoked, Buffer Explorer displays a sorted list (MRU is the default
76 sort method) of all the buffers that are currently opened. You are then
77 able to move the cursor to the line containing the buffer's name you are
78 wanting to act upon. Once you have selected the buffer you would like,
79 you can then either open it, close it(delete), resort the list, reverse
80 the sort, quit exploring and so on...
81
82 ===============================================================================
83 CUSTOMIZATION *bufexplorer-customization*
84
85 *g:bufExplorerDefaultHelp*
86 To control whether the default help is displayed or not, use: >
87 let g:bufExplorerDefaultHelp=0 " Do not show default help.
88 let g:bufExplorerDefaultHelp=1 " Show default help.
89 The default is to show the default help.
90
91 *g:bufExplorerDetailedHelp*
92 To control whether detailed help is display by, use: >
93 let g:bufExplorerDetailedHelp=0 " Do not show detailed help.
94 let g:bufExplorerDetailedHelp=1 " Show detailed help.
95 The default is NOT to show detailed help.
96
97 *g:bufExplorerFindActive*
98 To control whether you are taken to the active window when selecting a buffer,
99 use: >
100 let g:bufExplorerFindActive=0 " Do not go to active window.
101 let g:bufExplorerFindActive=1 " Go to active window.
102 The default is to be taken to the active window.
103
104 *g:bufExplorerReverseSort*
105 To control whether to sort the buffer in reverse order or not, use: >
106 let g:bufExplorerReverseSort=0 " Do not sort in reverse order.
107 let g:bufExplorerReverseSort=1 " Sort in reverse order.
108 The default is NOT to sort in reverse order.
109
110 *g:bufExplorerShowDirectories*
111 Directories usually show up in the list from using a command like ":e .".
112 To control whether to show directories in the buffer list or not, use: >
113 let g:bufExplorerShowDirectories=1 " Show directories.
114 let g:bufExplorerShowDirectories=0 " Don't show directories.
115 The default is to show directories.
116
117 *g:bufExplorerShowRelativePath*
118 To control whether to show absolute paths or relative to the current
119 directory, use: >
120 let g:bufExplorerShowRelativePath=0 " Show absolute paths.
121 let g:bufExplorerShowRelativePath=1 " Show relative paths.
122 The default is to show absolute paths.
123
124 *g:bufExplorerShowUnlisted*
125 To control whether to show unlisted buffer or not, use: >
126 let g:bufExplorerShowUnlisted=0 " Do not show unlisted buffers.
127 let g:bufExplorerShowUnlisted=1 " Show unlisted buffers.
128 The default is to NOT show unlisted buffers.
129
130 *g:bufExplorerSortBy*
131 To control what field the buffers are sorted by, use: >
132 let g:bufExplorerSortBy='extension' " Sort by file extension.
133 let g:bufExplorerSortBy='fullpath' " Sort by full file path name.
134 let g:bufExplorerSortBy='mru' " Sort by most recently used.
135 let g:bufExplorerSortBy='name' " Sort by the buffer's name.
136 let g:bufExplorerSortBy='number' " Sort by the buffer's number.
137 The default is to sort by mru.
138
139 *g:bufExplorerSplitOutPathName*
140 To control whether to split out the path and file name or not, use: >
141 let g:bufExplorerSplitOutPathName=1 " Split the path and file name.
142 let g:bufExplorerSplitOutPathName=0 " Don't split the path and file
143 " name.
144 The default is to split the path and file name.
145
146 ===============================================================================
147 CHANGE LOG *bufexplorer-changelog*
148
149 7.1.7 - Fixes:
150 * TaCahiroy fixed several issues related to opening a buffer in a
151 tab.
152 7.1.6 - Fixes:
153 * Removed ff=unix from modeline in bufexplorer.txt. Found by Bill
154 McCarthy.
155 7.1.5 - Fixes:
156 * Could not open unnamed buffers. Fixed by TaCahiroy.
157 7.1.4 - Fixes:
158 * Sometimes when a file's path has 'white space' in it, extra buffers
159 would be created containing each piece of the path. i.e:
160 opening c:\document and settings\test.txt would create a buffer
161 named "and" and a buffer named "Documents". This was reported and
162 fixed by TaCa Yoss.
163 7.1.3 - Fixes:
164 * Added code to allow only one instance of the plugin to run at a
165 time. Thanks Dennis Hostetler.
166 7.1.2 - Fixes:
167 * Fixed a jumplist issue spotted by JiangJun. I overlooked the
168 'jumplist' and with a couple calls to 'keepjumps', everything is
169 fine again.
170 * Went back to just having a plugin file, no autoload file. By having
171 the autoload, WinManager was no longer working and without really
172 digging into the cause, it was easier to go back to using just a
173 plugin file.
174 7.1.1 - Fixes:
175 * A problem spotted by Thomas Arendsen Hein.
176 When running Vim (7.1.94), error E493 was being thrown.
177 Enhancements:
178 * Added 'D' for 'delete' buffer as the 'd' command was a 'wipe'
179 buffer.
180 7.1.0 - Another 'major' update, some by Dave Larson, some by me.
181 * Making use of 'autoload' now to make the plugin load quicker.
182 * Removed '\bs' and '\bv'. These are now controlled by the user. The
183 user can issue a ':sp' or ':vs' to create a horizontal or vertical
184 split window and then issue a '\be'
185 * Added handling of tabs.
186 7.0.17 - Fixed issue with 'drop' command.
187 Various enhancements and improvements.
188 7.0.16 - Fixed issue reported by Liu Jiaping on non Windows systems, which was
189 ...
190 Open file1, open file2, modify file1, open bufexplorer, you get the
191 following error:
192
193 --------8<--------
194 Error detected while processing function
195 <SNR>14_StartBufExplorer..<SNR>14_SplitOpen:
196 line 4:
197 E37: No write since last change (add ! to override)
198
199 But the worse thing is, when I want to save the current buffer and
200 type ':w', I get another error message:
201 E382: Cannot write, 'buftype' option is set
202 --------8<--------
203
204 7.0.15 - Thanks to Mark Smithfield for suggesting bufexplorer needed to handle
205 the ':args' command.
206 7.0.14 - Thanks to Randall Hansen for removing the requirement of terminal
207 versions to be recompiled with 'gui' support so the 'drop' command
208 would work. The 'drop' command is really not needed in terminal
209 versions.
210 7.0.13 - Fixed integration with WinManager.
211 Thanks to Dave Eggum for another update.
212 - Fix: The detailed help didn't display the mapping for toggling
213 the split type, even though the split type is displayed.
214 - Fixed incorrect description in the detailed help for toggling
215 relative or full paths.
216 - Deprecated s:ExtractBufferNbr(). Vim's str2nr() does the same
217 thing.
218 - Created a s:Set() function that sets a variable only if it hasn't
219 already been defined. It's useful for initializing all those
220 default settings.
221 - Removed checks for repetitive command definitions. They were
222 unnecessary.
223 - Made the help highlighting a little more fancy.
224 - Minor reverse compatibility issue: Changed ambiguous setting
225 names to be more descriptive of what they do (also makes the code
226 easier to follow):
227 Changed bufExplorerSortDirection to bufExplorerReverseSort
228 Changed bufExplorerSplitType to bufExplorerSplitVertical
229 Changed bufExplorerOpenMode to bufExplorerUseCurrentWindow
230 - When the BufExplorer window closes, all the file-local marks are
231 now deleted. This may have the benefit of cleaning up some of the
232 jumplist.
233 - Changed the name of the parameter for StartBufExplorer from
234 "split" to "open". The parameter is a string which specifies how
235 the buffer will be open, not if it is split or not.
236 - Deprecated DoAnyMoreBuffersExist() - it is a one line function
237 only used in one spot.
238 - Created four functions (SplitOpen(), RebuildBufferList(),
239 UpdateHelpStatus() and ReSortListing()) all with one purpose - to
240 reduce repeated code.
241 - Changed the name of AddHeader() to CreateHelp() to be more
242 descriptive of what it does. It now returns an array instead of
243 updating the window directly. This has the benefit of making the
244 code more efficient since the text the function returns is used a
245 little differently in the two places the function is called.
246 - Other minor simplifications.
247 7.0.12 - MAJOR Update.
248 This version will ONLY run with Vim version 7.0 or greater.
249 Dave Eggum has made some 'significant' updates to this latest
250 version:
251 - Added BufExplorerGetAltBuf() global function to be used in the
252 user\92s rulerformat.
253 - Added g:bufExplorerSplitRight option.
254 - Added g:bufExplorerShowRelativePath option with mapping.
255 - Added current line highlighting.
256 - The split type can now be changed whether bufexplorer is opened
257 in split mode or not.
258 - Various major and minor bug fixes and speed improvements.
259 - Sort by extension.
260 Other improvements/changes:
261 - Changed the help key from '?' to <F1> to be more 'standard'.
262 - Fixed splitting of vertical bufexplorer window.
263 Hopefully I have not forgot something :)
264 7.0.11 - Fixed a couple of highlighting bugs, reported by David Eggum. He also
265 changed passive voice to active on a couple of warning messages.
266 7.0.10 - Fixed bug report by Xiangjiang Ma. If the 'ssl' option is set,
267 the slash character used when displaying the path was incorrect.
268 7.0.9 - Martin Grenfell found and eliminated an annoying bug in the
269 bufexplorer/winmanager integration. The bug was were an
270 annoying message would be displayed when a window was split or
271 a new file was opened in a new window. Thanks Martin!
272 7.0.8 - Thanks to Mike Li for catching a bug in the WinManager integration.
273 The bug was related to the incorrect displaying of the buffer
274 explorer's window title.
275 7.0.7 - Thanks to Jeremy Cowgar for adding a new enhancement. This
276 enhancement allows the user to press 'S', that is capital S, which
277 will open the buffer under the cursor in a newly created split
278 window.
279 7.0.6 - Thanks to Larry Zhang for finding a bug in the "split" buffer code.
280 If you force set g:bufExplorerSplitType='v' in your vimrc, and if you
281 tried to do a \bs to split the bufexplorer window, it would always
282 split horizontal, not vertical. He also found that I had a typeo in
283 that the variable g:bufExplorerSplitVertSize was all lower case in
284 the documentation which was incorrect.
285 7.0.5 - Thanks to Mun Johl for pointing out a bug that if a buffer was
286 modified, the '+' was not showing up correctly.
287 7.0.4 - Fixed a problem discovered first by Xiangjiang Ma. Well since I've
288 been using vim 7.0 and not 6.3, I started using a function (getftype)
289 that is not in 6.3. So for backward compatibility, I conditionaly use
290 this function now. Thus, the g:bufExplorerShowDirectories feature is
291 only available when using vim 7.0 and above.
292 7.0.3 - Thanks to Erwin Waterlander for finding a problem when the last
293 buffer was deleted. This issue got me to rewrite the buffer display
294 logic (which I've wanted to do for sometime now).
295 Also great thanks to Dave Eggum for coming up with idea for
296 g:bufExplorerShowDirectories. Read the above information about this
297 feature.
298 7.0.2 - Thanks to Thomas Arendsen Hein for finding a problem when a user
299 has the default help turned off and then brought up the explorer. An
300 E493 would be displayed.
301 7.0.1 - Thanks to Erwin Waterlander for finding a couple problems.
302 The first problem allowed a modified buffer to be deleted. Opps! The
303 second problem occurred when several files were opened, BufExplorer
304 was started, the current buffer was deleted using the 'd' option, and
305 then BufExplorer was exited. The deleted buffer was still visible
306 while it is not in the buffers list. Opps again!
307 7.0.0 - Thanks to Shankar R. for suggesting to add the ability to set
308 the fixed width (g:bufExplorerSplitVertSize) of a new window
309 when opening bufexplorer vertically and fixed height
310 (g:bufExplorerSplitHorzSize) of a new window when opening
311 bufexplorer horizontally. By default, the windows are normally
312 split to use half the existing width or height.
313 6.3.0 - Added keepjumps so that the jumps list would not get cluttered with
314 bufexplorer related stuff.
315 6.2.3 - Thanks to Jay Logan for finding a bug in the vertical split position
316 of the code. When selecting that the window was to be split
317 vertically by doing a '\bv', from then on, all splits, i.e. '\bs',
318 were split vertically, even though g:bufExplorerSplitType was not set
319 to 'v'.
320 6.2.2 - Thanks to Patrik Modesto for adding a small improvement. For some
321 reason his bufexplorer window was always showing up folded. He added
322 'setlocal nofoldenable' and it was fixed.
323 6.2.1 - Thanks goes out to Takashi Matsuo for added the 'fullPath' sorting
324 logic and option.
325 6.2.0 - Thanks goes out to Simon Johann-Ganter for spotting and fixing a
326 problem in that the last search pattern is overridden by the search
327 pattern for blank lines.
328 6.1.6 - Thanks to Artem Chuprina for finding a pesky bug that has been around
329 for sometime now. The <esc> key mapping was causing the buffer
330 explored to close prematurely when vim was run in an xterm. The <esc>
331 key mapping is now removed.
332 6.1.5 - Thanks to Khorev Sergey. Added option to show default help or not.
333 6.1.4 - Thanks goes out to Valery Kondakoff for suggesting the addition of
334 setlocal nonumber and foldcolumn=0. This allows for line numbering
335 and folding to be turned off temporarily while in the explorer.
336 6.1.3 - Added folding. Did some code cleanup. Added the ability to force the
337 newly split window to be temporarily vertical, which was suggested by
338 Thomas Glanzmann.
339 6.1.2 - Now pressing the <esc> key will quit, just like 'q'.
340 Added folds to hide winmanager configuration.
341 If anyone had the 'C' option in their cpoptions they would receive
342 a E10 error on startup of BufExplorer. cpo is now saved, updated and
343 restored. Thanks to Charles E Campbell, Jr.
344 Attempted to make sure there can only be one BufExplorer window open
345 at a time.
346 6.1.1 - Thanks to Brian D. Goodwin for adding toupper to FileNameCmp. This
347 way buffers sorted by name will be in the correct order regardless of
348 case.
349 6.0.16 - Thanks to Andre Pang for the original patch/idea to get bufexplorer
350 to work in insertmode/modeless mode (evim). Added Initialize
351 and Cleanup autocommands to handle commands that need to be
352 performed when starting or leaving bufexplorer.
353 6.0.15 - Srinath Avadhanulax added a patch for winmanager.vim.
354 6.0.14 - Fix a few more bug that I thought I already had fixed. Thanks
355 to Eric Bloodworth for adding 'Open Mode/Edit in Place'. Added
356 vertical splitting.
357 6.0.13 - Thanks to Charles E Campbell, Jr. for pointing out some embarrassing
358 typos that I had in the documentation. I guess I need to run
359 the spell checker more :o)
360 6.0.12 - Thanks to Madoka Machitani, for the tip on adding the augroup command
361 around the MRUList autocommands.
362 6.0.11 - Fixed bug report by Xiangjiang Ma. '"=' was being added to the
363 search history which messed up hlsearch.
364 6.0.10 - Added the necessary hooks so that the Srinath Avadhanula's
365 winmanager.vim script could more easily integrate with this script.
366 Tried to improve performance.
367 6.0.9 - Added MRU (Most Recently Used) sort ordering.
368 6.0.8 - Was not resetting the showcmd command correctly.
369 Added nifty help file.
370 6.0.7 - Thanks to Brett Carlane for some great enhancements. Some are added,
371 some are not, yet. Added highlighting of current and alternate
372 filenames. Added splitting of path/filename toggle. Reworked
373 ShowBuffers().
374 Changed my email address.
375 6.0.6 - Copyright notice added. Needed this so that it could be distributed
376 with Debian Linux. Fixed problem with the SortListing() function
377 failing when there was only one buffer to display.
378 6.0.5 - Fixed problems reported by David Pascoe, in that you where unable to
379 hit 'd' on a buffer that belonged to a files that no longer existed
380 and that the 'yank' buffer was being overridden by the help text when
381 the bufexplorer was opened.
382 6.0.4 - Thanks to Charles Campbell, Jr. for making this plugin more plugin
383 *compliant*, adding default keymappings of <Leader>be and <Leader>bs
384 as well as fixing the 'w:sortDirLabel not being defined' bug.
385 6.0.3 - Added sorting capabilities. Sort taken from explorer.vim.
386 6.0.2 - Can't remember.
387 6.0.1 - Initial release.
388
389 ===============================================================================
390 TODO *bufexplorer-todo*
391
392 - The issuing of a ':bd' command does not always remove the buffer number from
393 the MRU list.
394 - Look into adding '\bs' (buffer split) command back into the code.
395
396 ===============================================================================
397 CREDITS *bufexplorer-credits*
398
399 Author: Jeff Lanzarotta <delux256-vim at yahoo dot com>
400
401 Credit must go out to Bram Moolenaar and all the Vim developers for
402 making the world's best editor (IMHO). I also want to thank everyone who
403 helped and gave me suggestions. I wouldn't want to leave anyone out so I
404 won't list names.
405
406 ===============================================================================
407 vim:tw=78:noet:wrap:ts=8:ft=help:norl: