forked from direnv/direnv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell_zsh.go
50 lines (41 loc) · 946 Bytes
/
shell_zsh.go
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
package main
// ZSH is a singleton instance of ZSH_T
type zsh struct{}
var ZSH Shell = zsh{}
const ZSH_HOOK = `
_direnv_hook() {
eval "$("{{.SelfPath}}" export zsh)";
}
typeset -ag precmd_functions;
if [[ -z ${precmd_functions[(r)_direnv_hook]} ]]; then
precmd_functions+=_direnv_hook;
fi
`
func (sh zsh) Hook() (string, error) {
return ZSH_HOOK, nil
}
func (sh zsh) Export(e ShellExport) (out string) {
for key, value := range e {
if value == nil {
out += sh.unset(key)
} else {
out += sh.export(key, *value)
}
}
return out
}
func (sh zsh) Dump(env Env) (out string) {
for key, value := range env {
out += sh.export(key, value)
}
return out
}
func (sh zsh) export(key, value string) string {
return "export " + sh.escape(key) + "=" + sh.escape(value) + ";"
}
func (sh zsh) unset(key string) string {
return "unset " + sh.escape(key) + ";"
}
func (sh zsh) escape(str string) string {
return BashEscape(str)
}