We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When shell-pop-shell is called in a dired buffer, the resultant pop-up shell doesn't cd correctly for paths containing the user's home directory:
shell-pop-shell
# Example opening popup shell in dired buffer /home/bob/foo $ cd \~/foo/ cd: no such file or directory: ~/foo
EDIT: shell-pop-shell is shell-pop with the shell type set to "shell".
shell-pop
The text was updated successfully, but these errors were encountered:
In dired, default-directory starts with a tilde: ~/foo instead of /home/bob/foo. I don't know why this is, it might be caused by another package.
default-directory
~/foo
/home/bob/foo
The tilde can be expanded using expand-file-name at https://github.com/kyagi/shell-pop-el/blob/master/shell-pop.el#L209 although that is not the intended usage of expand-file-name.
expand-file-name
Sorry, something went wrong.
Thanks for reporting issue. I have fixed at this issue at #39. Please check latest version.
Thanks for the quick fix.
No branches or pull requests
When
shell-pop-shell
is called in a dired buffer, the resultant pop-up shell doesn't cd correctly for paths containing the user's home directory:EDIT:
shell-pop-shell
isshell-pop
with the shell type set to "shell".The text was updated successfully, but these errors were encountered: