Mercurial > vim
annotate src/proto/main.pro @ 6853:d1a87b307a50 v7.4.747
patch 7.4.747
Problem: ":cnext" may jump to the wrong column when setting
'virtualedit=all' (cs86661)
Solution: Reset the coladd field. (Hirohito Higashi)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Fri, 19 Jun 2015 18:35:34 +0200 |
parents | 99c1eba60b2d |
children | 21b0a39d13ed |
rev | line source |
---|---|
7 | 1 /* main.c */ |
1121 | 2 void main_loop __ARGS((int cmdwin, int noexmode)); |
3 void getout_preserve_modified __ARGS((int exitval)); | |
4 void getout __ARGS((int exitval)); | |
5 int process_env __ARGS((char_u *env, int is_viminit)); | |
6 void mainerr_arg_missing __ARGS((char_u *str)); | |
7 void time_push __ARGS((void *tv_rel, void *tv_start)); | |
8 void time_pop __ARGS((void *tp)); | |
2340
99c1eba60b2d
Make automatic prototype generation work with more interfaces.
Bram Moolenaar <bram@vim.org>
parents:
1121
diff
changeset
|
9 void time_msg __ARGS((char *mesg, void *tv_start)); |
1121 | 10 void server_to_input_buf __ARGS((char_u *str)); |
11 char_u *eval_client_expr_to_string __ARGS((char_u *expr)); | |
12 char_u *serverConvert __ARGS((char_u *client_enc, char_u *data, char_u **tofree)); | |
13 int toF_TyA __ARGS((int c)); | |
14 int fkmap __ARGS((int c)); | |
15 void conv_to_pvim __ARGS((void)); | |
16 void conv_to_pstd __ARGS((void)); | |
17 char_u *lrswap __ARGS((char_u *ibuf)); | |
18 char_u *lrFswap __ARGS((char_u *cmdbuf, int len)); | |
19 char_u *lrF_sub __ARGS((char_u *ibuf)); | |
20 int cmdl_fkmap __ARGS((int c)); | |
21 int F_isalpha __ARGS((int c)); | |
22 int F_isdigit __ARGS((int c)); | |
23 int F_ischar __ARGS((int c)); | |
24 void farsi_fkey __ARGS((cmdarg_T *cap)); | |
25 int arabic_shape __ARGS((int c, int *ccp, int *c1p, int prev_c, int prev_c1, int next_c)); | |
7 | 26 /* vim: set ft=c : */ |