mirror of
https://github.com/wez/wezterm.git
synced 2024-11-10 15:04:32 +03:00
1d064e0913
Add `get_foreground_process_name` to both Pane and the lua wrapper. Add `foreground_process_name` and `current_working_dir` fields to `PaneInformation`. In order for those to be dynamically fetched, switch the lua conversion for `PaneInformation` to be a UserData with field access methods. It's a little more verbose but allows us to lazily compute these two new fields. refs: https://github.com/wez/wezterm/discussions/1421 refs: https://github.com/wez/wezterm/issues/915 refs: https://github.com/wez/wezterm/issues/876
47 lines
1.2 KiB
TOML
47 lines
1.2 KiB
TOML
[package]
|
|
name = "config"
|
|
version = "0.1.0"
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
|
edition = "2018"
|
|
build = "build.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dev-dependencies]
|
|
pretty_env_logger = "0.4"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
battery = "0.7"
|
|
bitflags = "1.3"
|
|
bstr = "0.2"
|
|
chrono = {version="0.4", features=["unstable-locales"]}
|
|
colorgrad = "0.5"
|
|
dirs-next = "2.0"
|
|
enum-display-derive = "0.1"
|
|
filenamegen = "0.2"
|
|
hostname = "0.3"
|
|
lazy_static = "1.4"
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
luahelper = { path = "../luahelper" }
|
|
mlua = {version="0.7", features=["vendored", "lua54", "async", "send"]}
|
|
# file change notification
|
|
notify = "4.0"
|
|
open = "2.0"
|
|
portable-pty = { path = "../pty", features = ["serde_support"]}
|
|
promise = { path = "../promise" }
|
|
serde = {version="1.0", features = ["rc", "derive"]}
|
|
serde_json = "1.0"
|
|
smol = "1.2"
|
|
terminfo = "0.7"
|
|
termwiz = { path = "../termwiz" }
|
|
toml = "0.5"
|
|
umask = { path = "../umask" }
|
|
unicode-segmentation = "1.8"
|
|
wezterm-input-types = { path = "../wezterm-input-types" }
|
|
wezterm-term = { path = "../term", features=["use_serde"] }
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
winapi = { version = "0.3", features = ["winuser"]}
|