comparison src/proto/misc1.pro @ 3744:99f076ca8d84 v7.3.631

updated for version 7.3.631 Problem: Cannot complete user names. Solution: Add user name completion. (Dominique Pelle)
author Bram Moolenaar <bram@vim.org>
date Wed, 15 Aug 2012 14:05:05 +0200
parents 5c1aaf9b4b1b
children 9e119e0ade5d
comparison
equal deleted inserted replaced
3743:8bfe7f121b55 3744:99f076ca8d84
48 void msgmore __ARGS((long n)); 48 void msgmore __ARGS((long n));
49 void beep_flush __ARGS((void)); 49 void beep_flush __ARGS((void));
50 void vim_beep __ARGS((void)); 50 void vim_beep __ARGS((void));
51 void init_homedir __ARGS((void)); 51 void init_homedir __ARGS((void));
52 void free_homedir __ARGS((void)); 52 void free_homedir __ARGS((void));
53 void free_users __ARGS((void));
53 char_u *expand_env_save __ARGS((char_u *src)); 54 char_u *expand_env_save __ARGS((char_u *src));
54 char_u *expand_env_save_opt __ARGS((char_u *src, int one)); 55 char_u *expand_env_save_opt __ARGS((char_u *src, int one));
55 void expand_env __ARGS((char_u *src, char_u *dst, int dstlen)); 56 void expand_env __ARGS((char_u *src, char_u *dst, int dstlen));
56 void expand_env_esc __ARGS((char_u *srcp, char_u *dst, int dstlen, int esc, int one, char_u *startstr)); 57 void expand_env_esc __ARGS((char_u *srcp, char_u *dst, int dstlen, int esc, int one, char_u *startstr));
57 char_u *vim_getenv __ARGS((char_u *name, int *mustfree)); 58 char_u *vim_getenv __ARGS((char_u *name, int *mustfree));
58 void vim_setenv __ARGS((char_u *name, char_u *val)); 59 void vim_setenv __ARGS((char_u *name, char_u *val));
59 char_u *get_env_name __ARGS((expand_T *xp, int idx)); 60 char_u *get_env_name __ARGS((expand_T *xp, int idx));
61 char_u *get_users __ARGS((expand_T *xp, int idx));
62 int match_user __ARGS((char_u* name));
60 void home_replace __ARGS((buf_T *buf, char_u *src, char_u *dst, int dstlen, int one)); 63 void home_replace __ARGS((buf_T *buf, char_u *src, char_u *dst, int dstlen, int one));
61 char_u *home_replace_save __ARGS((buf_T *buf, char_u *src)); 64 char_u *home_replace_save __ARGS((buf_T *buf, char_u *src));
62 int fullpathcmp __ARGS((char_u *s1, char_u *s2, int checkname)); 65 int fullpathcmp __ARGS((char_u *s1, char_u *s2, int checkname));
63 char_u *gettail __ARGS((char_u *fname)); 66 char_u *gettail __ARGS((char_u *fname));
64 char_u *gettail_sep __ARGS((char_u *fname)); 67 char_u *gettail_sep __ARGS((char_u *fname));