Sven [email protected] ©1995-2002 | Latest change: Sun Mar 03 15:00:00 MET 2002 |
Got a good program/script/tool/utility for use with VI or VIM? Let me know!
Programs distributed with Vim:
Programs distributed without Vim: Scripts:
Alternatively, Ctags can generate a cross reference file which lists, in human readable form, information about the various objects found in a set of C language files.
Tag index files are supported by the vi(1) editor and its derivatives (such as vim, elvis, stevie, and xvi) through the use of the :ta command, and by the emacs editor through the use of the Meta-. command, both of which locate the object associated with a name appearing in a source file and jump to the file and line which defines the name.
http://ctags.sourceforge.net http://sourceforge.net/projects/ctags/ http://www.appwatch.com/Linux/App/620/data.html
Overview: Programs distributed without Vim:
foo bar blah blah blah blah tralala tralalaLet's assume you want to put a comment box around the lines. Adding the start and end of the comment is easy:
/** * foo bar blah * * blah blah blah * * tralala tralala * ******************Note: The last line shows how big the box should get. Now add some text to the end of the lines you want to put into a box - highlight the lines, press ':', then enter the command :s/$/ */:
/** * foo bar blah * * blah blah blah * * tralala tralala * ******************Now apply "tal" those lines - :'<,'>!tal
/* * * foo bar blah * * blah blah blah * * tralala tralala * ***************** *Now, all you need to do is change the added space to complete the box:
/****************** * foo bar blah * * blah blah blah * * tralala tralala * ******************/I do hope that this can be added to Vim's internal text formatting.
input: Stadt Land Fluss Berlin Berlin Spree Heidelberg Baden-Württemberg Neckar Bonn who-cares Rhein München Bayern Isar output: Stadt Land Fluss Berlin Berlin Spree Heidelberg Baden-Württemberg Neckar Bonn who-cares Rhein München Bayern Isar
Quite some dictionaries at that site. Anyone know of a better one?
URL: http://www.math.fu-berlin.de/~guckes/vim/util.html URL: https://www.vim8.org/util.html (mirror) Created: Thu Jan 01 00:00:00 CET 1998Send feedback on this page to