mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-14 04:24:52 +02:00
ssh kitten: Send data without a roundtrip
Send data to the remote side without waiting for a data request. Avoids an extra roundtrip during initialization.
This commit is contained in:
@@ -243,7 +243,8 @@ copy --exclude */w.* d1
|
||||
test_script = f'echo "UNTAR_DONE"; {test_script}'
|
||||
ssh_opts['shell_integration'] = SHELL_INTEGRATION_VALUE or 'disabled'
|
||||
script, replacements, shm = bootstrap_script(
|
||||
SSHOptions(ssh_opts), script_type='py' if 'python' in sh else 'sh', request_id="testing", test_script=test_script
|
||||
SSHOptions(ssh_opts), script_type='py' if 'python' in sh else 'sh', request_id="testing", test_script=test_script,
|
||||
request_data=True
|
||||
)
|
||||
try:
|
||||
env = basic_shell_env(home_dir)
|
||||
|
||||
Reference in New Issue
Block a user