You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 7, 2024. It is now read-only.
when using Vintage and VintageEx (beutiful, mind blowing editing experience), one thing is not working; :sh to execute shell, i get an error saying :
VintageEx: Error while executing command through shell
I've took a look at the relevant code, the error must arise from either:
p = subprocess.Popen([the_shell, '-c', name],
stdout=subprocess.PIPE)
or
try:
self.open_shell([term, '-e', 'bash']).wait()
except Exception as e:
print e
sublime.status_message("VintageEx: Error while executing command through shell.")
return
I'm pretty sure i have bash installed
This is ubuntu 12.10 x86_64, sublime 2.0.1 build 2217
The text was updated successfully, but these errors were encountered:
I have the same issue. I am running ArchLinux. As I understood It can't read correctly enviroment variables. If I manually set
"vintageex_linux_terminal": "xfce4-terminal",
"vintageex_linux_shell": "bash",
in my user settings, then it works fine.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
when using Vintage and VintageEx (beutiful, mind blowing editing experience), one thing is not working; :sh to execute shell, i get an error saying :
VintageEx: Error while executing command through shell
I've took a look at the relevant code, the error must arise from either:
p = subprocess.Popen([the_shell, '-c', name],
stdout=subprocess.PIPE)
or
try:
self.open_shell([term, '-e', 'bash']).wait()
except Exception as e:
print e
sublime.status_message("VintageEx: Error while executing command through shell.")
return
I'm pretty sure i have bash installed
This is ubuntu 12.10 x86_64, sublime 2.0.1 build 2217
The text was updated successfully, but these errors were encountered: