diff options
| author | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2016-05-03 13:35:04 +0900 |
|---|---|---|
| committer | Shougo Matsushita <Shougo.Matsu@gmail.com> | 2016-05-27 10:33:44 +0900 |
| commit | 41c0dfd5454702d639d97c44a8fd38cbdd2ff0ba (patch) | |
| tree | 808a8322cf61a56ba3a84bf0fc49b882cdb3c484 /src/nvim/globals.h | |
| parent | bfbc974d13c46ace84bec261263ab044b8c81265 (diff) | |
| download | rneovim-41c0dfd5454702d639d97c44a8fd38cbdd2ff0ba.tar.gz rneovim-41c0dfd5454702d639d97c44a8fd38cbdd2ff0ba.tar.bz2 rneovim-41c0dfd5454702d639d97c44a8fd38cbdd2ff0ba.zip | |
Port capture() function
https://groups.google.com/forum/#!msg/vim_dev/H3Z3ChSUh_4/beZs6KzYdBsJ
Diffstat (limited to 'src/nvim/globals.h')
| -rw-r--r-- | src/nvim/globals.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index dafb75ca87..d399db1381 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -985,10 +985,11 @@ EXTERN int keep_help_flag INIT(= FALSE); /* doing :ta from help file */ */ EXTERN char_u *empty_option INIT(= (char_u *)""); -EXTERN int redir_off INIT(= FALSE); /* no redirection for a moment */ -EXTERN FILE *redir_fd INIT(= NULL); /* message redirection file */ -EXTERN int redir_reg INIT(= 0); /* message redirection register */ -EXTERN int redir_vname INIT(= 0); /* message redirection variable */ +EXTERN int redir_off INIT(= false); // no redirection for a moment +EXTERN FILE *redir_fd INIT(= NULL); // message redirection file +EXTERN int redir_reg INIT(= 0); // message redirection register +EXTERN int redir_vname INIT(= 0); // message redirection variable +EXTERN garray_T *capture_ga INIT(= NULL); // capture() buffer EXTERN char_u langmap_mapchar[256]; /* mapping for language keys */ |