comparison src/proto/undo.pro @ 2236:dc2e5ec0500d vim73

Added the undofile() function. Updated runtime files.
author Bram Moolenaar <bram@vim.org>
date Sun, 30 May 2010 18:30:36 +0200
parents aa6412cab544
children 3d0a7beb0d75
comparison
equal deleted inserted replaced
2235:4ba83ae8d505 2236:dc2e5ec0500d
5 int u_savesub __ARGS((linenr_T lnum)); 5 int u_savesub __ARGS((linenr_T lnum));
6 int u_inssub __ARGS((linenr_T lnum)); 6 int u_inssub __ARGS((linenr_T lnum));
7 int u_savedel __ARGS((linenr_T lnum, long nlines)); 7 int u_savedel __ARGS((linenr_T lnum, long nlines));
8 int undo_allowed __ARGS((void)); 8 int undo_allowed __ARGS((void));
9 void u_compute_hash __ARGS((char_u *hash)); 9 void u_compute_hash __ARGS((char_u *hash));
10 char_u *u_get_undo_file_name __ARGS((char_u *buf_ffname, int reading));
11 void u_write_undo __ARGS((char_u *name, int forceit, buf_T *buf, char_u *hash));
10 void u_read_undo __ARGS((char_u *name, char_u *hash)); 12 void u_read_undo __ARGS((char_u *name, char_u *hash));
11 void u_write_undo __ARGS((char_u *name, int forceit, buf_T *buf, char_u *hash));
12 void u_undo __ARGS((int count)); 13 void u_undo __ARGS((int count));
13 void u_redo __ARGS((int count)); 14 void u_redo __ARGS((int count));
14 void undo_time __ARGS((long step, int sec, int absolute)); 15 void undo_time __ARGS((long step, int sec, int absolute));
15 void u_sync __ARGS((int force)); 16 void u_sync __ARGS((int force));
16 void ex_undolist __ARGS((exarg_T *eap)); 17 void ex_undolist __ARGS((exarg_T *eap));