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 /CHANGELOG.md | |
parent | 43d1afbeeb9cba0ce1281a9cf2223b5bd71664d2 (diff) | |
download | alacritty-4fc35f6038256078e7030bf95b6260cc5390bb4f.tar.gz 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 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index a350cff1..f8d615b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,7 +31,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Changed - Cursors are now inverted when their fixed color is similar to the cell's background -- Use working directory of active process instead of shell for SpawnNewInstance action +- Use the working directory of the terminal foreground process, instead of the shell's working + directory, for `SpawnNewInstance` action - Fallback to normal underline for unsupported underline types in `CSI 4 : ? m` escapes - The user's background color is now used as the foreground for the render timer - Use yellow/red from the config for error and warning messages instead of fixed colors @@ -39,6 +40,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Wayland's Client side decorations now use the search bar colors - Reduce memory usage by up to at least 30% with a full scrollback buffer - The number of zerowidth characters per cell is no longer limited to 5 +- `SpawnNewInstance` is now using the working directory of the terminal foreground process on macOS ### Fixed |