http —484663—1—1.html5 xmlhttprequest

文章信息错误您可以尝试以下操作,10秒内无任何操作将自动跳转。点击这里点击这里>> vim64-_-runtime-_-doc-_-vi_diff.txt
vim64-_-runtime-_-doc-_-vi_diff.txt ( File view )
*vi_diff.txt*
For Vim version 6.4.
Last change: 2004 Mar 26
VIM REFERENCE MANUAL
by Bram Moolenaar
Differences between Vim and Vi
*vi-differences*
Throughout the help files differences between Vim and Vi/Ex are given in
curly braces, like &{
This file only lists what has not been
mentioned in other files and gives an overview.
Vim is mostly POSIX
compliant.
The only command known to be missing
is &:open&.
There are probably a lot of small differences (either because Vim
is missing something or because Posix is beside the mark).
1. Missing commands
|missing-commands|
2. Missing options
|missing-options|
4. The most interesting additions |vim-additions|
5. Other vim features
|other-features|
6. Command-line arguments
|cmdline-arguments|
==============================================================================
1. Missing commands
*missing-commands*
This command is in Vi, but not in Vim:
Vi: start editing in open mode
} *:o* *:op* *:open*
==============================================================================
2. Missing options
*missing-options*
These options are in the Unix Vi, but not in Vim.
If you try to set one of
them you won't get an error message, but the value is not used and cannot be
autoprint (ap)
boolean (default on)
*'autoprint'* *'ap'*
beautify (bf)
boolean (default off)
*'beautify'* *'bf'*
flash (fl)
boolean (default ??)
*'flash'* *'fl'*
graphic (gr)
boolean (default off)
*'graphic'* *'gr'*
hardtabs (ht)
number (default 8)
*'hardtabs'* *'ht'*
number of spaces that a &Tab& moves on the display
boolean (default on)
boolean (default off)
*'novice'*
boolean (default on)
optimize (op)
boolean (default off)
*'optimize'* *'op'*
boolean (default on)
*'prompt'*
boolean (default off)
*'redraw'*
slowopen (slow)
boolean (default off)
*'slowopen'* *'slow'*
boolean (default off)
*'sourceany'*
window (wi)
number (default 23)
*'window'* *'wi'*
number (default 23)
number (default 23)
number (default 23)
==============================================================================
Vim has only a few limits for the files that can be edited {
Vi: can not handle
&Nul& characters and characters above 128, has limited line length, many other
Maximum line length
On machines with 16-bit ints (Amiga and MS-DOS real
mode): 32767, otherwise
characters.
Longer lines are split.
Maximum number of lines
Maximum file size
bytes (2 Gbyte) when a long integer is
Much more for 64 bit longs.
Also limited
by available disk space for the |swap-file|.
Length of a file path
Unix and Win32: 1024 characters, otherwise 256
characters (or as much as the system supports).
Length of an expanded string option
Unix and Win32: 1024 characters, otherwise 256
characters
Maximum display width
Unix and Win32: 1024 characters, otherwise 255
characters
Maximum lhs of a mapping
50 characters.
Number of highlighting different types: 223
Information for undo and text in registers is kept in memory, thus when making
(big) changes the amount of (virtual) memory available limits the number of
undo levels and the text that can be kept in registers.
Other things are also
kept in memory:
Command-line history, error messages for Quickfix mode, etc.
Memory usage limits
-------------------
The option 'maxmem' ('mm') is used to set the maximum memory used for one
buffer (in kilobytes).
'maxmemtot' is used to set the maximum memory used for
all buffers (in kilobytes).
The defaults depend on the system used.
Amiga and MS-DOS, 'maxmemtot' is set depending on the amount of memory
available.
If you don't like Vim to swap to a file, set 'maxmem' and
'maxmemtot' to a very large value.
The swap file will then only be used for
If you don't want a swap file at all, set 'updatecount' to 0, or
use the &-n& argument when starting Vim.
Note that the 'maxmem' option is
only used when a buffer is created.
Changing this option does not affect
buffers that have already been loaded.
Thus you can set it to different
values for different files.
'maxmemtot' works always.
==============================================================================
4. The most interesting additions
*vim-additions*
Vi compatibility.
|'compatible'|
Although Vim is 99% Vi compatible, some things in Vi can be
considered to be a bug, or at least need improvement.
But still, Vim
starts in a mode which behaves like the &real& Vi as much as possible.
To make Vim behave a little bit better, try resetting the 'compatible'
:set nocompatible
Or start Vim with the &-N& argument:
This is done automatically if you have a .vimrc file.
See |startup|.
The 'cpoptions' option can be used to set Vi compatibility on/off for
a number of specific items.
Support for different systems.
Vim can be used on:
- All Unix systems (it works on all systems it was tested on, although
the GUI and Perl interface may not work everywhere).
- Amiga (500, , , 4000, ...).
- MS-DOS in real-mode (no additional drivers required).
- In protected mode on Windows 3.1 and MS-DOS (DPMI driver required).
- Windows 95 and Windows NT, with support for long file names.
- OS/2 (needs emx.dll)
- Atari MiNT
- Macintosh
- IBM OS/390
Multi level undo.
'u' goes backward in time, 'CTRL-R' goes forward again.
Set option
'undolevels' to the number of changes to be remembered (default 1000).
Set 'undolevels' to 0 for a vi-compatible one level undo. Set it to
-1 for no undo at all.
When all changes in a buffer have been undone, the buffer is not
considered changed anymore.
You can exit it with :q, without &!&.
Graphical User Interface (GUI)
Included support for GUI: menu's, mouse, scrollbars, etc.
define your own menus.
Better support for CTRL/SHIFT/ALT keys in
combination with special keys and mouse.
Supported for various
platforms, such as X11 (with Motif and Athena interfaces), GTK, Win32
(Windows 95 and later), BeOS, Amiga and Macintosh.
Multiple windows and buffers.
|windows.txt|
Vim can split the screen into several windows, each editing a
different buffer or the same buffer at a different location.
can still be loaded (and changed) but not displayed in a window.
is called a hidden buffer.
Many commands and options have been added
for this facility.
Syntax highlighting.
Vim can highlight keywords, patterns and other things.
defined by a number of &:syntax& commands, and can be made to
highlight most languages and file types.
A number of files are
included for highlighting the most common languages, like C, C++,
Java, Pascal, Makefiles, shell scripts, etc.
The colors used for
highlighting can be defined for ordinary terminals, color terminals
and the GUI with the &:highlight& command.
A range of lines can be shown as one &folded& line.
This allows
overviewing a file and moving blocks of text around quickly.
Folds can be created manually, from the syntax of the file, by indent,
|add-plugin|
The functionality can be extended by dropping a plugin file in the
right directory.
That's an easy way to start using Vim scripts
written by others.
Plugins can be for all kind of files, or
specifically for a filetype.
Repeat a series of commands.
}& starts recording typed characters into named register {
(append to the register if register name is uppercase).
A subsequent
&q& stops recording.
The register can then be executed with the
}& command.
This is very useful to repeat a complex action.
Flexible insert mode.
|ins-special-special|
The arrow keys can be used in insert mode to move around in the file.
This breaks the insert in two parts as far as undo and redo is
concerned.
CTRL-O can be used to execute a single command-mode command.
almost the same as hitting &Esc&, typing the command and doing &a&.
Visual mode.
|Visual-mode|
Visual can be used to first highlight a piece of text and then give a
command to do something with it.
This is an (easy to use) alternative
to first giving the operator and then moving to the end of the text
to be operated upon.
&v& and &V& are used to start Visual mode.
works on characters and 'V' on lines.
Move the cursor to extend the
Visual part.
It is shown highlighted on the screen.
By typing &o&
the other end of the Visual text can be moved.
The Visual text can
be affected by an operator:
& or & insert or delete indent
! filter through external program
= filter through indent
: start &:& command for the Visual lines.
gq format text to 'textwidth' columns
J join lines
~ swap case
u make lowercase
U make uppercase
Block operators.
|visual-block|
With Visual a rectangular block of text can be selected.
Start Visual
with CTRL-V.
The block can be deleted (&d&), yanked (&y&) or its case
can be changed (&~&, &u& and &U&).
A deleted or yanked block can be
put into the text with the &p& and &P& commands.
Online help system.
Help is displayed in a window.
The usual commands can be used to
move around, search for a string, etc.
Tags can be used to jump
around in the help files, just like hypertext links.
The &:help&
command takes an argument to quickly jump to the info on a subject.
&F1& is the quick access to the help system.
The name of the help
index file can be set with the 'helpfile' option.
Command-line editing and history.
|cmdline-editing|
You can insert or delete at any place in the command-line using the
cursor keys.
The right/left cursor keys can be used to move
forward/backward one character.
The shifted right/left cursor keys
can be used to move forward/backward one word.
CTRL-B/CTRL-E can be
(Not finished, please download and read the complete file)
Expand> <Close
Want complete source code? Download it here
0 lines left, continue to read ▼
Sponsored links
Tips: You can preview the content of files by clicking file names^_^
<img src='/images/file_icons/folder.png' alt='源码文件 '>&vim64&0.00 B 10:31
<img src='/images/file_icons/folder.png' alt='源码文件 '>&src&0.00 B 10:31
4.97 kB 15:33
20.47 kB 16:23
6.58 kB 11:06
5.03 kB 17:16
119.58 kB 07:59
39.27 kB 11:24
52.83 kB 08:43
53.77 kB 04:50
180.05 kB 05:16
228.05 kB 05:53
146.83 kB 16:23
34.45 kB 08:58
135.14 kB 11:14
218.24 kB 10:24
64.16 kB 09:25
128.95 kB 14:35
36.73 kB 13:01
5.71 kB 09:12
28.89 kB 13:22
215.11 kB 13:16
79.85 kB 08:54
109.57 kB 12:16
49.44 kB 09:44
114.03 kB 15:31
17.29 kB 16:42
31.45 kB 15:20
2.17 kB 13:51
15.32 kB 09:14
7.83 kB 14:10
82.30 kB 08:09
38.53 kB 13:02
148.25 kB 06:22
32.52 kB 09:13
116.18 kB 05:02
53.54 kB 13:02
70.77 kB 06:15
197.75 kB 06:13
128.98 kB 10:37
63.74 kB 13:16
mysign140.00 B 06:33
4.08 kB 13:55
1.51 kB 15:30
74.63 kB 10:47
200.25 kB 14:42
145.02 kB 11:36
234.70 kB 10:27
26.96 kB 05:43
52.95 kB 10:29
139.41 kB 13:04
2.19 kB 12:25
204.47 kB 05:03
105.89 kB 14:22
59.60 kB 09:26
216.11 kB 13:39
87.16 kB 08:50
138.29 kB 07:00
6.48 kB 14:07
13.74 kB 13:05
71.37 kB 07:37
34.75 kB 14:23
21.94 kB 07:23
1.37 kB 07:21
55.99 kB 10:22
113.00 kB 15:34
<img src='/images/file_icons/folder.png' alt='源码文件 '>&xxd&0.00 B 10:31
20.25 kB 09:38
116.00 B 15:44
main.aap33.33 kB 04:11
<img src='/images/file_icons/folder.png' alt='源码文件 '>&testdir&0.00 B 10:31
main.aap1.67 kB 09:41
dotest.in129.00 B 16:30
test1.in1.43 kB 09:52
test10.in1.53 kB 07:35
test10a.in2.00 kB 07:47
test11.in2.87 kB 17:43
test12.in1.17 kB 13:47
test13.in1.11 kB 07:56
test14.in1,012.00 B 09:08
test15.in2.19 kB 06:37
test16.in139.00 B 08:01
test17.in368.00 B 09:08
test17a.in88.00 B 08:01
test18.in213.00 B 09:09
test19.in374.00 B 08:01
test2.in717.00 B 13:44
test20.in361.00 B 09:29
test21.in297.00 B 09:09
test22.in197.00 B 08:01
test23.in282.00 B 07:35
test24.in330.00 B 13:47
test25.in840.00 B 09:09
test26.in739.00 B 09:10
test27.in270.00 B 16:04
test28.in364.00 B 07:36
test29.in663.00 B 08:01
test3.in12.56 kB 16:56
test30.in2.88 kB 08:05
test31.in1.38 kB 06:33
test32.in1.20 kB 10:41
test33.in616.00 B 09:12
test34.in547.00 B 09:12
test35.in448.00 B 08:01
test36.in1.56 kB 08:01
test37.in3.16 kB 09:25
test38.in364.00 B 09:12
test39.in364.00 B 09:13
test4.in839.00 B 13:48
test40.in1.49 kB 07:37
test41.in421.00 B 07:32
test42.in2.31 kB 11:07
test43.in412.00 B 13:48
test44.in714.00 B 13:48
test45.in1.46 kB 16:21
test46.in431.00 B 09:20
test47.in1.02 kB 11:38
test48.in1.42 kB 10:05
test49.in320.00 B 06:38
test5.in949.00 B 17:22
test50.in2.53 kB 08:08
test51.in776.00 B 03:54
test52.in1.61 kB 16:21
test6.in739.00 B 07:37
test7.in675.00 B 17:40
test8.in797.00 B 08:45
test9.in255.00 B 17:20
test1.ok15.00 B 08:01
test10.ok853.00 B 08:01
test10a.ok853.00 B 07:40
test11.ok1.56 kB 08:01
test12.ok127.00 B 08:01
test13.ok360.00 B 08:04
test14.ok194.00 B 08:01
test15.ok2.25 kB 15:52
test16.ok17.00 B 08:01
test17.ok88.00 B 08:01
test18.ok41.00 B 08:01
test19.ok91.00 B 08:01
test2.ok128.00 B 13:32
test20.ok57.00 B 09:29
test21.ok60.00 B 08:01
test22.ok79.00 B 08:01
test23.ok23.00 B 08:01
test24.ok126.00 B 08:01
test25.ok23.00 B 08:01
test26.ok159.00 B 08:01
test27.ok32.00 B 12:05
test28.ok45.00 B 06:20
test29.ok424.00 B 08:01
test3.ok10.36 kB 16:59
test30.ok564.00 B 08:01
test31.ok139.00 B 08:01
test32.ok175.00 B 10:42
test33.ok544.00 B 08:01
test34.ok23.00 B 08:01
test35.ok120.00 B 08:01
test36.ok672.00 B 08:01
test37.ok1.30 kB 08:01
test38.ok107.00 B 08:01
test39.ok108.00 B 08:01
test4.ok316.00 B 08:01
test40.ok107.00 B 11:05
test41.ok53.00 B 07:27
test42.ok407.00 B 10:27
test43.ok121.00 B 10:42
test44.ok166.00 B 11:23
test45.ok86.00 B 09:57
test46.ok70.00 B 09:23
test47.ok36.00 B 10:46
test48.ok443.00 B 10:05
test49.ok2.61 kB 09:33
test5.ok173.00 B 08:01
test50.ok40.00 B 15:38
test51.ok136.00 B 10:26
test52.ok1.34 kB 10:20
test6.ok327.00 B 08:01
test7.ok231.00 B 08:01
test8.ok62.00 B 08:45
test9.ok42.00 B 08:01
test49.vim216.03 kB 09:27
1.58 kB 09:47
unix.vim102.00 B 13:46
5.84 kB 10:22
<img src='/images/file_icons/folder.png' alt='源码文件 '>&proto&0.00 B 10:31
buffer.pro4.07 kB 07:27
charset.pro2.58 kB 07:27
diff.pro1.20 kB 07:27
digraph.pro367.00 B 07:27
edit.pro1.78 kB 07:27
eval.pro3.48 kB 07:27
ex_cmds.pro2.90 kB 07:27
ex_cmds2.pro3.99 kB 07:27
ex_docmd.pro2.39 kB 07:27
ex_eval.pro1.55 kB 07:27
ex_getln.pro2.80 kB 07:27
fileio.pro2.71 kB 07:27
fold.pro2.28 kB 07:27
getchar.pro3.16 kB 07:27
gui.pro3.41 kB 07:27
gui_beval.pro713.00 B 07:27
main.pro1.15 kB 07:27
mark.pro1.36 kB 07:27
mbyte.pro4.38 kB 07:27
memfile.pro981.00 B 07:27
memline.pro1.57 kB 07:27
menu.pro1.09 kB 07:27
message.pro3.09 kB 07:27
ops.pro3.17 kB 07:27
misc1.pro4.68 kB 07:27
misc2.pro5.06 kB 07:27
move.pro1.94 kB 07:27
netbeans.pro1.34 kB 07:27
normal.pro1.21 kB 07:27
option.pro2.76 kB 07:27
quickfix.pro1,007.00 B 07:27
regexp.pro1.07 kB 07:27
screen.pro2.57 kB 07:27
search.pro2.24 kB 07:27
syntax.pro2.28 kB 07:27
tag.pro484.00 B 07:27
term.pro2.79 kB 07:27
termlib.pro358.00 B 07:27
ui.pro3.35 kB 07:27
undo.pro750.00 B 07:27
version.pro338.00 B 07:27
window.pro2.32 kB 07:27
gui_athena.pro1.99 kB 07:27
gui_gtk.pro1.65 kB 07:27
gui_gtk_x11.pro3.89 kB 07:28
gui_motif.pro2.45 kB 07:27
gui_x11.pro4.12 kB 07:28
hangulin.pro397.00 B 07:27
pty.pro83.00 B 08:01
if_xcmdsrv.pro751.00 B 07:27
os_unix.pro3.56 kB 07:27
workshop.pro3.03 kB 07:27
if_cscope.pro389.00 B 07:27
if_perl.pro342.00 B 07:28
if_perlsfio.pro81.00 B 07:28
if_python.pro326.00 B 07:27
if_ruby.pro362.00 B 07:27
if_tcl.pro400.00 B 07:28
INSTALL16.43 kB 14:31
101.20 kB 07:52
<img src='/images/file_icons/folder.png' alt='源码文件 '>&auto&0.00 B 10:31
240.83 kB 08:55
config.mk110.00 B 10:31
<img src='/images/file_icons/folder.png' alt='源码文件 '>&config.h&0.00 B 10:31
config.aap.in2.42 kB 09:50
config.h.in8.21 kB 07:23
config.mk.dist110.00 B 17:11
config.mk.in3.19 kB 06:34
172.00 B 10:31
80.82 kB 08:53
61.07 kB 16:42
32.98 kB 06:30
5.80 kB 08:00
53.29 kB 17:21
81.61 kB 10:29
22.88 kB 05:41
1.81 kB 15:59
167.80 kB 05:19
75.46 kB 07:39
89.94 kB 07:37
59.37 kB 05:40
35.92 kB 10:36
28.25 kB 09:20
16.22 kB 11:33
4.21 kB 09:09
mkinstalldirs699.00 B 16:56
140.68 kB 10:39
12.29 kB 04:53
2.85 kB 07:55
3.01 kB 04:05
osdef1.h.in4.14 kB 17:01
osdef2.h.in2.83 kB 04:03
251.00 B 17:56
8.79 kB 15:46
toolcheck855.00 B 16:45
vim_icon.xbm896.00 B 08:01
vim_mask.xbm911.00 B 08:01
vimtutor1.56 kB 10:20
254.00 B 08:14
41.31 kB 10:09
575.00 B 14:47
4.31 kB 09:05
1.39 kB 11:32
49.89 kB 05:06
2.77 kB 10:27
if_perl.xs26.87 kB 03:57
1.37 kB 06:27
65.37 kB 14:17
23.03 kB 04:05
47.78 kB 04:04
typemap276.00 B 08:01
36.31 kB 08:09
484.00 B 07:19
164.00 B 11:30
<img src='/images/file_icons/folder.png' alt='源码文件 '>&pixmaps&0.00 B 10:31
alert.xpm1.53 kB 16:04
error.xpm1.53 kB 16:07
generic.xpm1.53 kB 16:04
info.xpm1.52 kB 16:04
quest.xpm1.53 kB 16:08
tb_blank.xpm672.00 B 07:17
tb_close.xpm766.00 B 07:17
tb_copy.xpm667.00 B 07:17
tb_ctags.xpm765.00 B 07:17
tb_cut.xpm631.00 B 16:04
tb_exit.xpm841.00 B 07:17
tb_find.xpm701.00 B 07:17
tb_find_help.xpm706.00 B 07:17
tb_find_next.xpm765.00 B 07:17
tb_find_prev.xpm765.00 B 07:17
tb_help.xpm632.00 B 16:04
tb_jump.xpm729.00 B 07:17
tb_load_session.xpm837.00 B 07:17
tb_macro.xpm668.00 B 07:17
tb_make.xpm667.00 B 07:17
tb_maximize.xpm710.00 B 07:17
tb_maxwidth.xpm710.00 B 07:17
tb_minimize.xpm710.00 B 07:17
tb_minwidth.xpm710.00 B 07:17
tb_new.xpm705.00 B 07:17
tb_new_session.xpm813.00 B 07:17
tb_open.xpm770.00 B 07:17
tb_paste.xpm771.00 B 07:17
tb_print.xpm754.00 B 07:21
tb_redo.xpm667.00 B 07:24
tb_replace.xpm843.00 B 07:24
tb_save.xpm701.00 B 07:24
tb_save_all.xpm705.00 B 07:24
tb_save_session.xpm837.00 B 07:24
tb_shell.xpm737.00 B 07:24
tb_split.xpm707.00 B 07:24
tb_undo.xpm667.00 B 07:24
tb_vsplit.xpm708.00 B 07:24
210.00 B 10:06
108.87 kB 14:00
4.47 kB 07:19
<img src='/images/file_icons/folder.png' alt='源码文件 '>&runtime&0.00 B 10:31
bugreport.vim1.86 kB 11:09
<img src='/images/file_icons/folder.png' alt='源码文件 '>&doc&0.00 B 10:31
makehtml.awk17.19 kB 09:56
maketags.awk867.00 B 08:01
vim2html.pl4.41 kB 12:36
11.65 kB 07:19
37.73 kB 07:19
57.16 kB 07:19
39.58 kB 07:19
5.38 kB 07:19
13.23 kB 07:19
12.91 kB 07:19
13.07 kB 07:19
58.23 kB 07:19
170.18 kB 07:19
9.52 kB 07:19
19.64 kB 07:19
22.13 kB 07:19
39.23 kB 07:19
7.07 kB 07:19
19.59 kB 07:19
24.99 kB 07:19
2.99 kB 07:19
5.60 kB 07:19
7.08 kB 07:19
2.86 kB 07:19
18.52 kB 07:19
5.78 kB 07:19
10.02 kB 07:19
11.71 kB 07:19
5.95 kB 07:19
3.59 kB 07:19
21.95 kB 07:19
19.12 kB 07:19
62.38 kB 07:19
44.01 kB 07:19
36.99 kB 07:19
44.56 kB 07:19
54.62 kB 07:19
26.57 kB 07:19
7.27 kB 07:19
44.87 kB 07:19
26.07 kB 07:19
286.84 kB 07:19
12.36 kB 07:19
4.88 kB 07:19
12.43 kB 07:19
11.61 kB 07:19
3.28 kB 07:19
1.37 kB 07:19
12.66 kB 07:19
8.38 kB 07:19
3.97 kB 07:19
11.51 kB 07:19
2.53 kB 07:19
25.33 kB 07:19
15.12 kB 07:19
46.53 kB 07:19
9.40 kB 07:19
1.24 kB 07:19
22.17 kB 07:19
4.01 kB 07:19
41.56 kB 07:19
63.24 kB 07:19
12.41 kB 07:19
7.25 kB 07:19
7.54 kB 07:19
20.96 kB 07:19
4.89 kB 07:19
3.33 kB 07:19
12.00 kB 07:19
6.25 kB 07:19
7.91 kB 07:19
61.22 kB 07:19
163.44 kB 07:19
33.91 kB 07:19
36.99 kB 07:19
17.46 kB 07:19
185.57 kB 07:19
13.85 kB 08:33
4.92 kB 07:19
6.42 kB 07:19
16.56 kB 07:19
22.91 kB 07:19
18.63 kB 07:19
21.43 kB 07:19
9.36 kB 07:19
15.59 kB 07:19
16.30 kB 07:19
11.18 kB 07:19
28.36 kB 07:19
11.63 kB 07:19
13.10 kB 07:19
13.38 kB 07:19
16.78 kB 07:19
12.06 kB 07:19
12.29 kB 07:19
19.14 kB 07:19
18.57 kB 07:19
8.06 kB 07:19
17.30 kB 07:19
15.64 kB 07:19
19.69 kB 07:19
22.09 kB 07:19
10.03 kB 07:19
22.62 kB 07:19
57.09 kB 07:19
13.46 kB 07:19
6.87 kB 07:19
28.32 kB 07:19
17.49 kB 07:19
17.20 kB 07:19
8.58 kB 07:19
44.02 kB 07:19
13.58 kB 07:19
301.32 kB 07:19
563.54 kB 07:49
35.53 kB 07:19
19.05 kB 07:19
45.01 kB 07:19
4.49 kB 07:19
5.84 kB 10:54
1.73 kB 15:31
vim.114.15 kB 06:26
evim.11.32 kB 06:16
vimdiff.11.22 kB 11:00
vimtutor.11.18 kB 16:16
xxd.19.74 kB 08:12
tags209.20 kB 10:00
ftoff.vim280.00 B 05:01
gvimrc_example.vim1.66 kB 08:36
<img src='/images/file_icons/folder.png' alt='源码文件 '>&macros&0.00 B 10:31
1,005.00 B 12:11
dvorak2.39 kB 08:01
<img src='/images/file_icons/folder.png' alt='源码文件 '>&hanoi&0.00 B 10:31
click.me255.00 B 08:01
hanoi.vim1.07 kB 08:01
poster1.23 kB 08:01
justify.vim8.92 kB 08:15
265.00 B 04:39
less.vim4.60 kB 09:35
<img src='/images/file_icons/folder.png' alt='源码文件 '>&life&0.00 B 10:31
click.me230.00 B 08:01
life.vim7.34 kB 16:50
matchit.vim29.66 kB 13:23
18.55 kB 11:00
<img src='/images/file_icons/folder.png' alt='源码文件 '>&maze&0.00 B 10:31
1.82 kB 06:24
111.00 B 06:25
main.aap100.00 B 06:21
441.00 B 08:01
maze_5.78626.00 B 08:01
maze_mac11.86 kB 08:01
441.00 B 04:26
594.00 B 06:23
poster1.53 kB 08:01
shellmenu.vim3.83 kB 14:36
swapmous.vim856.00 B 08:01
<img src='/images/file_icons/folder.png' alt='源码文件 '>&urm&0.00 B 10:31
1.54 kB 17:09
examples1.07 kB 08:01
urm630.00 B 08:01
urm.vim96.00 B 08:01
mswin.vim2.75 kB 11:11
evim.vim1.77 kB 14:28
optwin.vim47.23 kB 05:43
ftplugin.vim767.00 B 04:30
ftplugof.vim285.00 B 15:00
indent.vim382.00 B 09:37
indoff.vim282.00 B 05:01
termcap3.94 kB 08:01
<img src='/images/file_icons/folder.png' alt='源码文件 '>&tools&0.00 B 10:31
1.07 kB 04:15
464.00 B 08:01
ccfilter.12.18 kB 08:01
8.41 kB 14:57
2.91 kB 14:57
efm_filter.pl978.00 B 08:38
1.09 kB 14:57
efm_perl.pl3.65 kB 07:31
mve.awk484.00 B 14:59
579.00 B 08:01
pltags.pl8.23 kB 14:59
ref137.00 B 08:01
shtags.11.99 kB 08:01
shtags.pl3.26 kB 14:59
vim132315.00 B 08:01
vim_vs_net.cmd796.00 B 09:29
vimm184.00 B 08:38
845.00 B 08:01
819.00 B 08:01
13.61 kB 14:59
<img src='/images/file_icons/folder.png' alt='源码文件 '>&tutor&0.00 B 10:31
862.00 B 10:52
tutor26.04 kB 16:40
tutor.vim3.15 kB 05:15
1.05 kB 15:02
1.05 kB 15:01
434.00 B 05:15
tutor.ca26.47 kB 09:32
tutor.de31.21 kB 06:39
tutor.es26.95 kB 15:43
tutor.fr28.75 kB 04:24
tutor.gr29.51 kB 16:42
tutor.it28.56 kB 14:59
tutor.no27.21 kB 16:55
tutor.pl26.92 kB 14:07
tutor.ru28.27 kB 15:44
tutor.sk26.05 kB 09:30
tutor.sv27.15 kB 06:29
tutor.gr.cp73729.51 kB 16:43
tutor.ja.euc25.85 kB 05:33
tutor.ja.sjis25.85 kB 05:32
tutor.ja.utf-834.21 kB 05:55
tutor.ko.euc26.58 kB 09:48
tutor.ko.utf-832.96 kB 06:38
tutor.pl.cp125026.90 kB 14:10
tutor.ru.cp125128.27 kB 14:01
tutor.zh.big523.79 kB 16:41
tutor.zh.euc23.79 kB 16:41
vimrc_example.vim2.35 kB 04:16
<img src='/images/file_icons/folder.png' alt='源码文件 '>&print&0.00 B 10:31
cp1250.ps2.16 kB 15:10
cp1251.ps2.33 kB 15:10
cp1252.ps2.17 kB 15:10
cp1253.ps2.12 kB 15:10
cp1254.ps2.19 kB 15:10
cp1255.ps2.09 kB 15:10
cp1257.ps2.15 kB 15:10
dec-mcs.ps2.14 kB 15:10
ebcdic-uk.ps2.08 kB 15:10
hp-roman8.ps2.12 kB 15:10
iso-8859-10.ps2.08 kB 15:10
iso-8859-11.ps2.08 kB 15:10
iso-8859-13.ps2.13 kB 15:10
iso-8859-14.ps2.14 kB 15:10
iso-8859-15.ps2.13 kB 15:10
iso-8859-2.ps2.11 kB 04:19
iso-8859-3.ps2.18 kB 04:20
iso-8859-4.ps2.08 kB 04:20
iso-8859-5.ps2.26 kB 15:10
iso-8859-7.ps2.09 kB 15:10
iso-8859-8.ps2.06 kB 04:22
iso-8859-9.ps2.17 kB 04:22
koi8-r.ps2.26 kB 15:10
koi8-u.ps2.27 kB 15:10
latin1.ps2.14 kB 15:10
mac-roman.ps2.17 kB 15:10
prolog.ps1.76 kB 05:27
vim16x16.png226.00 B 15:37
vim16x16.xpm490.00 B 15:17
vim32x32.png347.00 B 15:37
vim32x32.xpm1.29 kB 15:17
vim48x48.png474.00 B 15:37
vim48x48.xpm2.60 kB 15:23
vim16x16.gif166.00 B 08:01
vim32x32.gif298.00 B 15:27
vim48x48.gif504.00 B 15:27
filetype.vim41.15 kB 06:19
scripts.vim8.00 kB 06:07
menu.vim32.90 kB 11:11
delmenu.vim645.00 B 14:47
synmenu.vim26.28 kB 07:46
makemenu.vim13.89 kB 11:00
<img src='/images/file_icons/folder.png' alt='源码文件 '>&colors&0.00 B 10:31
blue.vim2.53 kB 15:07
darkblue.vim2.78 kB 12:44
default.vim548.00 B 06:18
delek.vim2.61 kB 09:37
desert.vim2.75 kB 16:06
elflord.vim1.63 kB 04:49
evening.vim2.33 kB 06:46
koehler.vim2.73 kB 04:49
morning.vim2.31 kB 06:46
murphy.vim1.96 kB 04:49
pablo.vim1.01 kB 04:49
peachpuff.vim2.61 kB 05:14
ron.vim1.21 kB 04:49
shine.vim2.66 kB 04:18
torte.vim1.59 kB 12:01
zellner.vim1.80 kB 04:49
2.12 kB 06:14
<img src='/images/file_icons/folder.png' alt='源码文件 '>&compiler&0.00 B 10:31
ant.vim941.00 B 05:15
bcc.vim449.00 B 07:06
bdf.vim732.00 B 16:19
checkstyle.vim673.00 B 07:52
cs.vim394.00 B 07:07
dot.vim372.00 B 09:38
eruby.vim982.00 B 14:04
fortran_F.vim702.00 B 07:07
fortran_cv.vim747.00 B 07:08
fortran_elf90.vim802.00 B 07:08
fortran_g77.vim1.12 kB 07:08
fortran_lf95.vim683.00 B 07:09
hp_acc.vim797.00 B 07:09
icc.vim585.00 B 07:09
intel.vim525.00 B 09:38
irix5_c.vim592.00 B 07:09
irix5_cpp.vim601.00 B 07:09
javac.vim486.00 B 07:52
jikes.vim525.00 B 07:10
mips_c.vim621.00 B 07:10
mipspro_c89.vim651.00 B 07:10
mipspro_cpp.vim631.00 B 07:10
modelsim_vcom.vim799.00 B 07:11
msvc.vim414.00 B 14:48
neato.vim378.00 B 09:38
onsgmls.vim503.00 B 07:11
pbx.vim469.00 B 07:12
perl.vim1.01 kB 07:12
php.vim782.00 B 07:52
pyunit.vim407.00 B 07:12
rst.vim890.00 B 06:47
ruby.vim1.71 kB 12:20
rubyunit.vim865.00 B 14:05
se.vim694.00 B 07:52
splint.vim2.22 kB 10:47
tcl.vim492.00 B 07:52
tex.vim1.72 kB 07:13
tidy.vim1,017.00 B 07:53
xmllint.vim708.00 B 07:53
xmlwf.vim454.00 B 07:14
437.00 B 17:30
<img src='/images/file_icons/folder.png' alt='源码文件 '>&indent&0.00 B 10:31
aap.vim168.00 B 04:48
ada.vim9.50 kB 05:38
ant.vim290.00 B 13:32
automake.vim337.00 B 10:40
awk.vim7.47 kB 15:07
c.vim292.00 B 09:12
cdl.vim4.07 kB 05:28
ch.vim494.00 B 16:57
config.vim2.21 kB 10:40
cpp.vim296.00 B 09:12
cs.vim294.00 B 14:42
css.vim1.65 kB 10:40
docbk.vim389.00 B 06:48
dylan.vim2.60 kB 05:05
eiffel.vim3.00 kB 12:28
eruby.vim428.00 B 12:21
eterm.vim1,022.00 B 10:40
fortran.vim4.48 kB 10:18
html.vim6.39 kB 09:36
idlang.vim1.54 kB 10:18
ishd.vim1.72 kB 09:10
java.vim3.55 kB 03:43
lua.vim1.64 kB 06:51
make.vim1.15 kB 10:40
matlab.vim1.88 kB 10:31
mma.vim2.19 kB 10:32
mp.vim6.31 kB 10:16
objc.vim1.61 kB 09:37
ocaml.vim8.33 kB 14:24
occam.vim4.46 kB 14:12
pascal.vim4.84 kB 13:20
perl.vim4.47 kB 07:33
php.vim3.75 kB 10:47
postscr.vim1.58 kB 08:41
pov.vim2.58 kB 10:10
prolog.vim1.42 kB 15:06
pyrex.vim229.00 B 09:37
python.vim5.27 kB 03:57
readline.vim1.03 kB 10:40
rpl.vim1.72 kB 06:03
rst.vim1.31 kB 10:40
ruby.vim11.29 kB 12:21
sdl.vim2.65 kB 06:19
sh.vim1.53 kB 10:40
tcl.vim2.72 kB 06:39
tcsh.vim1.23 kB 05:02
tilde.vim994.00 B 14:13
vb.vim1.88 kB 06:29
verilog.vim7.38 kB 15:05
vim.vim1.84 kB 11:08
xf86conf.vim879.00 B 10:40
xhtml.vim172.00 B 16:52
xml.vim2.41 kB 09:36
xslt.vim297.00 B 14:59
yacc.vim883.00 B 10:40
zsh.vim329.00 B 06:48
1.60 kB 12:43
<img src='/images/file_icons/folder.png' alt='源码文件 '>&ftplugin&0.00 B 10:31
aap.vim715.00 B 11:39
abaqus.vim2.63 kB 14:27
ada.vim6.42 kB 15:09
ant.vim1.28 kB 09:39
art.vim418.00 B 15:09
aspvbs.vim1.85 kB 14:28
automake.vim394.00 B 06:48
bib.vim363.00 B 16:49
c.vim1.46 kB 09:39
ch.vim472.00 B 09:39
changelog.vim7.18 kB 06:38
config.vim1.22 kB 14:28
cpp.vim288.00 B 10:23
cs.vim750.00 B 08:29
csc.vim708.00 B 14:55
csh.vim1.57 kB 14:55
css.vim503.00 B 10:39
debchangelog.vim5.95 kB 10:55
dosbatch.vim616.00 B 15:49
dtd.vim895.00 B 14:55
eruby.vim2.07 kB 12:20
fortran.vim3.74 kB 14:20
html.vim1.25 kB 14:28
ishd.vim1.18 kB 08:55
java.vim2.04 kB 09:39
jsp.vim1.94 kB 05:23
kwt.vim596.00 B 04:04
lisp.vim839.00 B 06:20
lprolog.vim1.28 kB 17:29
lua.vim851.00 B 04:06
mail.vim961.00 B 09:12
make.vim764.00 B 09:04
man.vim4.27 kB 04:20
mf.vim364.00 B 17:15
mp.vim241.00 B 17:16
objc.vim296.00 B 16:05
ocaml.vim12.13 kB 14:11
occam.vim1.03 kB 15:09
pascal.vim427.00 B 04:23
perl.vim2.05 kB 06:03
php.vim1.82 kB 04:23
postscr.vim823.00 B 14:52
pyrex.vim696.00 B 09:39
python.vim1.22 kB 01:59
rpl.vim593.00 B 06:06
rst.vim600.00 B 10:38
ruby.vim3.69 kB 12:20
scheme.vim1.10 kB 06:22
sgml.vim1.16 kB 14:21
sh.vim1.15 kB 14:55
spec.vim4.75 kB 08:04
sql.vim6.82 kB 11:45
svg.vim1.15 kB 14:55
tex.vim3.56 kB 03:54
tcsh.vim1.15 kB 14:55
vb.vim1.90 kB 05:00
verilog.vim1.49 kB 04:53
vhdl.vim1.19 kB 06:49
vim.vim2.02 kB 04:26
xhtml.vim1.96 kB 14:28
xml.vim1.39 kB 14:55
xs.vim334.00 B 16:12
xsd.vim1.12 kB 09:39
xslt.vim530.00 B 14:28
869.00 B 17:31
<img src='/images/file_icons/folder.png' alt='源码文件 '>&plugin&0.00 B 10:31
explorer.vim33.90 kB 05:06
gzip.vim4.84 kB 04:56
netrw.vim39.28 kB 10:42
rrhelper.vim1.33 kB 16:54
tohtml.vim705.00 B 06:15
286.00 B 05:21
<img src='/images/file_icons/folder.png' alt='源码文件 '>&syntax&0.00 B 10:31
2html.vim12.90 kB 07:11
a65.vim6.62 kB 13:12
aap.vim5.46 kB 11:03
abaqus.vim1.45 kB 13:50
abc.vim2.17 kB 13:32
abel.vim5.25 kB 03:52
acedb.vim5.11 kB 07:51
ada.vim10.51 kB 09:43
aflex.vim4.71 kB 13:22
ahdl.vim3.08 kB 15:58
alsaconf.vim2.00 kB 07:22
amiga.vim3.26 kB 13:23
aml.vim23.93 kB 15:42
ampl.vim4.19 kB 14:42
ant.vim5.68 kB 11:13
antlr.vim2.14 kB 15:49
apache.vim14.35 kB 14:02
apachestyle.vim1.70 kB 15:49
arch.vim1.61 kB 06:49
art.vim1.18 kB 14:54
asm.vim2.56 kB 04:21
asm68k.vim14.30 kB 12:46
asmh8300.vim2.42 kB 04:21
asn.vim2.80 kB 04:32
aspperl.vim1,016.00 B 10:49
aspvbs.vim9.14 kB 05:10
atlas.vim2.90 kB 10:50
automake.vim3.29 kB 10:52
ave.vim2.21 kB 15:42
awk.vim7.46 kB 08:19
ayacc.vim2.81 kB 13:23
b.vim5.88 kB 15:42
baan.vim8.38 kB 14:39
basic.vim8.24 kB 10:54
bc.vim2.05 kB 08:43
bdf.vim2.95 kB 10:41
bib.vim3.57 kB 13:17
bindzone.vim3.40 kB 13:45
blank.vim1.09 kB 08:43
btm.vim9.41 kB 10:58
c.vim16.69 kB 15:50
calendar.vim4.25 kB 06:36
catalog.vim923.00 B 09:10
cdl.vim3.27 kB 05:28
cf.vim9.23 kB 09:29
cfg.vim1.71 kB 08:44
ch.vim1.25 kB 09:21
change.vim1.28 kB 13:45
changelog.vim2.79 kB 07:00
chaskell.vim396.00 B 04:09
cheetah.vim2.08 kB 15:06
chill.vim8.08 kB 11:52
cl.vim3.95 kB 15:49
clean.vim3.02 kB 08:44
clipper.vim5.74 kB 11:06
cobol.vim8.58 kB 08:44
colortest.vim2.71 kB 08:46
conf.vim1.17 kB 09:00
config.vim1.80 kB 11:12
cpp.vim1.74 kB 14:37
crm.vim1.66 kB 06:49
crontab.vim2.52 kB 10:38
cs.vim5.41 kB 05:14
csc.vim8.50 kB 04:14
csh.vim6.79 kB 13:24
csp.vim7.33 kB 13:16
css.vim13.62 kB 09:13
cterm.vim6.58 kB 11:19
ctrlh.vim1.03 kB 09:01
cupl.vim4.06 kB 15:54
cuplsim.vim2.32 kB 04:22
cvs.vim1.27 kB 16:15
cvsrc.vim1.46 kB 10:41
cweb.vim3.21 kB 21:56
cynlib.vim2.94 kB 08:45
cynpp.vim1.74 kB 08:45
d.vim8.19 kB 04:56
dcd.vim2.15 kB 14:08
dcl.vim6.44 kB 13:25
def.vim1.46 kB 11:37
debchangelog.vim1.89 kB 03:53
debcontrol.vim3.75 kB 06:36
desc.vim3.17 kB 14:10
desktop.vim4.34 kB 09:24
diff.vim2.19 kB 15:37
dircolors.vim3.45 kB 06:49
diva.vim4.95 kB 11:40
dns.vim1.47 kB 08:45
docbk.vim8.38 kB 14:26
docbksgml.vim193.00 B 14:12
docbkxml.vim191.00 B 14:12
dosbatch.vim5.97 kB 05:42
dosini.vim1.06 kB 11:44
dot.vim3.24 kB 04:02
dracula.vim3.00 kB 08:46
dsl.vim1.28 kB 09:10
dtd.vim5.29 kB 09:10
dtml.vim16.67 kB 08:46
dylan.vim3.72 kB 05:07
dylanintr.vim1.45 kB 15:50
dylanlid.vim1.06 kB 08:46
ecd.vim1.52 kB 13:29
edif.vim1.61 kB 14:54
eiffel.vim6.68 kB 11:59
elf.vim2.66 kB 15:28
elinks.vim10.47 kB 06:49
elmfilt.vim3.17 kB 13:25
erlang.vim7.81 kB 14:28
eruby.vim1.96 kB 12:28
esmtprc.vim1.02 kB 05:55
esqlc.vim2.50 kB 12:03
esterel.vim2.42 kB 06:56
eterm.vim9.82 kB 10:41
exim.vim17.84 kB 13:59
expect.vim3.90 kB 12:04
exports.vim2.08 kB 13:25
fasm.vim8.46 kB 09:24
fdcc.vim5.82 kB 09:27
fetchmail.vim3.36 kB 10:41
fgl.vim7.48 kB 14:07
focexec.vim3.82 kB 12:08
form.vim3.28 kB 15:43
forth.vim8.51 kB 15:28
fortran.vim24.95 kB 05:07
foxpro.vim30.80 kB 11:11
fstab.vim8.96 kB 09:36
fvwm.vim18.72 kB 14:18
fvwm2m4.vim828.00 B 15:08
gdb.vim4.53 kB 10:41
gdmo.vim3.54 kB 08:48
gp.vim2.53 kB 08:48
gedcom.vim2.61 kB 12:29
gkrellmrc.vim4.24 kB 15:44
gnuplot.vim9.41 kB 13:39
gpg.vim4.74 kB 10:41
grads.vim2.06 kB 09:28
groff.vim292.00 B 16:37
grub.vim2.63 kB 08:19
gsp.vim2.12 kB 08:48
gtkrc.vim9.25 kB 15:44
haskell.vim8.43 kB 07:01
hb.vim3.38 kB 08:50
help.vim6.54 kB 15:21
hercules.vim6.01 kB 14:31
hex.vim1.65 kB 14:08
hitest.vim3.60 kB 08:50
hog.vim17.74 kB 14:36
html.vim14.72 kB 04:15
htmlcheetah.vim672.00 B 15:06
htmlm4.vim874.00 B 04:39
htmlos.vim8.54 kB 14:34
ia64.vim10.68 kB 10:08
icemenu.vim838.00 B 05:24
icon.vim7.12 kB 14:28
idl.vim9.98 kB 12:41
idlang.vim13.51 kB 14:06
indent.vim4.56 kB 06:49
inform.vim19.32 kB 09:18
inittab.vim2.76 kB 03:19
ipfilter.vim1.37 kB 14:53
ishd.vim26.78 kB 12:43
iss.vim5.24 kB 08:23
ist.vim2.30 kB 14:29
jal.vim8.99 kB 14:53
jam.vim26.39 kB 14:29
jargon.vim1,006.00 B 09:35
java.vim15.79 kB 09:16
javacc.vim2.56 kB 07:12
javascript.vim4.51 kB 09:16
jess.vim6.53 kB 14:31
jgraph.vim1.58 kB 17:15
jproperties.vim5.75 kB 12:51
jsp.vim3.03 kB 14:22
kix.vim6.42 kB 14:34
kscript.vim2.31 kB 15:51
kwt.vim2.86 kB 05:14
lace.vim4.31 kB 13:32
latte.vim3.90 kB 15:45
ldif.vim1.19 kB 10:42
lex.vim4.52 kB 13:25
lftp.vim7.95 kB 06:49
lhaskell.vim4.44 kB 09:19
libao.vim1.18 kB 06:49
lifelines.vim4.97 kB 09:30
lilo.vim10.49 kB 13:53
lisp.vim31.97 kB 16:48
lite.vim5.08 kB 08:51
logtalk.vim11.12 kB 10:15
lotos.vim2.70 kB 14:22
lout.vim4.44 kB 15:29
lpc.vim22.76 kB 14:52
lprolog.vim4.25 kB 04:04
lscript.vim12.19 kB 14:40
lss.vim5.14 kB 04:06
lua.vim9.74 kB 08:33
lynx.vim6.56 kB 07:53
m4.vim2.96 kB 04:32
mail.vim4.36 kB 15:32
mailcap.vim1.71 kB 07:53
make.vim6.12 kB 10:11
man.vim1.99 kB 09:20
manual.vim680.00 B 12:44
maple.vim27.84 kB 13:25
masm.vim5.87 kB 15:00
mason.vim3.39 kB 14:31
master.vim1.40 kB 15:01
matlab.vim3.41 kB 16:32
mel.vim3.65 kB 15:04
mf.vim8.05 kB 17:16
mgp.vim2.34 kB 14:33
mib.vim3.10 kB 17:16
mma.vim9.68 kB 16:24
mmix.vim5.05 kB 14:08
modconf.vim2.41 kB 06:49
model.vim1.82 kB 09:09
modsim3.vim3.86 kB 15:45
modula2.vim3.54 kB 15:05
modula3.vim2.37 kB 15:52
monk.vim10.36 kB 15:39
moo.vim9.03 kB 11:28
mp.vim5.62 kB 21:57
mplayerconf.vim4.98 kB 16:20
msidl.vim3.66 kB 14:54
msql.vim2.73 kB 15:45
mush.vim6.30 kB 08:34
muttrc.vim16.77 kB 05:39
mysql.vim15.70 kB 14:51
named.vim9.65 kB 16:44
nasm.vim24.49 kB 13:57
nastran.vim8.53 kB 14:24
natural.vim6.82 kB 16:31
ncf.vim13.34 kB 13:58
netrc.vim1.75 kB 04:51
nosyntax.vim669.00 B 07:27
nqc.vim14.05 kB 15:52
nroff.vim7.77 kB 15:05
nsis.vim9.64 kB 06:52
objc.vim3.66 kB 13:54
objcpp.vim896.00 B 14:08
ocaml.vim12.86 kB 14:13
occam.vim4.37 kB 09:55
omnimark.vim6.69 kB 15:46
openroad.vim14.01 kB 05:11
opl.vim4.30 kB 17:11
ora.vim26.82 kB 14:25
papp.vim3.99 kB 14:30
pascal.vim14.97 kB 14:24
pcap.vim1.92 kB 14:01
pccts.vim4.44 kB 04:06
perl.vim28.74 kB 15:45
pf.vim2.65 kB 15:02
pfmain.vim40.33 kB 10:49
php.vim67.12 kB 11:01
phtml.vim11.06 kB 14:02
pic.vim3.63 kB 14:34
pike.vim6.55 kB 15:52
pilrc.vim5.38 kB 14:38
pine.vim15.52 kB 15:31
pinfo.vim5.13 kB 06:49
plm.vim5.57 kB 14:34
plp.vim1.43 kB 14:08
plsql.vim12.92 kB 14:02
po.vim5.36 kB 09:34
pod.vim2.78 kB 04:05
postscr.vim44.46 kB 14:03
pov.vim8.56 kB 14:06
povini.vim3.43 kB 03:19
ppd.vim1.23 kB 14:18
ppwiz.vim3.10 kB 14:36
prescribe.vim2.72 kB 06:05
procmail.vim2.35 kB 10:22
progress.vim18.62 kB 14:34
prolog.vim4.13 kB 04:33
psf.vim4.52 kB 14:30
ptcap.vim4.35 kB 05:04
purifylog.vim3.54 kB 14:04
pyrex.vim2.01 kB 09:24
python.vim6.40 kB 04:49
qf.vim596.00 B 10:53
quake.vim6.74 kB 06:49
r.vim3.23 kB 14:33
radiance.vim7.42 kB 14:14
ratpoison.vim16.88 kB 13:02
rc.vim10.19 kB 15:39
rcs.vim2.39 kB 16:12
rcslog.vim970.00 B 15:40
readline.vim7.58 kB 06:49
rebol.vim7.37 kB 14:15
registry.vim3.48 kB 06:41
remind.vim1.96 kB 14:14
resolv.vim2.74 kB 14:53
rexx.vim4.38 kB 14:58
rib.vim2.38 kB 14:42
rnc.vim2.74 kB 06:49
robots.vim1.80 kB 15:42
rpcgen.vim2.11 kB 13:25
rpl.vim25.29 kB 05:59
rst.vim3.74 kB 10:41
rtf.vim2.68 kB 14:36
ruby.vim18.53 kB 12:21
samba.vim6.33 kB 05:50
sas.vim10.48 kB 09:20
sather.vim3.74 kB 14:19
scheme.vim16.49 kB 04:45
scilab.vim3.44 kB 03:41
screen.vim3.78 kB 06:49
sdl.vim6.88 kB 15:47
sed.vim5.15 kB 14:19
sendpr.vim925.00 B 15:47
sgml.vim8.75 kB 09:20
sgmldecl.vim2.35 kB 16:04
sgmllnx.vim2.22 kB 14:15
sh.vim28.00 kB 13:25
sicad.vim18.50 kB 14:19
simula.vim3.59 kB 05:04
sinda.vim4.00 kB 14:32
sindacmp.vim1.64 kB 14:38
sindaout.vim2.36 kB 14:39
skill.vim25.50 kB 14:20
sl.vim4.32 kB 16:07
slang.vim3.55 kB 16:08
slice.vim3.14 kB 15:27
slrnrc.vim12.81 kB 05:39
slrnsc.vim3.45 kB 14:13
sm.vim3.21 kB 13:25
smarty.vim3.02 kB 06:39
smil.vim5.75 kB 13:58
smith.vim1.17 kB 16:13
sml.vim9.38 kB 04:11
snnsnet.vim2.63 kB 14:17
snnspat.vim2.29 kB 15:53
snnsres.vim2.09 kB 15:53
snobol4.vim3.62 kB 09:22
spec.vim12.40 kB 12:29
specman.vim7.47 kB 14:37
spice.vim2.51 kB 13:59
splint.vim15.76 kB 14:10
spup.vim13.60 kB 14:21
spyce.vim4.46 kB 14:52
sql.vim2.89 kB 03:52
sqlj.vim3.12 kB 14:42
sqlforms.vim6.97 kB 14:39
sqr.vim13.86 kB 09:21
squid.vim7.15 kB 11:27
sshconfig.vim3.80 kB 14:16
sshdconfig.vim3.94 kB 14:16
st.vim2.97 kB 16:21
stp.vim5.65 kB 14:26
strace.vim2.15 kB 13:59
sudoers.vim18.22 kB 06:32
svn.vim1.36 kB 10:11
syncolor.vim4.00 kB 04:07
synload.vim1.50 kB 06:11
syntax.vim1.20 kB 04:57
tads.vim7.01 kB 14:29
tags.vim1.54 kB 13:26
tak.vim3.27 kB 14:30
takcmp.vim1.94 kB 14:40
takout.vim2.39 kB 14:40
tasm.vim5.82 kB 15:48
tcl.vim14.35 kB 09:20
tcsh.vim9.81 kB 09:27
terminfo.vim4.97 kB 06:49
tex.vim24.64 kB 11:01
texinfo.vim25.25 kB 04:38
texmf.vim2.41 kB 03:19
tf.vim7.07 kB 15:48
tidy.vim6.80 kB 13:03
tilde.vim1.45 kB 14:52
tli.vim2.00 kB 15:54
tpp.vim3.31 kB 06:35
trasys.vim5.34 kB 14:38
tsalt.vim8.35 kB 16:37
tsscl.vim5.36 kB 14:37
tssgm.vim3.09 kB 14:37
tssop.vim2.13 kB 14:35
uc.vim6.76 kB 16:40
uil.vim2.87 kB 04:38
valgrind.vim2.92 kB 16:01
vb.vim12.84 kB 16:43
verilog.vim5.15 kB 09:20
verilogams.vim6.02 kB 06:00
vgrindefs.vim1.65 kB 09:10
vhdl.vim6.48 kB 16:40
vim.vim47.40 kB 04:54
viminfo.vim1.42 kB 09:12
virata.vim11.60 kB 14:38
vmasm.vim8.68 kB 09:28
vrml.vim12.92 kB 14:22
vsejcl.vim1.36 kB 15:54
wdiff.vim1.12 kB 14:38
web.vim1.24 kB 21:56
webmacro.vim3.39 kB 14:28
wget.vim8.59 kB 07:05
whitespace.vim357.00 B 16:43
winbatch.vim12.25 kB 15:54
wml.vim6.12 kB 14:28
wsh.vim1.21 kB 03:52
wvdial.vim1.07 kB 14:39
xdefaults.vim5.99 kB 09:10
xf86conf.vim14.54 kB 08:47
xhtml.vim186.00 B 16:52
xkb.vim3.38 kB 15:44
xmath.vim10.77 kB 13:26
xml.vim8.28 kB 05:12
xmodmap.vim23.56 kB 06:49
xpm.vim4.34 kB 16:59
xpm2.vim4.56 kB 14:31
xs.vim1.53 kB 17:00
xsd.vim2.07 kB 09:10
xslt.vim2.11 kB 16:38
xxd.vim1.16 kB 13:26
yacc.vim3.08 kB 13:26
yaml.vim3.40 kB 06:49
z8a.vim3.20 kB 14:23
zsh.vim4.92 kB 08:39
1.37 kB 05:19
<img src='/images/file_icons/folder.png' alt='源码文件 '>&lang&0.00 B 10:31
1.91 kB 10:05
menu_af.latin1.vim73.00 B 15:50
menu_af.utf-8.vim92.00 B 15:53
menu_af_af.latin1.vim5.32 kB 07:01
menu_af_af.utf-8.vim92.00 B 07:24
menu_ca.latin1.vim75.00 B 15:48
menu_ca.utf-8.vim153.00 B 09:33
menu_ca_es.latin1.vim12.30 kB 09:36
menu_ca_es.utf-8.vim153.00 B 09:36
menu_chinese(gb)_gb.936.vim270.00 B 02:06
menu_chinese(taiwan)_taiwan.950.vim284.00 B 06:08
menu_chinese_gb.936.vim8.41 kB 15:05
menu_chinese_taiwan.950.vim12.40 kB 04:52
menu_cs.cp1250.vim82.00 B 15:24
menu_cs.latin1.vim82.00 B 15:25
menu_ko_kr.vim144.00 B 17:06
menu_cs_cz.cp1250.vim82.00 B 15:24
menu_cs_cz.iso_8859-2.vim9.82 kB 10:29
menu_cs_cz.latin1.vim82.00 B 15:26
menu_czech_czech_republic.1250.vim9.82 kB 10:30
menu_czech_czech_republic.1252.vim113.00 B 07:02
menu_czech_czech_republic.ascii.vim9.81 kB 10:30
menu_de.latin1.vim94.00 B 15:29
menu_de.utf-8.vim89.00 B 15:58
menu_de_de.latin1.vim11.81 kB 14:45
menu_de_de.utf-8.vim89.00 B 07:03
menu_en_gb.latin1.vim484.00 B 16:53
menu_en_gb.utf-8.vim74.00 B 16:25
menu_english_united_kingdom.1252.vim84.00 B 16:26
menu_english_united_kingdom.ascii.vim84.00 B 16:26
menu_es.latin1.vim71.00 B 15:43
menu_es.utf-8.vim90.00 B 15:59
menu_es_es.latin1.vim12.31 kB 06:16
menu_es_es.utf-8.vim90.00 B 07:21
menu_fr.latin1.vim94.00 B 15:27
menu_fr.utf-8.vim89.00 B 16:05
<img src='/images/file_icons/folder.png' alt='源码文件 '>&menu_fr_fr.latin1.vim&0.00 B
Sponsored links
23 Source Codes 21 Source Codes 18 Source Codes 13 Source Codes 9 Source Codes
285 Source Codes 173 Source Codes 48 Source Codes 42 Source Codes 36 Source Codes
Sent successfully!
Your Point(s)
Your Point isn't enough.
Get point immediately by PayPal
10 Point / $20
22 Point / $40
55 Point / $100
120 Point / $200
point will be added to your account automatically after the transaction.
Don't have an account?
Need any help?
切换到中文版?
^_^"Oops ...
Sorry!This guy is mysterious, its blog hasn't been opened, try another, please!
Favorite by

我要回帖

更多关于 小米运动 1.2.663 的文章

 

随机推荐