Mercurial > vim
view src/proto/crypt_zip.pro @ 7074:c8efa41dd451 v7.4.849
commit https://github.com/vim/vim/commit/8b5f65a527c353b9942e362e719687c3a7592309
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Sep 1 19:26:12 2015 +0200
patch 7.4.849
Problem: Moving the cursor in Insert mode starts new undo sequence.
Solution: Add CTRL-G U to keep the undo sequence for the following cursor
movement command. (Christian Brabandt)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 01 Sep 2015 19:30:04 +0200 |
parents | 18ac55444b37 |
children | 21b0a39d13ed |
line wrap: on
line source
/* crypt_zip.c */ void crypt_zip_init __ARGS((cryptstate_T *state, char_u *key, char_u *salt, int salt_len, char_u *seed, int seed_len)); void crypt_zip_encode __ARGS((cryptstate_T *state, char_u *from, size_t len, char_u *to)); void crypt_zip_decode __ARGS((cryptstate_T *state, char_u *from, size_t len, char_u *to)); /* vim: set ft=c : */