-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open new tab take lots of time on Hyper 2.1.0-canary.3 #58
Comments
This might be related to vercel/hyper#2838 |
Note sure. Everything was ok on canary 2 and if I disable hypercwd, I have no issue anymore |
Still the same with 2.1.0 stable for me. |
The problem is located in the In the snippet below, const newCwd = await promiseExec(
`lsof -p ${tab.pid} | grep cwd | tr -s ' ' | cut -d ' ' -f9-`);
const cwd = newCwd.trim(); It doesn't seem like this repository is being actively maintained, so I decided to write a quick replacement plugin. It's located here hyper-samewd. Install with |
@LeanderFS Thanks! I also changed the plugin to hypersamewd ! |
The same thing happened. const newCwd = await promiseExec( // Specify LANG and not resolving domains
`LANG=en_US.utf-8 lsof -n -p ${
tab.pid
} | grep cwd | tr -s ' ' | cut -d ' ' -f9-`
); But it has not tested in various environments. |
Hi,
Its take lots of time to open a new tab or split with the last canary version of Hyper.
No specific console log.
Any ideas ?
The text was updated successfully, but these errors were encountered: