@@ -20,6 +20,7 @@ import (
2020 "github.com/joshmedeski/sesh/v2/oswrap"
2121 "github.com/joshmedeski/sesh/v2/pathwrap"
2222 "github.com/joshmedeski/sesh/v2/previewer"
23+ "github.com/joshmedeski/sesh/v2/replacer"
2324 "github.com/joshmedeski/sesh/v2/runtimewrap"
2425 "github.com/joshmedeski/sesh/v2/shell"
2526 "github.com/joshmedeski/sesh/v2/startup"
@@ -39,6 +40,7 @@ func App(version string) cli.App {
3940 home := home .NewHome (os )
4041 shell := shell .NewShell (exec , home )
4142 json := json .NewJson ()
43+ replacer := replacer .NewReplacer ()
4244
4345 // resource dependencies
4446 git := git .NewGit (shell )
@@ -60,7 +62,7 @@ func App(version string) cli.App {
6062 // core dependencies
6163 ls := ls .NewLs (config , shell )
6264 lister := lister .NewLister (config , home , tmux , zoxide , tmuxinator )
63- startup := startup .NewStartup (config , lister , tmux , home )
65+ startup := startup .NewStartup (config , lister , tmux , home , replacer )
6466 namer := namer .NewNamer (path , git , home )
6567 connector := connector .NewConnector (config , dir , home , lister , namer , startup , tmux , zoxide , tmuxinator )
6668 icon := icon .NewIcon (config )
0 commit comments