macro_rules! send_keys {
    (@cmd ($cmd:expr) -F, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -H, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -K, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -l, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -M, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -R, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -X, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -c $target_client:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -N $repeat_count:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -t $target_pane:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -t $target_window:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) $key:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr)) => { ... };
    () => { ... };
    (($cmd:expr), $($tail:tt)*) => { ... };
    ($($tail:tt)*) => { ... };
}
Expand description

Structure

§Manual

tmux ^3.4:

send-keys [-FHKlMRX] [-c target-client] [-N repeat-count] [-t target-pane] key ...
(alias: send)

tmux ^3.1:

send-keys [-FHlMRX] [-N repeat-count] [-t target-pane] key ...
(alias: send)

tmux ^3.0:

send-keys [-HlMRX] [-N repeat-count] [-t target-pane] key ...
(alias: send)

tmux ^2.4:

send-keys [-lMRX] [-N repeat-count] [-t target-pane] key ...
(alias: send)

tmux ^2.1:

send-keys [-lMR] [-t target-pane] key ...
(alias: send)

tmux ^1.7:

send-keys [-lR] [-t target-pane] key ...
(alias: send)

tmux ^1.6:

send-keys [-R] [-t target-pane] key ...
(alias: send)

tmux ^0.8:

send-keys [-t target-window] key ...
(alias: send)