mirror of
https://github.com/neovim/neovim.git
synced 2025-10-02 07:58:35 +00:00
Port capture() function
https://groups.google.com/forum/#!msg/vim_dev/H3Z3ChSUh_4/beZs6KzYdBsJ
This commit is contained in:
@@ -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 */
|
||||
|
||||
|
Reference in New Issue
Block a user