In some situations send-keys might fire before the shell prompt finished initilization. It happened for me when using fish shell and oh-my-fish which makes the send-keys start executing bofore my shell is ready and I endup with a written command that is not executed
This patch adds a custom sendkeys_timeout as a top level option that takes an integer in milliseconds. It will ensure a Sleep call is made before.
In some situations send-keys might fire before the shell prompt finished initilization. It happened for me when using fish shell and oh-my-fish which makes the send-keys start executing bofore my shell is ready and I endup with a written command that is not executed
This patch adds a custom
sendkeys_timeout
as a top level option that takes an integer in milliseconds. It will ensure a Sleep call is made before.