diff options
author | Nathan Lilienthal <nathan@nixpulvis.com> | 2020-11-06 23:48:48 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-07 04:48:48 +0000 |
commit | 4fc35f6038256078e7030bf95b6260cc5390bb4f (patch) | |
tree | 2c073f92f77c09cdee801a336498645aaa9043e6 /alacritty/src/macos/mod.rs | |
parent | 43d1afbeeb9cba0ce1281a9cf2223b5bd71664d2 (diff) | |
download | r-alacritty-4fc35f6038256078e7030bf95b6260cc5390bb4f.tar.gz r-alacritty-4fc35f6038256078e7030bf95b6260cc5390bb4f.tar.bz2 r-alacritty-4fc35f6038256078e7030bf95b6260cc5390bb4f.zip |
Spawn new alacritty processes in CWD on macOS
On macOS we can use 'proc_pidinfo' to determine the working
directory of the terminal foreground process.
Fixes #1979.
Diffstat (limited to 'alacritty/src/macos/mod.rs')
-rw-r--r-- | alacritty/src/macos/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/alacritty/src/macos/mod.rs b/alacritty/src/macos/mod.rs new file mode 100644 index 00000000..1d630730 --- /dev/null +++ b/alacritty/src/macos/mod.rs @@ -0,0 +1,2 @@ +pub mod locale; +pub mod proc; |