Mercurial > vim
annotate src/proto/diff.pro @ 6620:578c16fbab66 v7.4.636
updated for version 7.4.636
Problem: A search with end offset gets stuck at end of file. (Gary Johnson)
Solution: When a search doesn't move the cursor repeat it with a higher
count. (Christian Brabandt)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Tue, 17 Feb 2015 15:43:57 +0100 |
parents | df92c2b2a179 |
children | 21b0a39d13ed |
rev | line source |
---|---|
7 | 1 /* diff.c */ |
1121 | 2 void diff_buf_delete __ARGS((buf_T *buf)); |
3 void diff_buf_adjust __ARGS((win_T *win)); | |
4 void diff_buf_add __ARGS((buf_T *buf)); | |
5 void diff_invalidate __ARGS((buf_T *buf)); | |
6 void diff_mark_adjust __ARGS((linenr_T line1, linenr_T line2, long amount, long amount_after)); | |
7 void ex_diffupdate __ARGS((exarg_T *eap)); | |
8 void ex_diffpatch __ARGS((exarg_T *eap)); | |
9 void ex_diffsplit __ARGS((exarg_T *eap)); | |
10 void ex_diffthis __ARGS((exarg_T *eap)); | |
11 void diff_win_options __ARGS((win_T *wp, int addbuf)); | |
12 void ex_diffoff __ARGS((exarg_T *eap)); | |
13 void diff_clear __ARGS((tabpage_T *tp)); | |
14 int diff_check __ARGS((win_T *wp, linenr_T lnum)); | |
15 int diff_check_fill __ARGS((win_T *wp, linenr_T lnum)); | |
16 void diff_set_topline __ARGS((win_T *fromwin, win_T *towin)); | |
17 int diffopt_changed __ARGS((void)); | |
18 int diffopt_horizontal __ARGS((void)); | |
19 int diff_find_change __ARGS((win_T *wp, linenr_T lnum, int *startp, int *endp)); | |
20 int diff_infold __ARGS((win_T *wp, linenr_T lnum)); | |
6314 | 21 void nv_diffgetput __ARGS((int put, long count)); |
1121 | 22 void ex_diffgetput __ARGS((exarg_T *eap)); |
23 int diff_mode_buf __ARGS((buf_T *buf)); | |
24 int diff_move_to __ARGS((int dir, long count)); | |
2340
99c1eba60b2d
Make automatic prototype generation work with more interfaces.
Bram Moolenaar <bram@vim.org>
parents:
2250
diff
changeset
|
25 linenr_T diff_get_corresponding_line __ARGS((buf_T *buf1, linenr_T lnum1, buf_T *buf2, linenr_T lnum3)); |
1121 | 26 linenr_T diff_lnum_win __ARGS((linenr_T lnum, win_T *wp)); |
7 | 27 /* vim: set ft=c : */ |