Dont expand cwd=current in rc launch

This is easily done at the command line. And its semantics are
are to refer to cwd of active window.
This commit is contained in:
Kovid Goyal
2023-10-17 04:59:55 +05:30
parent ddb121b418
commit 81b032a161
3 changed files with 1 additions and 12 deletions

View File

@@ -15,12 +15,3 @@ func copy_local_env(copy_env bool) []string {
}
return nil
}
func copy_local_cwd(copy_cwd string) string {
if copy_cwd == "current" {
if c, e := os.Getwd(); e == nil {
copy_cwd = c
}
}
return copy_cwd
}