aboutsummaryrefslogtreecommitdiff
path: root/alacritty/src/macos/locale.rs
Commit message (Collapse)AuthorAge
* Switch to new objc2 cratesMads Marquart2024-11-21
|
* Update rustfmt configurationChristian Duerr2021-10-11
| | | | | | | | | | | | | | | | | In this change I went through all current rustfmt configuration options and expanded our existing configuration with overrides whenever deemed appropriate. The `normalize_doc_attributes` option is still unstable, but seems to work without any issues. Even when passing macros like `include_str!` that is recognized properly and not normalized. So while this wasn't an issue anywhere in the code, it should make sure it never will be. When it comes to imports there are two new major additions. The `imports_granularity` and `group_imports` options. Both mostly just incorporate unwritten rules that have existed in Alacritty for a long time. Unfortunately since `alacritty_terminal` imports in `alacritty` are supposed to be separate blocks, the `group_imports` option cannot be used.
* Spawn new alacritty processes in CWD on macOSNathan Lilienthal2020-11-07
On macOS we can use 'proc_pidinfo' to determine the working directory of the terminal foreground process. Fixes #1979.