1
0
forked from aniani/vim

updated for version 7.0044

This commit is contained in:
Bram Moolenaar 2005-01-25 22:03:25 +00:00
parent 6ebb114c0c
commit 495de9c1ae
5 changed files with 13230 additions and 5226 deletions

View File

@ -3638,7 +3638,10 @@ E733 eval.txt /*E733*
E735 eval.txt /*E735* E735 eval.txt /*E735*
E736 eval.txt /*E736* E736 eval.txt /*E736*
E737 eval.txt /*E737* E737 eval.txt /*E737*
E738 eval.txt /*E738*
E739 starting.txt /*E739*
E74 message.txt /*E74* E74 message.txt /*E74*
E740 eval.txt /*E740*
E75 vi_diff.txt /*E75* E75 vi_diff.txt /*E75*
E76 pattern.txt /*E76* E76 pattern.txt /*E76*
E77 message.txt /*E77* E77 message.txt /*E77*
@ -3998,6 +4001,9 @@ a' motion.txt /*a'*
a( motion.txt /*a(* a( motion.txt /*a(*
a) motion.txt /*a)* a) motion.txt /*a)*
a4 print.txt /*a4* a4 print.txt /*a4*
a:0 eval.txt /*a:0*
a:000 eval.txt /*a:000*
a:1 eval.txt /*a:1*
a:firstline eval.txt /*a:firstline* a:firstline eval.txt /*a:firstline*
a:lastline eval.txt /*a:lastline* a:lastline eval.txt /*a:lastline*
a:var eval.txt /*a:var* a:var eval.txt /*a:var*
@ -5038,6 +5044,7 @@ hebrew hebrew.txt /*hebrew*
hebrew.txt hebrew.txt /*hebrew.txt* hebrew.txt hebrew.txt /*hebrew.txt*
help various.txt /*help* help various.txt /*help*
help-context help.txt /*help-context* help-context help.txt /*help-context*
help-tags tags 1
help-translated various.txt /*help-translated* help-translated various.txt /*help-translated*
help-xterm-window various.txt /*help-xterm-window* help-xterm-window various.txt /*help-xterm-window*
help.txt help.txt /*help.txt* help.txt help.txt /*help.txt*
@ -5392,6 +5399,7 @@ local-additions help.txt /*local-additions*
local-function eval.txt /*local-function* local-function eval.txt /*local-function*
local-options options.txt /*local-options* local-options options.txt /*local-options*
local-variable eval.txt /*local-variable* local-variable eval.txt /*local-variable*
local-variables eval.txt /*local-variables*
locale mbyte.txt /*locale* locale mbyte.txt /*locale*
locale-name mbyte.txt /*locale-name* locale-name mbyte.txt /*locale-name*
localtime() eval.txt /*localtime()* localtime() eval.txt /*localtime()*
@ -6047,6 +6055,7 @@ save-settings starting.txt /*save-settings*
scheme-syntax syntax.txt /*scheme-syntax* scheme-syntax syntax.txt /*scheme-syntax*
scheme.vim syntax.txt /*scheme.vim* scheme.vim syntax.txt /*scheme.vim*
scp pi_netrw.txt /*scp* scp pi_netrw.txt /*scp*
script usr_41.txt /*script*
script-here if_perl.txt /*script-here* script-here if_perl.txt /*script-here*
script-local map.txt /*script-local* script-local map.txt /*script-local*
script-variable eval.txt /*script-variable* script-variable eval.txt /*script-variable*

View File

@ -3,7 +3,12 @@ The plugin directory is for standard Vim plugin scripts.
All files here ending in .vim will be sourced by Vim when it starts up. All files here ending in .vim will be sourced by Vim when it starts up.
Standard plugins: Standard plugins:
explorer.vim file browser
gzip.vim edit compressed files gzip.vim edit compressed files
netrw.vim edit files over a network netrw.vim edit files over a network and browse (remote) directories
rrhelper.vim used for --remote-wait editing rrhelper.vim used for --remote-wait editing
tar.vim edit (compressed) tar files
tohtml.vim convert a file with syntax highlighting to HTML
Note: the explorer.vim plugin is no longer here, the netrw.vim plugin has
taken over browsing directories (also over ftp).

18429
src/auto/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -235,7 +235,7 @@ gui_mch_prepare(int *argc, char **argv)// {{{
i--; i--;
} }
} }
KCmdLineArgs::init(gui_argc, gui_argv, "kvim", KCmdLineArgs::init(gui_argc, gui_argv, argv[0], I18N_NOOP("KVim"),
I18N_NOOP("Vim inside KDE"), VIM_VERSION_SHORT); I18N_NOOP("Vim inside KDE"), VIM_VERSION_SHORT);
}// }}} }// }}}
@ -1408,5 +1408,5 @@ gui_mch_adjust_charsize ()//{{{
void void
gui_mch_set_foreground ()//{{{ gui_mch_set_foreground ()//{{{
{ {
KWin::setActiveWindow(vmw->winId()); KWin::activateWindow(vmw->winId());
}//}}} }//}}}

View File

@ -42,8 +42,9 @@ char_u *v_throwpoint __ARGS((char_u *oldval));
char_u *set_cmdarg __ARGS((exarg_T *eap, char_u *oldarg)); char_u *set_cmdarg __ARGS((exarg_T *eap, char_u *oldarg));
char_u *get_var_value __ARGS((char_u *name)); char_u *get_var_value __ARGS((char_u *name));
void new_script_vars __ARGS((scid_T id)); void new_script_vars __ARGS((scid_T id));
void vars_init __ARGS((hashtable *ht)); void vars_init __ARGS((hashtab_T *ht));
void vars_clear __ARGS((hashtable *ht)); void init_var_dict __ARGS((dict_T *dict, dictitem_T *dict_var));
void vars_clear __ARGS((hashtab_T *ht));
void ex_echo __ARGS((exarg_T *eap)); void ex_echo __ARGS((exarg_T *eap));
void ex_echohl __ARGS((exarg_T *eap)); void ex_echohl __ARGS((exarg_T *eap));
void ex_execute __ARGS((exarg_T *eap)); void ex_execute __ARGS((exarg_T *eap));