Prerelease This site documents an alpha of libtmux. Its structure, URLs and APIs are subject to change.

server.Server.configFile

TypeScript

View as Markdown

Module
server
Declared in
Server
Package
libtmux
Source
packages/libtmux/src/server.ts
Other languages
Python Ruby Lua RustGo Java .NET C++ Swift
configFile ( ) → string | undefined
method [source]
method [source]
configFile

The configuration file this server was pointed at, if any.

In other ports The configuration file this server was pointed at

Examples

new Server({ configFile: "~/.tmux.conf" }).configFile;
let server = libtmux::Server::builder()
.config_file("/tmp/libtmux-example.conf")
.build()?;
assert_eq!(server.config_file(), Some(std::path::Path::new("/tmp/libtmux-example.conf")));

0 declared, 0 inherited

Esc

Type to search.