-
Notifications
You must be signed in to change notification settings - Fork 11
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
vterm-toggle-cd
not inserting CD command
#13
Comments
tell me the value of or custom |
@jixiuf it's
Inside the vterm, this is the value of $PROMPT
|
it's weird the value of |
I have the same problem but without the My workaround is this: (defun tmalsburg-vterm-toggle-cd-show ()
(interactive)
(vterm-toggle-cd-show)
(vterm-toggle-insert-cd))
(define-key vterm-mode-map [f4] 'tmalsburg-vterm-toggle-cd-show) |
I had the same issue. (vterm--prompt-tracking-enabled-p) is nil. for me as well. |
My experience with
|
Maybe this is me not understanding how the package works, but when I invoke
vterm-toggle-cd
I expect it to bring up a vterm buffer andcd
to the location of the last active buffer.Instead, calling that function inserts
^K
into the vterm buffer, like soafter this, manually calling
vterm-toggle-insert-cd
manually works correctly, but my understanding is thatvterm-toggle-cd
should be exactly equivalent to manually invokingvterm-toggle
and thenvterm-toggle-insert-cd
- for me it's not.Am I missing something?
The text was updated successfully, but these errors were encountered: