Add support for SIGQUIT, SIGSTOP, and tmux special character bindings
This commit is contained in:
parent
a577dee52c
commit
8befa1ebf7
2 changed files with 21 additions and 0 deletions
|
|
@ -135,6 +135,18 @@ rpc.on('session break req', () => {
|
|||
store_.dispatch(sessionActions.sendSessionData(null, '\x03'));
|
||||
});
|
||||
|
||||
rpc.on('session stop req', () => {
|
||||
store_.dispatch(sessionActions.sendSessionData(null, '\x1a'));
|
||||
});
|
||||
|
||||
rpc.on('session quit req', () => {
|
||||
store_.dispatch(sessionActions.sendSessionData(null, '\x1c'));
|
||||
});
|
||||
|
||||
rpc.on('session tmux req', () => {
|
||||
store_.dispatch(sessionActions.sendSessionData(null, '\x02'));
|
||||
});
|
||||
|
||||
rpc.on('session search', () => {
|
||||
store_.dispatch(sessionActions.onSearch());
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue