Improve lua interface for statusline

This commit is contained in:
Zachary Yedidia
2019-12-26 12:46:10 -05:00
parent a95dab078e
commit 7f7ad29671

View File

@@ -51,7 +51,7 @@ var statusInfo = map[string]func(*buffer.Buffer) string{
}, },
} }
func SetStatusInfoFnLua(s string, fn string) { func SetStatusInfoFnLua(fn string) {
luaFn := strings.Split(fn, ".") luaFn := strings.Split(fn, ".")
if len(luaFn) <= 1 { if len(luaFn) <= 1 {
return return
@@ -61,7 +61,7 @@ func SetStatusInfoFnLua(s string, fn string) {
if pl == nil { if pl == nil {
return return
} }
statusInfo[s] = func(b *buffer.Buffer) string { statusInfo[fn] = func(b *buffer.Buffer) string {
if pl == nil || !pl.IsEnabled() { if pl == nil || !pl.IsEnabled() {
return "" return ""
} }