mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-06 10:42:08 +00:00
Merge pull request #1305 from zed-industries/fix-default-shell
Now defaults to using user's shell
This commit is contained in:
commit
ad5e4e7c6c
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
use alacritty_terminal::{
|
use alacritty_terminal::{
|
||||||
config::{Config, Program, PtyConfig},
|
config::{Config, PtyConfig},
|
||||||
event::{Event as AlacTermEvent, EventListener, Notify},
|
event::{Event as AlacTermEvent, EventListener, Notify},
|
||||||
event_loop::{EventLoop, Msg, Notifier},
|
event_loop::{EventLoop, Msg, Notifier},
|
||||||
grid::Scroll,
|
grid::Scroll,
|
||||||
|
@ -125,7 +125,7 @@ impl Terminal {
|
||||||
.detach();
|
.detach();
|
||||||
|
|
||||||
let pty_config = PtyConfig {
|
let pty_config = PtyConfig {
|
||||||
shell: Some(Program::Just("zsh".to_string())),
|
shell: None,
|
||||||
working_directory,
|
working_directory,
|
||||||
hold: false,
|
hold: false,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue