1
0
forked from aniani/vim

patch 7.4.1341

Problem:    It's difficult to add more arguments to ch_sendraw() and
            ch_sendexpr().
Solution:   Make the third option a dictionary.
This commit is contained in:
Bram Moolenaar
2016-02-16 21:03:07 +01:00
parent 7d63f62460
commit 910b8aac5d
10 changed files with 91 additions and 54 deletions

View File

@@ -1373,11 +1373,12 @@ struct channel_S {
};
/*
* Options for job commands.
* Options for job and channel commands.
*/
typedef struct
{
ch_mode_T jo_mode;
ch_mode_T jo_mode; /* "mode" */
char_u *jo_callback; /* "callback", not allocated! */
} jobopt_T;