macro_rules! list_keys {
    (@cmd ($cmd:expr) -1, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -a, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -N, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -P $prefix_string:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -t $table:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr) -T $key_table:expr, $($tail:tt)*) => { ... };
    (@cmd ($cmd:expr)) => { ... };
    () => { ... };
    (($cmd:expr), $($tail:tt)*) => { ... };
    ($($tail:tt)*) => { ... };
}
Expand description

§Manual

tmux ^3.1:

list-keys [-1aN] [-P prefix-string -T key-table]
(alias: lsk)

tmux ^2.4:

list-keys [-T key-table]
(alias: lsk)

tmux ^2.1:

list-keys [-t mode-table] [-T key-table]
(alias: lsk)

tmux ^0.8:

list-keys [-t key-table]
(alias: lsk)