]> git.lizzy.rs Git - micro.git/blob - cmd/micro/view.go
Fix various small details and update readme
[micro.git] / cmd / micro / view.go
1 package main
2
3 import (
4         "strconv"
5         "strings"
6         "time"
7
8         "github.com/mattn/go-runewidth"
9         "github.com/zyedidia/tcell"
10 )
11
12 // The View struct stores information about a view into a buffer.
13 // It stores information about the cursor, and the viewport
14 // that the user sees the buffer from.
15 type View struct {
16         // A pointer to the buffer's cursor for ease of access
17         Cursor *Cursor
18
19         // The topmost line, used for vertical scrolling
20         Topline int
21         // The leftmost column, used for horizontal scrolling
22         leftCol int
23
24         // Percentage of the terminal window that this view takes up (from 0 to 100)
25         widthPercent  int
26         heightPercent int
27
28         // Specifies whether or not this view holds a help buffer
29         Help bool
30
31         // Actual with and height
32         width  int
33         height int
34
35         // Where this view is located
36         x, y int
37
38         // How much to offset because of line numbers
39         lineNumOffset int
40
41         // Holds the list of gutter messages
42         messages map[string][]GutterMessage
43
44         // This is the index of this view in the views array
45         Num int
46         // What tab is this view stored in
47         TabNum int
48
49         // The buffer
50         Buf *Buffer
51         // The statusline
52         sline Statusline
53
54         // Since tcell doesn't differentiate between a mouse release event
55         // and a mouse move event with no keys pressed, we need to keep
56         // track of whether or not the mouse was pressed (or not released) last event to determine
57         // mouse release events
58         mouseReleased bool
59
60         // This stores when the last click was
61         // This is useful for detecting double and triple clicks
62         lastClickTime time.Time
63
64         // lastCutTime stores when the last ctrl+k was issued.
65         // It is used for clearing the clipboard to replace it with fresh cut lines.
66         lastCutTime time.Time
67
68         // freshClip returns true if the clipboard has never been pasted.
69         freshClip bool
70
71         // Was the last mouse event actually a double click?
72         // Useful for detecting triple clicks -- if a double click is detected
73         // but the last mouse event was actually a double click, it's a triple click
74         doubleClick bool
75         // Same here, just to keep track for mouse move events
76         tripleClick bool
77
78         // Syntax highlighting matches
79         matches SyntaxMatches
80
81         splitNode *LeafNode
82 }
83
84 // NewView returns a new fullscreen view
85 func NewView(buf *Buffer) *View {
86         screenW, screenH := screen.Size()
87         return NewViewWidthHeight(buf, screenW, screenH-1)
88 }
89
90 // NewViewWidthHeight returns a new view with the specified width and height
91 // Note that w and h are raw column and row values
92 func NewViewWidthHeight(buf *Buffer, w, h int) *View {
93         v := new(View)
94
95         v.x, v.y = 0, 0
96
97         v.width = w
98         v.height = h
99
100         v.ToggleTabbar()
101
102         v.OpenBuffer(buf)
103
104         v.messages = make(map[string][]GutterMessage)
105
106         v.sline = Statusline{
107                 view: v,
108         }
109
110         if v.Buf.Settings["statusline"].(bool) {
111                 v.height--
112         }
113
114         for _, pl := range loadedPlugins {
115                 _, err := Call(pl+".onViewOpen", v)
116                 if err != nil && !strings.HasPrefix(err.Error(), "function does not exist") {
117                         TermMessage(err)
118                         continue
119                 }
120         }
121
122         return v
123 }
124
125 func (v *View) ToggleStatusLine() {
126         if v.Buf.Settings["statusline"].(bool) {
127                 v.height--
128         } else {
129                 v.height++
130         }
131 }
132
133 func (v *View) ToggleTabbar() {
134         if len(tabs) > 1 {
135                 if v.y == 0 {
136                         // Include one line for the tab bar at the top
137                         v.height--
138                         v.y = 1
139                 }
140         } else {
141                 if v.y == 1 {
142                         v.y = 0
143                         v.height++
144                 }
145         }
146 }
147
148 // ScrollUp scrolls the view up n lines (if possible)
149 func (v *View) ScrollUp(n int) {
150         // Try to scroll by n but if it would overflow, scroll by 1
151         if v.Topline-n >= 0 {
152                 v.Topline -= n
153         } else if v.Topline > 0 {
154                 v.Topline--
155         }
156 }
157
158 // ScrollDown scrolls the view down n lines (if possible)
159 func (v *View) ScrollDown(n int) {
160         // Try to scroll by n but if it would overflow, scroll by 1
161         if v.Topline+n <= v.Buf.NumLines-v.height {
162                 v.Topline += n
163         } else if v.Topline < v.Buf.NumLines-v.height {
164                 v.Topline++
165         }
166 }
167
168 // CanClose returns whether or not the view can be closed
169 // If there are unsaved changes, the user will be asked if the view can be closed
170 // causing them to lose the unsaved changes
171 // The message is what to print after saying "You have unsaved changes. "
172 func (v *View) CanClose(msg string) bool {
173         if v.Buf.IsModified {
174                 quit, canceled := messenger.Prompt("You have unsaved changes. "+msg, "Unsaved", NoCompletion)
175                 if !canceled {
176                         if strings.ToLower(quit) == "yes" || strings.ToLower(quit) == "y" {
177                                 return true
178                         } else if strings.ToLower(quit) == "save" || strings.ToLower(quit) == "s" {
179                                 v.Save(true)
180                                 return true
181                         }
182                 }
183         } else {
184                 return true
185         }
186         return false
187 }
188
189 // OpenBuffer opens a new buffer in this view.
190 // This resets the topline, event handler and cursor.
191 func (v *View) OpenBuffer(buf *Buffer) {
192         screen.Clear()
193         v.CloseBuffer()
194         v.Buf = buf
195         v.Cursor = &buf.Cursor
196         v.Topline = 0
197         v.leftCol = 0
198         v.Cursor.ResetSelection()
199         v.Relocate()
200         v.Center(false)
201         v.messages = make(map[string][]GutterMessage)
202
203         v.matches = Match(v)
204
205         // Set mouseReleased to true because we assume the mouse is not being pressed when
206         // the editor is opened
207         v.mouseReleased = true
208         v.lastClickTime = time.Time{}
209 }
210
211 // CloseBuffer performs any closing functions on the buffer
212 func (v *View) CloseBuffer() {
213         if v.Buf != nil {
214                 v.Buf.Serialize()
215         }
216 }
217
218 // ReOpen reloads the current buffer
219 func (v *View) ReOpen() {
220         if v.CanClose("Continue? (yes, no, save) ") {
221                 screen.Clear()
222                 v.Buf.ReOpen()
223                 v.Relocate()
224                 v.matches = Match(v)
225         }
226 }
227
228 // HSplit opens a horizontal split with the given buffer
229 func (v *View) HSplit(buf *Buffer) bool {
230         v.splitNode.HSplit(buf)
231         tabs[v.TabNum].Resize()
232         return false
233 }
234
235 // VSplit opens a vertical split with the given buffer
236 func (v *View) VSplit(buf *Buffer) bool {
237         v.splitNode.VSplit(buf)
238         tabs[v.TabNum].Resize()
239         return false
240 }
241
242 // Relocate moves the view window so that the cursor is in view
243 // This is useful if the user has scrolled far away, and then starts typing
244 func (v *View) Relocate() bool {
245         ret := false
246         cy := v.Cursor.Y
247         scrollmargin := int(v.Buf.Settings["scrollmargin"].(float64))
248         if cy < v.Topline+scrollmargin && cy > scrollmargin-1 {
249                 v.Topline = cy - scrollmargin
250                 ret = true
251         } else if cy < v.Topline {
252                 v.Topline = cy
253                 ret = true
254         }
255         if cy > v.Topline+v.height-1-scrollmargin && cy < v.Buf.NumLines-scrollmargin {
256                 v.Topline = cy - v.height + 1 + scrollmargin
257                 ret = true
258         } else if cy >= v.Buf.NumLines-scrollmargin && cy > v.height {
259                 v.Topline = v.Buf.NumLines - v.height
260                 ret = true
261         }
262
263         cx := v.Cursor.GetVisualX()
264         if cx < v.leftCol {
265                 v.leftCol = cx
266                 ret = true
267         }
268         if cx+v.lineNumOffset+1 > v.leftCol+v.width {
269                 v.leftCol = cx - v.width + v.lineNumOffset + 1
270                 ret = true
271         }
272         return ret
273 }
274
275 // MoveToMouseClick moves the cursor to location x, y assuming x, y were given
276 // by a mouse click
277 func (v *View) MoveToMouseClick(x, y int) {
278         if y-v.Topline > v.height-1 {
279                 v.ScrollDown(1)
280                 y = v.height + v.Topline - 1
281         }
282         if y >= v.Buf.NumLines {
283                 y = v.Buf.NumLines - 1
284         }
285         if y < 0 {
286                 y = 0
287         }
288         if x < 0 {
289                 x = 0
290         }
291
292         x = v.Cursor.GetCharPosInLine(y, x)
293         if x > Count(v.Buf.Line(y)) {
294                 x = Count(v.Buf.Line(y))
295         }
296         v.Cursor.X = x
297         v.Cursor.Y = y
298         v.Cursor.LastVisualX = v.Cursor.GetVisualX()
299 }
300
301 // HandleEvent handles an event passed by the main loop
302 func (v *View) HandleEvent(event tcell.Event) {
303         // This bool determines whether the view is relocated at the end of the function
304         // By default it's true because most events should cause a relocate
305         relocate := true
306
307         v.Buf.CheckModTime()
308
309         switch e := event.(type) {
310         case *tcell.EventResize:
311                 // Window resized
312                 tabs[v.TabNum].Resize()
313         case *tcell.EventKey:
314                 if e.Key() == tcell.KeyRune && (e.Modifiers() == 0 || e.Modifiers() == tcell.ModShift) {
315                         // Insert a character
316                         if v.Cursor.HasSelection() {
317                                 v.Cursor.DeleteSelection()
318                                 v.Cursor.ResetSelection()
319                         }
320                         v.Buf.Insert(v.Cursor.Loc, string(e.Rune()))
321                         v.Cursor.Right()
322
323                         for _, pl := range loadedPlugins {
324                                 _, err := Call(pl+".onRune", string(e.Rune()), v)
325                                 if err != nil && !strings.HasPrefix(err.Error(), "function does not exist") {
326                                         TermMessage(err)
327                                 }
328                         }
329                 } else {
330                         for key, actions := range bindings {
331                                 if e.Key() == key.keyCode {
332                                         if e.Key() == tcell.KeyRune {
333                                                 if e.Rune() != key.r {
334                                                         continue
335                                                 }
336                                         }
337                                         if e.Modifiers() == key.modifiers {
338                                                 relocate = false
339                                                 for _, action := range actions {
340                                                         relocate = action(v, true) || relocate
341                                                 }
342                                         }
343                                 }
344                         }
345                 }
346         case *tcell.EventPaste:
347                 relocate = v.Paste(true)
348         case *tcell.EventMouse:
349                 x, y := e.Position()
350                 x -= v.lineNumOffset - v.leftCol + v.x
351                 y += v.Topline - v.y
352                 // Don't relocate for mouse events
353                 relocate = false
354
355                 button := e.Buttons()
356
357                 switch button {
358                 case tcell.Button1:
359                         // Left click
360                         if v.mouseReleased {
361                                 v.MoveToMouseClick(x, y)
362                                 if time.Since(v.lastClickTime)/time.Millisecond < doubleClickThreshold {
363                                         if v.doubleClick {
364                                                 // Triple click
365                                                 v.lastClickTime = time.Now()
366
367                                                 v.tripleClick = true
368                                                 v.doubleClick = false
369
370                                                 v.Cursor.SelectLine()
371                                         } else {
372                                                 // Double click
373                                                 v.lastClickTime = time.Now()
374
375                                                 v.doubleClick = true
376                                                 v.tripleClick = false
377
378                                                 v.Cursor.SelectWord()
379                                         }
380                                 } else {
381                                         v.doubleClick = false
382                                         v.tripleClick = false
383                                         v.lastClickTime = time.Now()
384
385                                         v.Cursor.OrigSelection[0] = v.Cursor.Loc
386                                         v.Cursor.CurSelection[0] = v.Cursor.Loc
387                                         v.Cursor.CurSelection[1] = v.Cursor.Loc
388                                 }
389                                 v.mouseReleased = false
390                         } else if !v.mouseReleased {
391                                 v.MoveToMouseClick(x, y)
392                                 if v.tripleClick {
393                                         v.Cursor.AddLineToSelection()
394                                 } else if v.doubleClick {
395                                         v.Cursor.AddWordToSelection()
396                                 } else {
397                                         v.Cursor.CurSelection[1] = v.Cursor.Loc
398                                 }
399                         }
400                 case tcell.ButtonNone:
401                         // Mouse event with no click
402                         if !v.mouseReleased {
403                                 // Mouse was just released
404
405                                 // Relocating here isn't really necessary because the cursor will
406                                 // be in the right place from the last mouse event
407                                 // However, if we are running in a terminal that doesn't support mouse motion
408                                 // events, this still allows the user to make selections, except only after they
409                                 // release the mouse
410
411                                 if !v.doubleClick && !v.tripleClick {
412                                         v.MoveToMouseClick(x, y)
413                                         v.Cursor.CurSelection[1] = v.Cursor.Loc
414                                 }
415                                 v.mouseReleased = true
416                         }
417                 case tcell.WheelUp:
418                         // Scroll up
419                         scrollspeed := int(v.Buf.Settings["scrollspeed"].(float64))
420                         v.ScrollUp(scrollspeed)
421                 case tcell.WheelDown:
422                         // Scroll down
423                         scrollspeed := int(v.Buf.Settings["scrollspeed"].(float64))
424                         v.ScrollDown(scrollspeed)
425                 }
426         }
427
428         if relocate {
429                 v.Relocate()
430         }
431         if v.Buf.Settings["syntax"].(bool) {
432                 v.matches = Match(v)
433         }
434 }
435
436 // GutterMessage creates a message in this view's gutter
437 func (v *View) GutterMessage(section string, lineN int, msg string, kind int) {
438         lineN--
439         gutterMsg := GutterMessage{
440                 lineNum: lineN,
441                 msg:     msg,
442                 kind:    kind,
443         }
444         for _, v := range v.messages {
445                 for _, gmsg := range v {
446                         if gmsg.lineNum == lineN {
447                                 return
448                         }
449                 }
450         }
451         messages := v.messages[section]
452         v.messages[section] = append(messages, gutterMsg)
453 }
454
455 // ClearGutterMessages clears all gutter messages from a given section
456 func (v *View) ClearGutterMessages(section string) {
457         v.messages[section] = []GutterMessage{}
458 }
459
460 // ClearAllGutterMessages clears all the gutter messages
461 func (v *View) ClearAllGutterMessages() {
462         for k := range v.messages {
463                 v.messages[k] = []GutterMessage{}
464         }
465 }
466
467 // Opens the given help page in a new horizontal split
468 func (v *View) openHelp(helpPage string) {
469         if v.Help {
470                 helpBuffer := NewBuffer([]byte(helpPages[helpPage]), helpPage+".md")
471                 helpBuffer.Name = "Help"
472                 v.OpenBuffer(helpBuffer)
473         } else {
474                 helpBuffer := NewBuffer([]byte(helpPages[helpPage]), helpPage+".md")
475                 helpBuffer.Name = "Help"
476                 v.HSplit(helpBuffer)
477                 CurView().Help = true
478         }
479 }
480
481 func (v *View) drawCell(x, y int, ch rune, combc []rune, style tcell.Style) {
482         if x >= v.x && x < v.x+v.width && y >= v.y && y < v.y+v.height {
483                 screen.SetContent(x, y, ch, combc, style)
484         }
485 }
486
487 // DisplayView renders the view to the screen
488 func (v *View) DisplayView() {
489         // The charNum we are currently displaying
490         // starts at the start of the viewport
491         charNum := Loc{0, v.Topline}
492
493         // Convert the length of buffer to a string, and get the length of the string
494         // We are going to have to offset by that amount
495         maxLineLength := len(strconv.Itoa(v.Buf.NumLines))
496
497         if v.Buf.Settings["ruler"] == true {
498                 // + 1 for the little space after the line number
499                 v.lineNumOffset = maxLineLength + 1
500         } else {
501                 v.lineNumOffset = 0
502         }
503
504         // We need to add to the line offset if there are gutter messages
505         var hasGutterMessages bool
506         for _, v := range v.messages {
507                 if len(v) > 0 {
508                         hasGutterMessages = true
509                 }
510         }
511         if hasGutterMessages {
512                 v.lineNumOffset += 2
513         }
514
515         if v.x != 0 {
516                 // One space for the extra split divider
517                 v.lineNumOffset++
518         }
519
520         // These represent the current screen coordinates
521         screenX, screenY := 0, 0
522
523         highlightStyle := defStyle
524
525         // ViewLine is the current line from the top of the viewport
526         for viewLine := 0; viewLine < v.height; viewLine++ {
527                 screenY = v.y + viewLine
528                 screenX = v.x
529
530                 // This is the current line number of the buffer that we are drawing
531                 curLineN := viewLine + v.Topline
532
533                 if v.x != 0 {
534                         // Draw the split divider
535                         v.drawCell(screenX, screenY, '|', nil, defStyle.Reverse(true))
536                         screenX++
537                 }
538
539                 // If the buffer is smaller than the view height we have to clear all this space
540                 if curLineN >= v.Buf.NumLines {
541                         for i := screenX; i < v.x+v.width; i++ {
542                                 v.drawCell(i, screenY, ' ', nil, defStyle)
543                         }
544
545                         continue
546                 }
547                 line := v.Buf.Line(curLineN)
548
549                 // If there are gutter messages we need to display the '>>' symbol here
550                 if hasGutterMessages {
551                         // msgOnLine stores whether or not there is a gutter message on this line in particular
552                         msgOnLine := false
553                         for k := range v.messages {
554                                 for _, msg := range v.messages[k] {
555                                         if msg.lineNum == curLineN {
556                                                 msgOnLine = true
557                                                 gutterStyle := defStyle
558                                                 switch msg.kind {
559                                                 case GutterInfo:
560                                                         if style, ok := colorscheme["gutter-info"]; ok {
561                                                                 gutterStyle = style
562                                                         }
563                                                 case GutterWarning:
564                                                         if style, ok := colorscheme["gutter-warning"]; ok {
565                                                                 gutterStyle = style
566                                                         }
567                                                 case GutterError:
568                                                         if style, ok := colorscheme["gutter-error"]; ok {
569                                                                 gutterStyle = style
570                                                         }
571                                                 }
572                                                 v.drawCell(screenX, screenY, '>', nil, gutterStyle)
573                                                 screenX++
574                                                 v.drawCell(screenX, screenY, '>', nil, gutterStyle)
575                                                 screenX++
576                                                 if v.Cursor.Y == curLineN && !messenger.hasPrompt {
577                                                         messenger.Message(msg.msg)
578                                                         messenger.gutterMessage = true
579                                                 }
580                                         }
581                                 }
582                         }
583                         // If there is no message on this line we just display an empty offset
584                         if !msgOnLine {
585                                 v.drawCell(screenX, screenY, ' ', nil, defStyle)
586                                 screenX++
587                                 v.drawCell(screenX, screenY, ' ', nil, defStyle)
588                                 screenX++
589                                 if v.Cursor.Y == curLineN && messenger.gutterMessage {
590                                         messenger.Reset()
591                                         messenger.gutterMessage = false
592                                 }
593                         }
594                 }
595
596                 if v.Buf.Settings["ruler"] == true {
597                         // Write the line number
598                         lineNumStyle := defStyle
599                         if style, ok := colorscheme["line-number"]; ok {
600                                 lineNumStyle = style
601                         }
602                         if style, ok := colorscheme["current-line-number"]; ok {
603                                 if curLineN == v.Cursor.Y && tabs[curTab].curView == v.Num && !v.Cursor.HasSelection() {
604                                         lineNumStyle = style
605                                 }
606                         }
607
608                         lineNum := strconv.Itoa(curLineN + 1)
609
610                         // Write the spaces before the line number if necessary
611                         for i := 0; i < maxLineLength-len(lineNum); i++ {
612                                 v.drawCell(screenX, screenY, ' ', nil, lineNumStyle)
613                                 screenX++
614                         }
615                         // Write the actual line number
616                         for _, ch := range lineNum {
617                                 v.drawCell(screenX, screenY, ch, nil, lineNumStyle)
618                                 screenX++
619                         }
620
621                         // Write the extra space
622                         v.drawCell(screenX, screenY, ' ', nil, lineNumStyle)
623                         screenX++
624                 }
625
626                 // Now we actually draw the line
627                 colN := 0
628                 for _, ch := range line {
629                         lineStyle := defStyle
630
631                         if v.Buf.Settings["syntax"].(bool) {
632                                 // Syntax highlighting is enabled
633                                 highlightStyle = v.matches[viewLine][colN]
634                         }
635
636                         if v.Cursor.HasSelection() &&
637                                 (charNum.GreaterEqual(v.Cursor.CurSelection[0]) && charNum.LessThan(v.Cursor.CurSelection[1]) ||
638                                         charNum.LessThan(v.Cursor.CurSelection[0]) && charNum.GreaterEqual(v.Cursor.CurSelection[1])) {
639                                 // The current character is selected
640                                 lineStyle = defStyle.Reverse(true)
641
642                                 if style, ok := colorscheme["selection"]; ok {
643                                         lineStyle = style
644                                 }
645                         } else {
646                                 lineStyle = highlightStyle
647                         }
648
649                         // We need to display the background of the linestyle with the correct color if cursorline is enabled
650                         // and this is the current view and there is no selection on this line and the cursor is on this line
651                         if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].curView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN {
652                                 if style, ok := colorscheme["cursor-line"]; ok {
653                                         fg, _, _ := style.Decompose()
654                                         lineStyle = lineStyle.Background(fg)
655                                 }
656                         }
657
658                         if ch == '\t' {
659                                 // If the character we are displaying is a tab, we need to do a bunch of special things
660
661                                 // First the user may have configured an `indent-char` to be displayed to show that this
662                                 // is a tab character
663                                 lineIndentStyle := defStyle
664                                 if style, ok := colorscheme["indent-char"]; ok {
665                                         lineIndentStyle = style
666                                 }
667                                 if v.Cursor.HasSelection() &&
668                                         (charNum.GreaterEqual(v.Cursor.CurSelection[0]) && charNum.LessThan(v.Cursor.CurSelection[1]) ||
669                                                 charNum.LessThan(v.Cursor.CurSelection[0]) && charNum.GreaterEqual(v.Cursor.CurSelection[1])) {
670
671                                         lineIndentStyle = defStyle.Reverse(true)
672
673                                         if style, ok := colorscheme["selection"]; ok {
674                                                 lineIndentStyle = style
675                                         }
676                                 }
677                                 if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].curView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN {
678                                         if style, ok := colorscheme["cursor-line"]; ok {
679                                                 fg, _, _ := style.Decompose()
680                                                 lineIndentStyle = lineIndentStyle.Background(fg)
681                                         }
682                                 }
683                                 // Here we get the indent char
684                                 indentChar := []rune(v.Buf.Settings["indentchar"].(string))
685                                 if screenX-v.x-v.leftCol >= v.lineNumOffset {
686                                         v.drawCell(screenX-v.leftCol, screenY, indentChar[0], nil, lineIndentStyle)
687                                 }
688                                 // Now the tab has to be displayed as a bunch of spaces
689                                 tabSize := int(v.Buf.Settings["tabsize"].(float64))
690                                 for i := 0; i < tabSize-1; i++ {
691                                         screenX++
692                                         if screenX-v.x-v.leftCol >= v.lineNumOffset {
693                                                 v.drawCell(screenX-v.leftCol, screenY, ' ', nil, lineStyle)
694                                         }
695                                 }
696                         } else if runewidth.RuneWidth(ch) > 1 {
697                                 if screenX-v.x-v.leftCol >= v.lineNumOffset {
698                                         v.drawCell(screenX, screenY, ch, nil, lineStyle)
699                                 }
700                                 for i := 0; i < runewidth.RuneWidth(ch)-1; i++ {
701                                         screenX++
702                                         if screenX-v.x-v.leftCol >= v.lineNumOffset {
703                                                 v.drawCell(screenX-v.leftCol, screenY, '<', nil, lineStyle)
704                                         }
705                                 }
706                         } else {
707                                 if screenX-v.x-v.leftCol >= v.lineNumOffset {
708                                         v.drawCell(screenX-v.leftCol, screenY, ch, nil, lineStyle)
709                                 }
710                         }
711                         charNum = charNum.Move(1, v.Buf)
712                         screenX++
713                         colN++
714                 }
715                 // Here we are at a newline
716
717                 // The newline may be selected, in which case we should draw the selection style
718                 // with a space to represent it
719                 if v.Cursor.HasSelection() &&
720                         (charNum.GreaterEqual(v.Cursor.CurSelection[0]) && charNum.LessThan(v.Cursor.CurSelection[1]) ||
721                                 charNum.LessThan(v.Cursor.CurSelection[0]) && charNum.GreaterEqual(v.Cursor.CurSelection[1])) {
722
723                         selectStyle := defStyle.Reverse(true)
724
725                         if style, ok := colorscheme["selection"]; ok {
726                                 selectStyle = style
727                         }
728                         v.drawCell(screenX, screenY, ' ', nil, selectStyle)
729                         screenX++
730                 }
731
732                 charNum = charNum.Move(1, v.Buf)
733
734                 for i := 0; i < v.width; i++ {
735                         lineStyle := defStyle
736                         if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].curView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN {
737                                 if style, ok := colorscheme["cursor-line"]; ok {
738                                         fg, _, _ := style.Decompose()
739                                         lineStyle = lineStyle.Background(fg)
740                                 }
741                         }
742                         if screenX-v.x-v.leftCol+i >= v.lineNumOffset {
743                                 v.drawCell(screenX-v.leftCol+i, screenY, ' ', nil, lineStyle)
744                         }
745                 }
746         }
747 }
748
749 // DisplayCursor draws the current buffer's cursor to the screen
750 func (v *View) DisplayCursor() {
751         // Don't draw the cursor if it is out of the viewport or if it has a selection
752         if (v.Cursor.Y-v.Topline < 0 || v.Cursor.Y-v.Topline > v.height-1) || v.Cursor.HasSelection() {
753                 screen.HideCursor()
754         } else {
755                 screen.ShowCursor(v.x+v.Cursor.GetVisualX()+v.lineNumOffset-v.leftCol, v.Cursor.Y-v.Topline+v.y)
756         }
757 }
758
759 // Display renders the view, the cursor, and statusline
760 func (v *View) Display() {
761         v.DisplayView()
762         if v.Num == tabs[curTab].curView {
763                 v.DisplayCursor()
764         }
765         _, screenH := screen.Size()
766         if v.Buf.Settings["statusline"].(bool) {
767                 v.sline.Display()
768         } else if (v.y + v.height) != screenH-1 {
769                 for x := 0; x < v.width; x++ {
770                         screen.SetContent(v.x+x, v.y+v.height, '-', nil, defStyle.Reverse(true))
771                 }
772         }
773 }