forked from direnv/direnv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshell_zsh.go
57 lines (48 loc) · 1.17 KB
/
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
51
52
53
54
55
56
57
package main
// ZSH is a singleton instance of ZSH_T
type zsh struct{}
// Zsh adds support for the venerable Z shell.
var Zsh Shell = zsh{}
const zshHook = `
_direnv_hook() {
trap -- '' SIGINT;
eval "$("{{.SelfPath}}" export zsh)";
trap - SIGINT;
}
typeset -ag precmd_functions;
if [[ -z ${precmd_functions[(r)_direnv_hook]} ]]; then
precmd_functions=( _direnv_hook ${precmd_functions[@]} )
fi
typeset -ag chpwd_functions;
if [[ -z ${chpwd_functions[(r)_direnv_hook]} ]]; then
chpwd_functions=( _direnv_hook ${chpwd_functions[@]} )
fi
`
func (sh zsh) Hook() (string, error) {
return zshHook, 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)
}