]> git.lizzy.rs Git - micro.git/blob - cmd/micro/statusline.go
Add filetype as an option
[micro.git] / cmd / micro / statusline.go
1 package main
2
3 import (
4         "strconv"
5 )
6
7 // Statusline represents the information line at the bottom
8 // of each view
9 // It gives information such as filename, whether the file has been
10 // modified, filetype, cursor location
11 type Statusline struct {
12         view *View
13 }
14
15 // Display draws the statusline to the screen
16 func (sline *Statusline) Display() {
17         // We'll draw the line at the lowest line in the view
18         y := sline.view.height + sline.view.y
19
20         file := sline.view.Buf.Name
21
22         // If the buffer is dirty (has been modified) write a little '+'
23         if sline.view.Buf.IsModified {
24                 file += " +"
25         }
26
27         // Add one to cursor.x and cursor.y because (0,0) is the top left,
28         // but users will be used to (1,1) (first line,first column)
29         // We use GetVisualX() here because otherwise we get the column number in runes
30         // so a '\t' is only 1, when it should be tabSize
31         columnNum := strconv.Itoa(sline.view.Cursor.GetVisualX() + 1)
32         lineNum := strconv.Itoa(sline.view.Cursor.Y + 1)
33
34         file += " (" + lineNum + "," + columnNum + ")"
35
36         // Add the filetype
37         file += " " + sline.view.Buf.FileType()
38
39         rightText := helpBinding + " for help "
40         if sline.view.Help {
41                 rightText = helpBinding + " to close help "
42         }
43
44         statusLineStyle := defStyle.Reverse(true)
45         if style, ok := colorscheme["statusline"]; ok {
46                 statusLineStyle = style
47         }
48
49         // Maybe there is a unicode filename?
50         fileRunes := []rune(file)
51         viewX := sline.view.x
52         if viewX != 0 {
53                 screen.SetContent(viewX, y, ' ', nil, statusLineStyle)
54                 viewX++
55         }
56         for x := 0; x < sline.view.width; x++ {
57                 if x < len(fileRunes) {
58                         screen.SetContent(viewX+x, y, fileRunes[x], nil, statusLineStyle)
59                 } else if x >= sline.view.width-len(rightText) && x < len(rightText)+sline.view.width-len(rightText) {
60                         screen.SetContent(viewX+x, y, []rune(rightText)[x-sline.view.width+len(rightText)], nil, statusLineStyle)
61                 } else {
62                         screen.SetContent(viewX+x, y, ' ', nil, statusLineStyle)
63                 }
64         }
65 }