1
0
Fork 0

Add line number indication to status bar
timw4mail/gilo/pipeline/head This commit looks good Details

This commit is contained in:
Timothy Warren 2021-04-01 12:49:55 -04:00
parent 6e5e287bb3
commit 587dfc686a
1 changed files with 23 additions and 6 deletions

View File

@ -114,18 +114,35 @@ func (e *editor) drawStatusBar(ab *buffer) {
fileName = e.document.filename
}
statusLine := fmt.Sprintf("%.20s - %d lines", fileName, e.document.rowCount())
length := len(statusLine)
if length > cols{
statusLine = truncateString(statusLine, cols)
leftStatus := fmt.Sprintf("%.20s - %d lines", fileName, e.document.rowCount())
length := len(leftStatus)
if length > cols {
leftStatus = truncateString(leftStatus, cols)
ab.append(leftStatus)
ab.append(terminal.ResetColor)
return
}
rightStatus := fmt.Sprintf("%d/%d", e.cursor.y, e.document.rowCount())
rlength := len(rightStatus)
statusLength := length + rlength
if statusLength <= cols {
paddingLength := cols - statusLength
padding := strings.Repeat(" ", paddingLength)
ab.append(leftStatus)
ab.append(padding)
ab.append(rightStatus)
ab.append(statusLine)
ab.append(terminal.ResetColor)
return
}
ab.append(statusLine)
ab.append(leftStatus)
// Pad the rest of the status line
padding := strings.Repeat(" ", cols - length)