annotate src/vimio.h @ 3229:e958eeffa0a7
v7.3.384
updated for version 7.3.384
Problem: Mapping CTRL-K in Insert mode breaks CTRL-X CTRL-K for dictionary
completion.
Solution: Add CTRL-K to the list of recognized keys. (James McCoy)
author |
Bram Moolenaar <bram@vim.org> |
date |
Fri, 23 Dec 2011 13:15:03 +0100 |
parents |
0f9f4761ad9c |
children |
e6d8b44065bc |
rev |
line source |
714
|
1 /* vi:set ts=8 sts=4 sw=4:
|
|
2 *
|
|
3 * VIM - Vi IMproved by Bram Moolenaar
|
|
4 *
|
|
5 * Do ":help uganda" in Vim to read copying and usage conditions.
|
|
6 * Do ":help credits" in Vim to see a list of people who contributed.
|
|
7 * See README.txt for an overview of the Vim source code.
|
|
8 */
|
|
9
|
|
10 /* Visual Studio 2005 has 'deprecated' many of the standard CRT functions */
|
|
11 #if _MSC_VER >= 1400
|
|
12 # define _CRT_SECURE_NO_DEPRECATE
|
|
13 # define _CRT_NONSTDC_NO_DEPRECATE
|
|
14 #endif
|
|
15
|
|
16 #include <io.h>
|