1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
use std::path::PathBuf;
use eyre::Result;
use crate::file::touch_dir;
use crate::shell::{get_shell, ShellType};
use crate::{dirs, env};
/// Initializes rtx in the current shell session
///
/// This should go into your shell's rc file.
/// Otherwise, it will only take effect in the current session.
/// (e.g. ~/.zshrc, ~/.bashrc)
///
/// This is only intended to be used in interactive sessions, not scripts.
/// rtx is only capable of updating PATH when the prompt is displayed to the user.
/// For non-interactive use-cases, use shims instead.
///
/// Typically this can be added with something like the following:
///
/// echo 'eval "$(rtx activate)"' >> ~/.zshrc
///
/// However, this requires that "rtx" is in your PATH. If it is not, you need to
/// specify the full path like this:
///
/// echo 'eval "$(/path/to/rtx activate)"' >> ~/.zshrc
#[derive(Debug, clap::Args)]
#[clap(verbatim_doc_comment, after_long_help = AFTER_LONG_HELP)]
pub struct Activate {
/// Shell type to generate the script for
#[clap(long, short, hide = true)]
shell: Option<ShellType>,
/// Shell type to generate the script for
#[clap()]
shell_type: Option<ShellType>,
/// Show "rtx: <PLUGIN>@<VERSION>" message when changing directories
#[clap(long)]
status: bool,
/// Suppress non-error messages
#[clap(long, short)]
quiet: bool,
}
impl Activate {
pub fn run(self) -> Result<()> {
let shell = get_shell(self.shell_type.or(self.shell))
.expect("no shell provided. Run `rtx activate zsh` or similar");
// touch ROOT to allow hook-env to run
let _ = touch_dir(&dirs::DATA);
let rtx_bin = if cfg!(target_os = "linux") {
// linux dereferences symlinks, so use argv0 instead
PathBuf::from(&*env::ARGV0)
} else {
env::RTX_BIN.clone()
};
let mut flags = vec![];
if self.quiet {
flags.push(" --quiet");
}
if self.status {
flags.push(" --status");
}
let output = shell.activate(&rtx_bin, flags.join(""));
rtxprint!("{output}");
Ok(())
}
}
static AFTER_LONG_HELP: &str = color_print::cstr!(
r#"<bold><underline>Examples:</underline></bold>
$ <bold>eval "$(rtx activate bash)"</bold>
$ <bold>eval "$(rtx activate zsh)"</bold>
$ <bold>rtx activate fish | source</bold>
$ <bold>execx($(rtx activate xonsh))</bold>
"#
);