mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 14:27:09 +00:00
Add helpers for the simple case of parse string and add to command queue.
This commit is contained in:
6
tmux.h
6
tmux.h
@ -2089,6 +2089,12 @@ void cmd_parse_empty(struct cmd_parse_input *);
|
||||
struct cmd_parse_result *cmd_parse_from_file(FILE *, struct cmd_parse_input *);
|
||||
struct cmd_parse_result *cmd_parse_from_string(const char *,
|
||||
struct cmd_parse_input *);
|
||||
enum cmd_parse_status cmd_parse_and_insert(const char *,
|
||||
struct cmd_parse_input *, struct cmdq_item *,
|
||||
struct cmdq_state *, char **);
|
||||
enum cmd_parse_status cmd_parse_and_append(const char *,
|
||||
struct cmd_parse_input *, struct client *,
|
||||
struct cmdq_state *, char **);
|
||||
struct cmd_parse_result *cmd_parse_from_buffer(const void *, size_t,
|
||||
struct cmd_parse_input *);
|
||||
struct cmd_parse_result *cmd_parse_from_arguments(int, char **,
|
||||
|
Reference in New Issue
Block a user