diff options
author | rh <rh@pkgsrc.org> | 1999-08-08 09:33:52 +0000 |
---|---|---|
committer | rh <rh@pkgsrc.org> | 1999-08-08 09:33:52 +0000 |
commit | 9e242c6e109e3175afd6fbbc20b639fb84ecab84 (patch) | |
tree | 3bd159034e08a6d2f7d9f6946b9886d0a87ace85 /editors/vim-gtk | |
parent | e3e0a0d2aa6da48941b08d7c9cd537f1cc09d882 (diff) | |
download | pkgsrc-9e242c6e109e3175afd6fbbc20b639fb84ecab84.tar.gz |
Initial import of vim-gtk, a VIM variant with the optional gui using GTK+
instead of Xaw.
Diffstat (limited to 'editors/vim-gtk')
-rw-r--r-- | editors/vim-gtk/Makefile | 29 | ||||
-rw-r--r-- | editors/vim-gtk/files/md5 | 4 | ||||
-rw-r--r-- | editors/vim-gtk/files/patch-sum | 8 | ||||
-rw-r--r-- | editors/vim-gtk/patches/patch-aa | 22 | ||||
-rw-r--r-- | editors/vim-gtk/patches/patch-ab | 23 | ||||
-rw-r--r-- | editors/vim-gtk/patches/patch-ac | 13 | ||||
-rw-r--r-- | editors/vim-gtk/patches/patch-ad | 13 | ||||
-rw-r--r-- | editors/vim-gtk/patches/patch-ae | 67 | ||||
-rw-r--r-- | editors/vim-gtk/patches/patch-af | 21 | ||||
-rw-r--r-- | editors/vim-gtk/pkg/COMMENT | 1 | ||||
-rw-r--r-- | editors/vim-gtk/pkg/DESCR | 5 | ||||
-rw-r--r-- | editors/vim-gtk/pkg/PLIST | 314 |
12 files changed, 520 insertions, 0 deletions
diff --git a/editors/vim-gtk/Makefile b/editors/vim-gtk/Makefile new file mode 100644 index 00000000000..4e0e7a86451 --- /dev/null +++ b/editors/vim-gtk/Makefile @@ -0,0 +1,29 @@ +# $NetBSD: Makefile,v 1.1.1.1 1999/08/08 09:33:52 rh Exp $ + +DISTNAME= vim-5.4 +PKGNAME= vim-gtk-5.4 +WRKSRC= ${WRKDIR}/${DISTNAME}/src +CATEGORIES= editors +MASTER_SITES= ftp://ftp.oce.nl/pub/vim/unix/ \ + ftp://ftp.vim.org/pub/misc/editors/vim/unix/ \ + ftp://uiarchive.uiuc.edu/pub/packages/vim/ \ + ftp://ftp.progsoc.uts.edu.au/pub/vim/unix/ +DISTFILES= ${DISTNAME}-src${EXTRACT_SUFX} \ + ${DISTNAME}-rt${EXTRACT_SUFX} + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://www.vim.org/ + +DEPENDS+= ncurses-4.2:../../devel/ncurses +DEPENDS+= gtk+-1.2.2:../../x11/gtk + +CONFLICTS= vim-* + +GNU_CONFIGURE= yes +USE_X11= yes +CONFIGURE_ARGS+= --enable-gui=gtk --with-tlib=ncurses +CPPFLAGS+= -I${LOCALBASE}/include # for ncurses' termcap.h +LDFLAGS+= -L${LOCALBASE}/lib # for -lncurses +CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" + +.include "../../mk/bsd.pkg.mk" diff --git a/editors/vim-gtk/files/md5 b/editors/vim-gtk/files/md5 new file mode 100644 index 00000000000..15aad81b90f --- /dev/null +++ b/editors/vim-gtk/files/md5 @@ -0,0 +1,4 @@ +$NetBSD: md5,v 1.1.1.1 1999/08/08 09:33:52 rh Exp $ + +MD5 (vim-5.4-src.tar.gz) = 8aabff5a884ad436543fbfab70487c70 +MD5 (vim-5.4-rt.tar.gz) = 0e0c1ffa2a8afa62e8886440f015d937 diff --git a/editors/vim-gtk/files/patch-sum b/editors/vim-gtk/files/patch-sum new file mode 100644 index 00000000000..83fab27372f --- /dev/null +++ b/editors/vim-gtk/files/patch-sum @@ -0,0 +1,8 @@ +$NetBSD: patch-sum,v 1.1.1.1 1999/08/08 09:33:52 rh Exp $ + +MD5 (patch-aa) = 1a207c657386eb2518be0d30e57cfaa8 +MD5 (patch-ab) = 4911a6a88a97e8d140556d21f249010e +MD5 (patch-ac) = e53e72a98abbb723d60c03b8bf1fc55d +MD5 (patch-ad) = e17aa4e41de7f01d2accd2873b497b88 +MD5 (patch-ae) = 825ca437b006374928bda2501ea3ca1f +MD5 (patch-af) = fbda547dafcea3a48ec1c6c536d6181c diff --git a/editors/vim-gtk/patches/patch-aa b/editors/vim-gtk/patches/patch-aa new file mode 100644 index 00000000000..17c3807c677 --- /dev/null +++ b/editors/vim-gtk/patches/patch-aa @@ -0,0 +1,22 @@ +$NetBSD: patch-aa,v 1.1.1.1 1999/08/08 09:33:52 rh Exp $ + +--- configure.orig Sun Aug 23 14:00:40 1998 ++++ configure Fri Jul 2 07:26:56 1999 +@@ -1507,6 +1507,8 @@ + # Look for the header file in a standard set of common directories. + # Check X11 before X11Rn because it is often a symlink to the current release. + for ac_dir in \ ++ ${X11BASE}/include \ ++ \ + /usr/X11/include \ + /usr/X11R6/include \ + /usr/X11R5/include \ +@@ -1582,6 +1584,8 @@ + # First see if replacing the include by lib works. + # Check X11 before X11Rn because it is often a symlink to the current release. + for ac_dir in `echo "$ac_x_includes" | sed s/include/lib/` \ ++ ${X11BASE}/lib \ ++ \ + /usr/X11/lib \ + /usr/X11R6/lib \ + /usr/X11R5/lib \ diff --git a/editors/vim-gtk/patches/patch-ab b/editors/vim-gtk/patches/patch-ab new file mode 100644 index 00000000000..33dcb194f36 --- /dev/null +++ b/editors/vim-gtk/patches/patch-ab @@ -0,0 +1,23 @@ +$NetBSD: patch-ab,v 1.1.1.1 1999/08/08 09:33:52 rh Exp $ + +--- ctags/Makefile.in.orig Wed Jun 23 02:47:15 1999 ++++ ctags/Makefile.in Sun Aug 8 10:09:06 1999 +@@ -79,14 +79,14 @@ + # + manext = 1 + man1dir = $(mandir)/man1 +-CMAN = $(CTAGS_PROG).$(manext) +-EMAN = $(ETAGS_PROG).$(manext) ++CMAN = vim-$(CTAGS_PROG).$(manext) ++EMAN = vim-$(ETAGS_PROG).$(manext) + + # + # destinations for installed files + # +-CTAGS_EXEC = $(CTAGS_PROG)$(SUFFIX) +-ETAGS_EXEC = $(ETAGS_PROG)$(SUFFIX) ++CTAGS_EXEC = vim-$(CTAGS_PROG) ++ETAGS_EXEC = vim-$(ETAGS_PROG) + DEST_CTAGS = $(bindir)/$(CTAGS_EXEC) + DEST_ETAGS = $(bindir)/$(ETAGS_EXEC) + DEST_CMAN = $(man1dir)/$(CMAN) diff --git a/editors/vim-gtk/patches/patch-ac b/editors/vim-gtk/patches/patch-ac new file mode 100644 index 00000000000..3ddcca9c60b --- /dev/null +++ b/editors/vim-gtk/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1.1.1 1999/08/08 09:33:52 rh Exp $ + +--- config.mk.in.orig Sat Jun 20 15:22:37 1998 ++++ config.mk.in Sun Jan 10 23:22:48 1999 +@@ -14,7 +14,7 @@ + @SET_MAKE@ + CC = @CC@ + DEFS = @DEFS@ +-CFLAGS = @CFLAGS@ ++CFLAGS = @CFLAGS@ @CPPFLAGS@ + srcdir = @srcdir@ + VPATH = @srcdir@ + LDFLAGS = @LDFLAGS@ diff --git a/editors/vim-gtk/patches/patch-ad b/editors/vim-gtk/patches/patch-ad new file mode 100644 index 00000000000..2f062760bf1 --- /dev/null +++ b/editors/vim-gtk/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.1.1.1 1999/08/08 09:33:52 rh Exp $ + +--- feature.h.orig Sun Aug 23 17:38:30 1998 ++++ feature.h Fri Feb 12 19:28:51 1999 +@@ -292,7 +292,7 @@ + * (used only with NO_BUILTIN_TCAPS not defined). + */ + #ifdef HAVE_TGETENT +-/* #define NO_BUILTIN_TCAPS */ ++# define NO_BUILTIN_TCAPS + #endif + + #ifndef NO_BUILTIN_TCAPS diff --git a/editors/vim-gtk/patches/patch-ae b/editors/vim-gtk/patches/patch-ae new file mode 100644 index 00000000000..dce49f37be2 --- /dev/null +++ b/editors/vim-gtk/patches/patch-ae @@ -0,0 +1,67 @@ +$NetBSD: patch-ae,v 1.1.1.1 1999/08/08 09:33:52 rh Exp $ + +--- ../runtime/syntax/sql.vim.orig Fri Jul 9 11:31:44 1999 ++++ ../runtime/syntax/sql.vim Tue Jul 13 10:36:01 1999 +@@ -1,7 +1,7 @@ + " Vim syntax file +-" Language: SQL (Oracle 7) ++" Language: SQL, PL/SQL (Oracle 8i) + " Maintainer: Paul Moore <gustav@morpheus.demon.co.uk> +-" Last change: 1997 April 20 ++" Last change: 1999 March 18 + + " Remove any old syntax stuff hanging around + syn clear +@@ -10,34 +10,34 @@ syn case ignore + + " The SQL reserved words, defined as keywords. + +-syn keyword sqlSpecial null ++syn keyword sqlSpecial false null true + +-syn keyword sqlKeyword access add as asc by check cluster column +-syn keyword sqlKeyword compress connect current decimal default +-syn keyword sqlKeyword desc else exclusive file for from group +-syn keyword sqlKeyword having identified immediate increment index +-syn keyword sqlKeyword initial into is level maxextents mode modify ++syn keyword sqlKeyword access add as asc begin by check cluster column ++syn keyword sqlKeyword compress connect current cursor decimal default desc ++syn keyword sqlKeyword else elsif end exception exclusive file for from ++syn keyword sqlKeyword function group having identified if immediate increment ++syn keyword sqlKeyword index initial into is level loop maxextents mode modify + syn keyword sqlKeyword nocompress nowait of offline on online start + syn keyword sqlKeyword successful synonym table then to trigger uid + syn keyword sqlKeyword unique user validate values view whenever +-syn keyword sqlKeyword where with option order pctfree privileges +-syn keyword sqlKeyword public resource row rowlabel rownum rows +-syn keyword sqlKeyword session share size smallint ++syn keyword sqlKeyword where with option order pctfree privileges procedure ++syn keyword sqlKeyword public resource return row rowlabel rownum rows ++syn keyword sqlKeyword session share size smallint type using + + syn keyword sqlOperator not and or + syn keyword sqlOperator in any some all between exists + syn keyword sqlOperator like escape +-syn keyword sqlOperator union intersect minus +-syn keyword sqlOperator prior distinct +-syn keyword sqlOperator sysdate +- +-syn keyword sqlStatement alter analyze audit comment commit create +-syn keyword sqlStatement delete drop explain grant insert lock noaudit +-syn keyword sqlStatement rename revoke rollback savepoint select set ++syn keyword sqlOperator union intersect minus ++syn keyword sqlOperator prior distinct ++syn keyword sqlOperator sysdate out ++ ++syn keyword sqlStatement alter analyze audit comment commit create ++syn keyword sqlStatement delete drop execute explain grant insert lock noaudit ++syn keyword sqlStatement rename revoke rollback savepoint select set + syn keyword sqlStatement truncate update + +-syn keyword sqlType char character date long raw mlslabel number +-syn keyword sqlType rowid varchar varchar2 float integer ++syn keyword sqlType boolean char character date float integer long ++syn keyword sqlType mlslabel number raw rowid varchar varchar2 varray + + " Strings and characters: + syn region sqlString start=+"+ skip=+\\\\\|\\"+ end=+"+ diff --git a/editors/vim-gtk/patches/patch-af b/editors/vim-gtk/patches/patch-af new file mode 100644 index 00000000000..3b9895ece3e --- /dev/null +++ b/editors/vim-gtk/patches/patch-af @@ -0,0 +1,21 @@ +$NetBSD: patch-af,v 1.1.1.1 1999/08/08 09:33:52 rh Exp $ + +--- Makefile.orig Sun Jul 25 13:18:43 1999 ++++ Makefile Sun Aug 8 11:53:28 1999 +@@ -695,7 +695,7 @@ + ### might not work when they are changed!) + VIMDIR = /vim + VIMRTDIR = /vim54 +-HELPSUBDIR = /doc ++HELPSUBDIR = /../../doc/vim + SYNSUBDIR = /syntax + MACROSUBDIR = /macros + TOOLSSUBDIR = /tools +@@ -1300,6 +1300,7 @@ + + # install the help files; first adjust the contents for the location + installvimhelp: $(HELPSOURCE)/vim.1 $(MANSUBDIR) $(VIMLOC) $(VIMRTLOC) $(HELPSUBLOC) $(SYNSUBLOC) $(TUTORSUBLOC) ++ ln -s ${HELPSUBLOC} ${VIMRTLOC}/doc + @echo generating $(MANSUBDIR)/$(VIMTARGET).1 + @sed -e s+/usr/local/lib/vim+$(VIMLOC)+ \ + -e s+$(VIMLOC)/doc+$(HELPENDLOC)+ \ diff --git a/editors/vim-gtk/pkg/COMMENT b/editors/vim-gtk/pkg/COMMENT new file mode 100644 index 00000000000..ffb4cf19b5d --- /dev/null +++ b/editors/vim-gtk/pkg/COMMENT @@ -0,0 +1 @@ +almost compatible Vi editor with optional GTK+ GUI diff --git a/editors/vim-gtk/pkg/DESCR b/editors/vim-gtk/pkg/DESCR new file mode 100644 index 00000000000..1bc8f92dc4b --- /dev/null +++ b/editors/vim-gtk/pkg/DESCR @@ -0,0 +1,5 @@ +Vim is an almost compatible version of the UNIX editor Vi. Many new features +have been added: multi level undo, syntax highlighting, command line history, +on-line help, filename completion, block operations, etc. + +The X11 GUI variant of vim, gvim, now has a nice gtk+ interface. diff --git a/editors/vim-gtk/pkg/PLIST b/editors/vim-gtk/pkg/PLIST new file mode 100644 index 00000000000..54ce3d9854d --- /dev/null +++ b/editors/vim-gtk/pkg/PLIST @@ -0,0 +1,314 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 1999/08/08 09:33:52 rh Exp $ +bin/gvim +bin/vim +bin/vimtutor +bin/vim-ctags +bin/xxd +bin/gview +bin/rgvim +bin/rgview +bin/ex +bin/view +bin/rvim +bin/rview +bin/vim-etags +man/man1/vimtutor.1 +man/man1/vim-ctags.1 +man/man1/vim.1 +man/man1/xxd.1 +man/man1/gvim.1 +man/man1/gview.1 +man/man1/rgvim.1 +man/man1/rgview.1 +man/man1/ex.1 +man/man1/view.1 +man/man1/rvim.1 +man/man1/rview.1 +man/man1/vim-etags.1 +share/vim/vim54/doc +share/doc/vim/autocmd.txt +share/doc/vim/windows.txt +share/doc/vim/visual.txt +share/doc/vim/vi_diff.txt +share/doc/vim/version5.txt +share/doc/vim/version4.txt +share/doc/vim/various.txt +share/doc/vim/undo.txt +share/doc/vim/uganda.txt +share/doc/vim/todo.txt +share/doc/vim/tips.txt +share/doc/vim/term.txt +share/doc/vim/tagsearch.txt +share/doc/vim/syntax.txt +share/doc/vim/starting.txt +share/doc/vim/scroll.txt +share/doc/vim/rightleft.txt +share/doc/vim/repeat.txt +share/doc/vim/recover.txt +share/doc/vim/quotes.txt +share/doc/vim/quickfix.txt +share/doc/vim/pattern.txt +share/doc/vim/os_win32.txt +share/doc/vim/os_vms.txt +share/doc/vim/os_unix.txt +share/doc/vim/os_riscos.txt +share/doc/vim/os_os2.txt +share/doc/vim/os_msdos.txt +share/doc/vim/os_mint.txt +share/doc/vim/os_mac.txt +share/doc/vim/os_dos.txt +share/doc/vim/os_beos.txt +share/doc/vim/os_amiga.txt +share/doc/vim/options.txt +share/doc/vim/multibyte.txt +share/doc/vim/motion.txt +share/doc/vim/message.txt +share/doc/vim/map.txt +share/doc/vim/intro.txt +share/doc/vim/insert.txt +share/doc/vim/index.txt +share/doc/vim/if_tcl.txt +share/doc/vim/if_sniff.txt +share/doc/vim/if_python.txt +share/doc/vim/if_perl.txt +share/doc/vim/if_ole.txt +share/doc/vim/if_cscope.txt +share/doc/vim/howto.txt +share/doc/vim/help.txt +share/doc/vim/hangulin.txt +share/doc/vim/gui_x11.txt +share/doc/vim/gui_w32.txt +share/doc/vim/gui.txt +share/doc/vim/farsi.txt +share/doc/vim/eval.txt +share/doc/vim/editing.txt +share/doc/vim/digraph.txt +share/doc/vim/cmdline.txt +share/doc/vim/change.txt +share/doc/vim/tags +share/doc/vim/vim2html.pl +share/vim/vim54/syntax/2html.vim +share/vim/vim54/syntax/z8a.vim +share/vim/vim54/syntax/yacc.vim +share/vim/vim54/syntax/xxd.vim +share/vim/vim54/syntax/xs.vim +share/vim/vim54/syntax/xpm.vim +share/vim/vim54/syntax/xml.vim +share/vim/vim54/syntax/xmath.vim +share/vim/vim54/syntax/xdefaults.vim +share/vim/vim54/syntax/whitespace.vim +share/vim/vim54/syntax/vrml.vim +share/vim/vim54/syntax/viminfo.vim +share/vim/vim54/syntax/vim.vim +share/vim/vim54/syntax/vhdl.vim +share/vim/vim54/syntax/vgrindefs.vim +share/vim/vim54/syntax/verilog.vim +share/vim/vim54/syntax/vb.vim +share/vim/vim54/syntax/uil.vim +share/vim/vim54/syntax/tsalt.vim +share/vim/vim54/syntax/tf.vim +share/vim/vim54/syntax/tex.vim +share/vim/vim54/syntax/tcl.vim +share/vim/vim54/syntax/tags.vim +share/vim/vim54/syntax/syntax.vim +share/vim/vim54/syntax/synload.vim +share/vim/vim54/syntax/st.vim +share/vim/vim54/syntax/squid.vim +share/vim/vim54/syntax/sql.vim +share/vim/vim54/syntax/spup.vim +share/vim/vim54/syntax/spec.vim +share/vim/vim54/syntax/smil.vim +share/vim/vim54/syntax/sm.vim +share/vim/vim54/syntax/slrnsc.vim +share/vim/vim54/syntax/slrnrc.vim +share/vim/vim54/syntax/slang.vim +share/vim/vim54/syntax/sl.vim +share/vim/vim54/syntax/skill.vim +share/vim/vim54/syntax/simula.vim +share/vim/vim54/syntax/sicad.vim +share/vim/vim54/syntax/sh.vim +share/vim/vim54/syntax/sgml.vim +share/vim/vim54/syntax/sed.vim +share/vim/vim54/syntax/sdl.vim +share/vim/vim54/syntax/scheme.vim +share/vim/vim54/syntax/sather.vim +share/vim/vim54/syntax/sas.vim +share/vim/vim54/syntax/rpcgen.vim +share/vim/vim54/syntax/rexx.vim +share/vim/vim54/syntax/rebol.vim +share/vim/vim54/syntax/rc.vim +share/vim/vim54/syntax/radiance.vim +share/vim/vim54/syntax/python.vim +share/vim/vim54/syntax/ptcap.vim +share/vim/vim54/syntax/purifylog.vim +share/vim/vim54/syntax/prolog.vim +share/vim/vim54/syntax/procmail.vim +share/vim/vim54/syntax/pov.vim +share/vim/vim54/syntax/postscr.vim +share/vim/vim54/syntax/pod.vim +share/vim/vim54/syntax/po.vim +share/vim/vim54/syntax/plsql.vim +share/vim/vim54/syntax/pine.vim +share/vim/vim54/syntax/pike.vim +share/vim/vim54/syntax/phtml.vim +share/vim/vim54/syntax/php3.vim +share/vim/vim54/syntax/perl.vim +share/vim/vim54/syntax/pccts.vim +share/vim/vim54/syntax/pcap.vim +share/vim/vim54/syntax/pascal.vim +share/vim/vim54/syntax/opl.vim +share/vim/vim54/syntax/ocaml.vim +share/vim/vim54/syntax/objc.vim +share/vim/vim54/syntax/nroff.vim +share/vim/vim54/syntax/nosyntax.vim +share/vim/vim54/syntax/ncf.vim +share/vim/vim54/syntax/nasm.vim +share/vim/vim54/syntax/muttrc.vim +share/vim/vim54/syntax/msql.vim +share/vim/vim54/syntax/mp.vim +share/vim/vim54/syntax/modula3.vim +share/vim/vim54/syntax/modula2.vim +share/vim/vim54/syntax/modsim3.vim +share/vim/vim54/syntax/model.vim +share/vim/vim54/syntax/mib.vim +share/vim/vim54/syntax/mf.vim +share/vim/vim54/syntax/matlab.vim +share/vim/vim54/syntax/master.vim +share/vim/vim54/syntax/maple.vim +share/vim/vim54/syntax/manual.vim +share/vim/vim54/syntax/man.vim +share/vim/vim54/syntax/make.vim +share/vim/vim54/syntax/mail.vim +share/vim/vim54/syntax/m4.vim +share/vim/vim54/syntax/lua.vim +share/vim/vim54/syntax/lss.vim +share/vim/vim54/syntax/lout.vim +share/vim/vim54/syntax/lotos.vim +share/vim/vim54/syntax/lite.vim +share/vim/vim54/syntax/lisp.vim +share/vim/vim54/syntax/lilo.vim +share/vim/vim54/syntax/lhaskell.vim +share/vim/vim54/syntax/lex.vim +share/vim/vim54/syntax/lace.vim +share/vim/vim54/syntax/kwt.vim +share/vim/vim54/syntax/jgraph.vim +share/vim/vim54/syntax/javacc.vim +share/vim/vim54/syntax/javascript.vim +share/vim/vim54/syntax/java.vim +share/vim/vim54/syntax/ishd.vim +share/vim/vim54/syntax/inform.vim +share/vim/vim54/syntax/idlang.vim +share/vim/vim54/syntax/idl.vim +share/vim/vim54/syntax/htmlm4.vim +share/vim/vim54/syntax/html.vim +share/vim/vim54/syntax/hitest.vim +share/vim/vim54/syntax/help.vim +share/vim/vim54/syntax/haskell.vim +share/vim/vim54/syntax/gp.vim +share/vim/vim54/syntax/gnuplot.vim +share/vim/vim54/syntax/gdmo.vim +share/vim/vim54/syntax/gdb.vim +share/vim/vim54/syntax/fvwm.vim +share/vim/vim54/syntax/fortran.vim +share/vim/vim54/syntax/forth.vim +share/vim/vim54/syntax/focexec.vim +share/vim/vim54/syntax/exports.vim +share/vim/vim54/syntax/expect.vim +share/vim/vim54/syntax/esqlc.vim +share/vim/vim54/syntax/elmfilt.vim +share/vim/vim54/syntax/elf.vim +share/vim/vim54/syntax/eiffel.vim +share/vim/vim54/syntax/dtd.vim +share/vim/vim54/syntax/dracula.vim +share/vim/vim54/syntax/dosini.vim +share/vim/vim54/syntax/dosbatch.vim +share/vim/vim54/syntax/diva.vim +share/vim/vim54/syntax/diff.vim +share/vim/vim54/syntax/dcl.vim +share/vim/vim54/syntax/cterm.vim +share/vim/vim54/syntax/css.vim +share/vim/vim54/syntax/csh.vim +share/vim/vim54/syntax/cpp.vim +share/vim/vim54/syntax/config.vim +share/vim/vim54/syntax/colortest.vim +share/vim/vim54/syntax/cobol.vim +share/vim/vim54/syntax/clipper.vim +share/vim/vim54/syntax/clean.vim +share/vim/vim54/syntax/c.vim +share/vim/vim54/syntax/btm.vim +share/vim/vim54/syntax/bib.vim +share/vim/vim54/syntax/basic.vim +share/vim/vim54/syntax/awk.vim +share/vim/vim54/syntax/ave.vim +share/vim/vim54/syntax/atlas.vim +share/vim/vim54/syntax/asn.vim +share/vim/vim54/syntax/asmh8300.vim +share/vim/vim54/syntax/asm.vim +share/vim/vim54/syntax/amiga.vim +share/vim/vim54/syntax/ahdl.vim +share/vim/vim54/syntax/ada.vim +share/vim/vim54/syntax/abc.vim +share/vim/vim54/syntax/zsh.vim +share/vim/vim54/tutor/tutor +share/vim/vim54/tutor/README.txt +share/vim/vim54/menu.vim +share/vim/vim54/bugreport.vim +share/vim/vim54/vimrc_example.vim +share/vim/vim54/gvimrc_example.vim +share/vim/vim54/filetype.vim +share/vim/vim54/ftoff.vim +share/vim/vim54/scripts.vim +share/vim/vim54/optwin.vim +share/vim/vim54/macros/hanoi/poster +share/vim/vim54/macros/hanoi/click.me +share/vim/vim54/macros/hanoi/hanoi.vim +share/vim/vim54/macros/maze/maze_5.78 +share/vim/vim54/macros/maze/Makefile +share/vim/vim54/macros/maze/maze.c +share/vim/vim54/macros/maze/README.txt +share/vim/vim54/macros/maze/mazeansi.c +share/vim/vim54/macros/maze/maze_mac +share/vim/vim54/macros/maze/poster +share/vim/vim54/macros/life/click.me +share/vim/vim54/macros/life/life.vim +share/vim/vim54/macros/urm/urm +share/vim/vim54/macros/urm/urm.vim +share/vim/vim54/macros/urm/examples +share/vim/vim54/macros/urm/README.txt +share/vim/vim54/macros/html +share/vim/vim54/macros/dvorak +share/vim/vim54/macros/diffwin.vim +share/vim/vim54/macros/README.txt +share/vim/vim54/macros/swapmous.vim +share/vim/vim54/macros/shellmenu.vim +share/vim/vim54/macros/justify.vim +share/vim/vim54/tools/README.txt +share/vim/vim54/tools/vimspell.sh +share/vim/vim54/tools/vimm +share/vim/vim54/tools/vim132 +share/vim/vim54/tools/tcltags +share/vim/vim54/tools/shtags.pl +share/vim/vim54/tools/shtags.1 +share/vim/vim54/tools/ref +share/vim/vim54/tools/pltags.pl +share/vim/vim54/tools/mve.txt +share/vim/vim54/tools/mve.awk +share/vim/vim54/tools/gvimdiff +share/vim/vim54/tools/efm_filter.txt +share/vim/vim54/tools/efm_filter.pl +share/vim/vim54/tools/ccfilter_README.txt +share/vim/vim54/tools/ccfilter.c +share/vim/vim54/tools/ccfilter.1 +share/vim/vim54/tools/blink.c +share/vim/vim54/tools/vimspell.txt +@dirrm share/doc/vim +@dirrm share/vim/vim54/tools +@dirrm share/vim/vim54/tutor +@dirrm share/vim/vim54/syntax +@dirrm share/vim/vim54/macros/urm +@dirrm share/vim/vim54/macros/maze +@dirrm share/vim/vim54/macros/life +@dirrm share/vim/vim54/macros/hanoi +@dirrm share/vim/vim54/macros +@dirrm share/vim/vim54 +@dirrm share/vim |