Compare commits

...

2 Commits

Author SHA1 Message Date
TorchedSammy 0f01d077a4 chore: bump version 2021-04-05 23:02:29 -04:00
TorchedSammy 21033764a9 fix: use username in prompt format instead of user's real name 2021-04-05 23:01:21 -04:00
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ import (
)
const version = "0.3.0"
const version = "0.3.1"
var l *lua.LState
// User's prompt, this will get set when lua side is initialized
var prompt string
@ -141,7 +141,7 @@ func fmtPrompt() string {
args := []string{
"d", cwd,
"h", host,
"u", user.Name,
"u", user.Username,
}
for i, v := range args {