Rename indent-line to indent-char, change default value from | to

This commit is contained in:
Camille Scholtz
2016-05-17 18:09:49 +02:00
parent 9b984b1680
commit 93927cf0f5
6 changed files with 6 additions and 6 deletions

View File

@@ -546,7 +546,7 @@ func (v *View) DisplayView() {
if ch == '\t' {
lineIndentStyle := defStyle
if style, ok := colorscheme["indent-line"]; ok {
if style, ok := colorscheme["indent-char"]; ok {
lineIndentStyle = style
}
indentChar := []rune(settings["indentchar"].(string))