diff --git a/lisp/ob-shell.el b/lisp/ob-shell.el index 77e73d098..31135b5fb 100644 --- a/lisp/ob-shell.el +++ b/lisp/ob-shell.el @@ -52,8 +52,6 @@ ("fish" . "function fish_prompt\n\techo \"%s\"\nend") ;; prompt2 is like PS2 in POSIX shells. ("csh" . "set prompt=\"%s\"\nset prompt2=\"\"") - ;; PowerShell, similar to fish, does not have PS2 equivalent. - ("posh" . "function prompt { \"%s\" }") ;; PROMPT_COMMAND can override PS1 settings. Disable it. ;; Disable PS2 to avoid garbage in multi-line inputs. (t . "PROMPT_COMMAND=;PS1=\"%s\";PS2="))