micro/cmd/micro/view.go

774 lines
20 KiB
Go
Raw Normal View History

2016-03-17 21:27:57 +00:00
package main
import (
2016-03-19 13:24:04 +00:00
"strconv"
2016-03-23 15:41:04 +00:00
"strings"
2016-03-26 20:32:19 +00:00
"time"
2016-04-22 20:02:26 +00:00
"github.com/mattn/go-runewidth"
"github.com/zyedidia/tcell"
2016-03-17 21:27:57 +00:00
)
2016-03-19 00:40:00 +00:00
// The View struct stores information about a view into a buffer.
2016-05-03 22:54:01 +00:00
// It stores information about the cursor, and the viewport
// that the user sees the buffer from.
2016-03-17 21:27:57 +00:00
type View struct {
// A pointer to the buffer's cursor for ease of access
Cursor *Cursor
2016-03-25 16:14:22 +00:00
// The topmost line, used for vertical scrolling
2016-04-25 16:48:43 +00:00
Topline int
2016-03-25 16:14:22 +00:00
// The leftmost column, used for horizontal scrolling
2016-03-21 21:43:53 +00:00
leftCol int
2016-03-25 16:14:22 +00:00
// Percentage of the terminal window that this view takes up (from 0 to 100)
widthPercent int
heightPercent int
2016-07-14 17:01:02 +00:00
// Specifies whether or not this view holds a help buffer
Help bool
2016-03-25 16:14:22 +00:00
// Actual with and height
width int
height int
2016-03-21 21:43:53 +00:00
// Where this view is located
x, y int
2016-03-21 21:43:53 +00:00
// How much to offset because of line numbers
2016-03-19 13:24:04 +00:00
lineNumOffset int
2016-03-17 22:20:07 +00:00
2016-04-25 16:48:43 +00:00
// Holds the list of gutter messages
messages map[string][]GutterMessage
2016-04-27 15:22:57 +00:00
// This is the index of this view in the views array
Num int
// What tab is this view stored in
TabNum int
2016-03-25 16:14:22 +00:00
// The buffer
2016-04-25 16:48:43 +00:00
Buf *Buffer
2016-03-25 16:14:22 +00:00
// The statusline
sline Statusline
2016-03-17 21:27:57 +00:00
2016-03-25 16:14:22 +00:00
// Since tcell doesn't differentiate between a mouse release event
// and a mouse move event with no keys pressed, we need to keep
// track of whether or not the mouse was pressed (or not released) last event to determine
// mouse release events
2016-03-17 21:27:57 +00:00
mouseReleased bool
2016-03-26 20:32:19 +00:00
// This stores when the last click was
// This is useful for detecting double and triple clicks
lastClickTime time.Time
2016-04-24 01:29:09 +00:00
// lastCutTime stores when the last ctrl+k was issued.
// It is used for clearing the clipboard to replace it with fresh cut lines.
lastCutTime time.Time
// freshClip returns true if the clipboard has never been pasted.
freshClip bool
2016-03-26 20:32:19 +00:00
// Was the last mouse event actually a double click?
// Useful for detecting triple clicks -- if a double click is detected
// but the last mouse event was actually a double click, it's a triple click
doubleClick bool
// Same here, just to keep track for mouse move events
tripleClick bool
2016-03-25 18:56:29 +00:00
// Syntax highlighting matches
2016-03-25 16:14:22 +00:00
matches SyntaxMatches
// The matches from the last frame
lastMatches SyntaxMatches
splitNode *LeafNode
2016-03-17 21:27:57 +00:00
}
2016-03-25 16:14:22 +00:00
// NewView returns a new fullscreen view
2016-03-26 14:54:18 +00:00
func NewView(buf *Buffer) *View {
screenW, screenH := screen.Size()
return NewViewWidthHeight(buf, screenW, screenH-1)
2016-03-17 22:20:07 +00:00
}
2016-03-21 21:43:53 +00:00
// NewViewWidthHeight returns a new view with the specified width and height percentages
2016-03-25 16:14:22 +00:00
// Note that w and h are percentages not actual values
2016-03-26 14:54:18 +00:00
func NewViewWidthHeight(buf *Buffer, w, h int) *View {
2016-03-17 21:27:57 +00:00
v := new(View)
v.x, v.y = 0, 0
v.width = w
v.height = h
2016-03-21 21:43:53 +00:00
2016-08-11 17:50:59 +00:00
v.ToggleTabbar()
v.OpenBuffer(buf)
2016-03-17 21:27:57 +00:00
v.messages = make(map[string][]GutterMessage)
2016-03-25 16:14:22 +00:00
v.sline = Statusline{
view: v,
2016-03-17 22:20:07 +00:00
}
2016-05-15 17:44:07 +00:00
if settings["statusline"].(bool) {
v.height--
}
return v
2016-03-21 21:43:53 +00:00
}
2016-08-11 17:50:59 +00:00
func (v *View) ToggleStatusLine() {
if settings["statusline"].(bool) {
v.height--
} else {
v.height++
}
}
func (v *View) ToggleTabbar() {
if len(tabs) > 1 {
if v.y == 0 {
// Include one line for the tab bar at the top
v.height--
v.y = 1
}
} else {
if v.y == 1 {
v.y = 0
v.height++
}
}
}
2016-03-19 00:40:00 +00:00
// ScrollUp scrolls the view up n lines (if possible)
func (v *View) ScrollUp(n int) {
// Try to scroll by n but if it would overflow, scroll by 1
2016-04-25 16:48:43 +00:00
if v.Topline-n >= 0 {
v.Topline -= n
} else if v.Topline > 0 {
v.Topline--
}
}
2016-03-19 00:40:00 +00:00
// ScrollDown scrolls the view down n lines (if possible)
func (v *View) ScrollDown(n int) {
// Try to scroll by n but if it would overflow, scroll by 1
2016-04-25 16:48:43 +00:00
if v.Topline+n <= v.Buf.NumLines-v.height {
v.Topline += n
} else if v.Topline < v.Buf.NumLines-v.height {
v.Topline++
}
}
2016-03-25 16:14:22 +00:00
// CanClose returns whether or not the view can be closed
// If there are unsaved changes, the user will be asked if the view can be closed
// causing them to lose the unsaved changes
// The message is what to print after saying "You have unsaved changes. "
func (v *View) CanClose(msg string) bool {
2016-05-14 16:04:13 +00:00
if v.Buf.IsModified {
quit, canceled := messenger.Prompt("You have unsaved changes. "+msg, "Unsaved", NoCompletion)
2016-03-25 16:14:22 +00:00
if !canceled {
if strings.ToLower(quit) == "yes" || strings.ToLower(quit) == "y" {
return true
2016-04-19 17:16:08 +00:00
} else if strings.ToLower(quit) == "save" || strings.ToLower(quit) == "s" {
v.Save(true)
2016-04-19 17:16:08 +00:00
return true
2016-03-25 16:14:22 +00:00
}
}
} else {
return true
}
return false
}
// OpenBuffer opens a new buffer in this view.
// This resets the topline, event handler and cursor.
func (v *View) OpenBuffer(buf *Buffer) {
2016-05-31 23:25:32 +00:00
screen.Clear()
v.CloseBuffer()
2016-04-25 16:48:43 +00:00
v.Buf = buf
v.Cursor = &buf.Cursor
2016-04-25 16:48:43 +00:00
v.Topline = 0
v.leftCol = 0
2016-04-25 16:48:43 +00:00
v.Cursor.ResetSelection()
v.Relocate()
v.messages = make(map[string][]GutterMessage)
v.matches = Match(v)
// Set mouseReleased to true because we assume the mouse is not being pressed when
// the editor is opened
v.mouseReleased = true
v.lastClickTime = time.Time{}
}
// CloseBuffer performs any closing functions on the buffer
func (v *View) CloseBuffer() {
if v.Buf != nil {
v.Buf.Serialize()
}
}
2016-04-24 23:52:02 +00:00
// ReOpen reloads the current buffer
func (v *View) ReOpen() {
2016-04-24 01:48:51 +00:00
if v.CanClose("Continue? (yes, no, save) ") {
2016-05-31 23:25:32 +00:00
screen.Clear()
2016-05-30 21:48:33 +00:00
v.Buf.ReOpen()
2016-05-30 22:22:10 +00:00
v.Relocate()
v.matches = Match(v)
2016-04-24 01:48:51 +00:00
}
}
// HSplit opens a horizontal split with the given buffer
func (v *View) HSplit(buf *Buffer) bool {
v.splitNode.HSplit(buf)
tabs[v.TabNum].Resize()
2016-06-26 22:44:15 +00:00
return false
}
// VSplit opens a vertical split with the given buffer
func (v *View) VSplit(buf *Buffer) bool {
v.splitNode.VSplit(buf)
tabs[v.TabNum].Resize()
2016-06-15 22:38:37 +00:00
return false
}
2016-03-25 16:14:22 +00:00
// Relocate moves the view window so that the cursor is in view
// This is useful if the user has scrolled far away, and then starts typing
func (v *View) Relocate() bool {
ret := false
cy := v.Cursor.Y
2016-05-20 18:06:01 +00:00
scrollmargin := int(settings["scrollmargin"].(float64))
if cy < v.Topline+scrollmargin && cy > scrollmargin-1 {
v.Topline = cy - scrollmargin
ret = true
} else if cy < v.Topline {
2016-04-25 16:48:43 +00:00
v.Topline = cy
ret = true
2016-03-25 16:14:22 +00:00
}
if cy > v.Topline+v.height-1-scrollmargin && cy < v.Buf.NumLines-scrollmargin {
2016-05-20 18:06:01 +00:00
v.Topline = cy - v.height + 1 + scrollmargin
ret = true
2016-05-23 00:59:31 +00:00
} else if cy >= v.Buf.NumLines-scrollmargin && cy > v.height {
v.Topline = v.Buf.NumLines - v.height
ret = true
2016-03-25 16:14:22 +00:00
}
2016-04-04 18:03:17 +00:00
2016-04-25 16:48:43 +00:00
cx := v.Cursor.GetVisualX()
2016-04-04 18:03:17 +00:00
if cx < v.leftCol {
v.leftCol = cx
ret = true
2016-04-04 18:03:17 +00:00
}
if cx+v.lineNumOffset+1 > v.leftCol+v.width {
v.leftCol = cx - v.width + v.lineNumOffset + 1
ret = true
2016-04-04 18:03:17 +00:00
}
return ret
2016-03-25 16:14:22 +00:00
}
// MoveToMouseClick moves the cursor to location x, y assuming x, y were given
// by a mouse click
func (v *View) MoveToMouseClick(x, y int) {
2016-04-25 16:48:43 +00:00
if y-v.Topline > v.height-1 {
2016-03-25 16:14:22 +00:00
v.ScrollDown(1)
2016-04-25 16:48:43 +00:00
y = v.height + v.Topline - 1
2016-03-25 16:14:22 +00:00
}
2016-04-25 16:48:43 +00:00
if y >= v.Buf.NumLines {
y = v.Buf.NumLines - 1
2016-03-25 16:14:22 +00:00
}
if y < 0 {
y = 0
}
2016-03-25 16:14:22 +00:00
if x < 0 {
x = 0
}
2016-04-25 16:48:43 +00:00
x = v.Cursor.GetCharPosInLine(y, x)
2016-06-07 15:43:28 +00:00
if x > Count(v.Buf.Line(y)) {
x = Count(v.Buf.Line(y))
2016-03-25 16:14:22 +00:00
}
v.Cursor.X = x
v.Cursor.Y = y
v.Cursor.LastVisualX = v.Cursor.GetVisualX()
2016-03-25 16:14:22 +00:00
}
2016-03-19 00:40:00 +00:00
// HandleEvent handles an event passed by the main loop
2016-03-25 16:14:22 +00:00
func (v *View) HandleEvent(event tcell.Event) {
// This bool determines whether the view is relocated at the end of the function
// By default it's true because most events should cause a relocate
relocate := true
2016-04-10 21:27:02 +00:00
v.Buf.CheckModTime()
2016-03-17 21:27:57 +00:00
switch e := event.(type) {
2016-03-21 21:43:53 +00:00
case *tcell.EventResize:
// Window resized
2016-08-11 17:50:59 +00:00
tabs[v.TabNum].Resize()
2016-03-17 21:27:57 +00:00
case *tcell.EventKey:
if e.Key() == tcell.KeyRune && (e.Modifiers() == 0 || e.Modifiers() == tcell.ModShift) {
// Insert a character
2016-04-25 16:48:43 +00:00
if v.Cursor.HasSelection() {
v.Cursor.DeleteSelection()
v.Cursor.ResetSelection()
2016-03-19 00:01:05 +00:00
}
2016-06-07 15:43:28 +00:00
v.Buf.Insert(v.Cursor.Loc, string(e.Rune()))
2016-04-25 16:48:43 +00:00
v.Cursor.Right()
for _, pl := range loadedPlugins {
_, err := Call(pl+".onRune", []string{string(e.Rune())})
if err != nil && !strings.HasPrefix(err.Error(), "function does not exist") {
TermMessage(err)
}
}
} else {
for key, actions := range bindings {
if e.Key() == key.keyCode {
if e.Key() == tcell.KeyRune {
if e.Rune() != key.r {
continue
}
}
if e.Modifiers() == key.modifiers {
relocate = false
for _, action := range actions {
relocate = action(v, true) || relocate
}
}
}
}
2016-03-17 21:27:57 +00:00
}
case *tcell.EventPaste:
2016-04-25 16:48:43 +00:00
if v.Cursor.HasSelection() {
v.Cursor.DeleteSelection()
v.Cursor.ResetSelection()
}
clip := e.Text()
2016-06-07 15:43:28 +00:00
v.Buf.Insert(v.Cursor.Loc, clip)
v.Cursor.Loc = v.Cursor.Loc.Move(Count(clip), v.Buf)
v.freshClip = false
2016-03-17 21:27:57 +00:00
case *tcell.EventMouse:
x, y := e.Position()
2016-06-15 22:38:37 +00:00
x -= v.lineNumOffset - v.leftCol + v.x
y += v.Topline - v.y
// Don't relocate for mouse events
2016-05-17 17:31:36 +00:00
relocate = false
2016-03-17 21:27:57 +00:00
button := e.Buttons()
switch button {
case tcell.Button1:
// Left click
if v.mouseReleased {
v.MoveToMouseClick(x, y)
2016-04-30 20:56:48 +00:00
if time.Since(v.lastClickTime)/time.Millisecond < doubleClickThreshold {
2016-03-26 20:32:19 +00:00
if v.doubleClick {
// Triple click
v.lastClickTime = time.Now()
2016-03-28 12:43:08 +00:00
2016-03-26 20:32:19 +00:00
v.tripleClick = true
v.doubleClick = false
2016-03-28 12:43:08 +00:00
2016-04-25 16:48:43 +00:00
v.Cursor.SelectLine()
2016-03-26 20:32:19 +00:00
} else {
// Double click
2016-03-28 12:43:08 +00:00
v.lastClickTime = time.Now()
2016-03-26 20:32:19 +00:00
v.doubleClick = true
v.tripleClick = false
2016-03-28 12:43:08 +00:00
2016-04-25 16:48:43 +00:00
v.Cursor.SelectWord()
2016-03-26 20:32:19 +00:00
}
} else {
v.doubleClick = false
v.tripleClick = false
v.lastClickTime = time.Now()
2016-06-07 15:43:28 +00:00
v.Cursor.OrigSelection[0] = v.Cursor.Loc
v.Cursor.CurSelection[0] = v.Cursor.Loc
v.Cursor.CurSelection[1] = v.Cursor.Loc
2016-03-26 20:32:19 +00:00
}
v.mouseReleased = false
} else if !v.mouseReleased {
v.MoveToMouseClick(x, y)
2016-03-26 20:32:19 +00:00
if v.tripleClick {
2016-04-25 16:48:43 +00:00
v.Cursor.AddLineToSelection()
2016-03-26 20:32:19 +00:00
} else if v.doubleClick {
2016-04-25 16:48:43 +00:00
v.Cursor.AddWordToSelection()
2016-03-26 20:32:19 +00:00
} else {
2016-06-07 15:43:28 +00:00
v.Cursor.CurSelection[1] = v.Cursor.Loc
2016-03-26 20:32:19 +00:00
}
2016-03-17 21:27:57 +00:00
}
case tcell.ButtonNone:
// Mouse event with no click
2016-03-25 16:14:22 +00:00
if !v.mouseReleased {
// Mouse was just released
// Relocating here isn't really necessary because the cursor will
// be in the right place from the last mouse event
// However, if we are running in a terminal that doesn't support mouse motion
// events, this still allows the user to make selections, except only after they
// release the mouse
2016-03-27 20:35:54 +00:00
if !v.doubleClick && !v.tripleClick {
v.MoveToMouseClick(x, y)
2016-06-07 15:43:28 +00:00
v.Cursor.CurSelection[1] = v.Cursor.Loc
2016-03-27 20:35:54 +00:00
}
2016-03-25 16:14:22 +00:00
v.mouseReleased = true
}
2016-03-17 21:27:57 +00:00
case tcell.WheelUp:
2016-05-17 16:15:47 +00:00
// Scroll up
scrollspeed := int(settings["scrollspeed"].(float64))
v.ScrollUp(scrollspeed)
2016-03-17 21:27:57 +00:00
case tcell.WheelDown:
2016-05-17 16:15:47 +00:00
// Scroll down
scrollspeed := int(settings["scrollspeed"].(float64))
v.ScrollDown(scrollspeed)
2016-03-17 21:27:57 +00:00
}
}
2016-03-25 16:14:22 +00:00
if relocate {
v.Relocate()
2016-03-17 21:27:57 +00:00
}
if settings["syntax"].(bool) {
2016-04-10 22:02:58 +00:00
v.matches = Match(v)
}
2016-03-17 21:27:57 +00:00
}
// GutterMessage creates a message in this view's gutter
func (v *View) GutterMessage(section string, lineN int, msg string, kind int) {
lineN--
2016-04-27 15:22:57 +00:00
gutterMsg := GutterMessage{
lineNum: lineN,
msg: msg,
kind: kind,
}
for _, v := range v.messages {
for _, gmsg := range v {
if gmsg.lineNum == lineN {
return
}
2016-04-27 15:22:57 +00:00
}
}
messages := v.messages[section]
v.messages[section] = append(messages, gutterMsg)
}
// ClearGutterMessages clears all gutter messages from a given section
func (v *View) ClearGutterMessages(section string) {
v.messages[section] = []GutterMessage{}
2016-04-27 15:22:57 +00:00
}
2016-05-05 15:31:53 +00:00
// ClearAllGutterMessages clears all the gutter messages
func (v *View) ClearAllGutterMessages() {
for k := range v.messages {
v.messages[k] = []GutterMessage{}
}
}
// Opens the given help page in a new horizontal split
func (v *View) openHelp(helpPage string) {
if v.Help {
helpBuffer := NewBuffer([]byte(helpPages[helpPage]), helpPage+".md")
helpBuffer.Name = "Help"
v.OpenBuffer(helpBuffer)
} else {
helpBuffer := NewBuffer([]byte(helpPages[helpPage]), helpPage+".md")
helpBuffer.Name = "Help"
v.HSplit(helpBuffer)
CurView().Help = true
}
}
func (v *View) drawCell(x, y int, ch rune, combc []rune, style tcell.Style) {
if x >= v.x && x < v.x+v.width && y >= v.y && y < v.y+v.height {
screen.SetContent(x, y, ch, combc, style)
}
}
2016-03-25 16:14:22 +00:00
// DisplayView renders the view to the screen
func (v *View) DisplayView() {
2016-07-11 19:35:50 +00:00
// The charNum we are currently displaying
// starts at the start of the viewport
2016-06-07 15:43:28 +00:00
charNum := Loc{0, v.Topline}
2016-03-19 13:24:04 +00:00
// Convert the length of buffer to a string, and get the length of the string
// We are going to have to offset by that amount
2016-04-25 16:48:43 +00:00
maxLineLength := len(strconv.Itoa(v.Buf.NumLines))
2016-07-11 19:35:50 +00:00
if settings["ruler"] == true {
2016-07-11 19:35:50 +00:00
// + 1 for the little space after the line number
2016-04-22 20:02:26 +00:00
v.lineNumOffset = maxLineLength + 1
} else {
v.lineNumOffset = 0
}
2016-03-20 15:28:41 +00:00
2016-07-11 19:35:50 +00:00
// We need to add to the line offset if there are gutter messages
var hasGutterMessages bool
for _, v := range v.messages {
if len(v) > 0 {
hasGutterMessages = true
}
}
if hasGutterMessages {
2016-04-27 15:22:57 +00:00
v.lineNumOffset += 2
}
2016-06-26 22:44:15 +00:00
if v.x != 0 {
// One space for the extra split divider
v.lineNumOffset++
}
2016-07-11 19:35:50 +00:00
// These represent the current screen coordinates
screenX, screenY := 0, 0
highlightStyle := defStyle
// ViewLine is the current line from the top of the viewport
for viewLine := 0; viewLine < v.height; viewLine++ {
screenY = v.y + viewLine
screenX = v.x
// This is the current line number of the buffer that we are drawing
curLineN := viewLine + v.Topline
2016-06-26 22:44:15 +00:00
if v.x != 0 {
// Draw the split divider
v.drawCell(screenX, screenY, '|', nil, defStyle.Reverse(true))
2016-07-11 19:35:50 +00:00
screenX++
2016-06-26 22:44:15 +00:00
}
2016-07-11 19:35:50 +00:00
// If the buffer is smaller than the view height we have to clear all this space
if curLineN >= v.Buf.NumLines {
for i := screenX; i < v.x+v.width; i++ {
v.drawCell(i, screenY, ' ', nil, defStyle)
2016-06-01 11:45:01 +00:00
}
continue
2016-03-17 21:27:57 +00:00
}
2016-07-11 19:35:50 +00:00
line := v.Buf.Line(curLineN)
2016-03-19 13:24:04 +00:00
2016-07-11 19:35:50 +00:00
// If there are gutter messages we need to display the '>>' symbol here
if hasGutterMessages {
2016-07-11 19:35:50 +00:00
// msgOnLine stores whether or not there is a gutter message on this line in particular
2016-04-27 15:22:57 +00:00
msgOnLine := false
for k := range v.messages {
for _, msg := range v.messages[k] {
2016-07-11 19:35:50 +00:00
if msg.lineNum == curLineN {
msgOnLine = true
gutterStyle := defStyle
switch msg.kind {
case GutterInfo:
if style, ok := colorscheme["gutter-info"]; ok {
gutterStyle = style
}
case GutterWarning:
if style, ok := colorscheme["gutter-warning"]; ok {
gutterStyle = style
}
case GutterError:
if style, ok := colorscheme["gutter-error"]; ok {
gutterStyle = style
}
}
2016-07-11 19:35:50 +00:00
v.drawCell(screenX, screenY, '>', nil, gutterStyle)
screenX++
v.drawCell(screenX, screenY, '>', nil, gutterStyle)
screenX++
if v.Cursor.Y == curLineN {
messenger.Message(msg.msg)
messenger.gutterMessage = true
}
2016-04-27 15:22:57 +00:00
}
}
}
2016-07-11 19:35:50 +00:00
// If there is no message on this line we just display an empty offset
2016-04-27 15:22:57 +00:00
if !msgOnLine {
2016-07-11 19:35:50 +00:00
v.drawCell(screenX, screenY, ' ', nil, defStyle)
screenX++
v.drawCell(screenX, screenY, ' ', nil, defStyle)
screenX++
if v.Cursor.Y == curLineN && messenger.gutterMessage {
2016-04-27 15:22:57 +00:00
messenger.Reset()
messenger.gutterMessage = false
2016-04-27 15:22:57 +00:00
}
}
}
if settings["ruler"] == true {
2016-07-11 19:35:50 +00:00
// Write the line number
lineNumStyle := defStyle
if style, ok := colorscheme["line-number"]; ok {
lineNumStyle = style
}
2016-08-15 20:35:40 +00:00
if style, ok := colorscheme["current-line-number"]; ok {
2016-08-17 15:59:29 +00:00
if curLineN == v.Cursor.Y {
lineNumStyle = style
}
2016-08-15 20:35:40 +00:00
}
2016-07-11 19:35:50 +00:00
lineNum := strconv.Itoa(curLineN + 1)
// Write the spaces before the line number if necessary
2016-04-22 20:02:26 +00:00
for i := 0; i < maxLineLength-len(lineNum); i++ {
2016-07-11 19:35:50 +00:00
v.drawCell(screenX, screenY, ' ', nil, lineNumStyle)
screenX++
2016-04-22 20:02:26 +00:00
}
// Write the actual line number
for _, ch := range lineNum {
2016-08-17 15:59:29 +00:00
v.drawCell(screenX, screenY, ch, nil, lineNumStyle)
2016-07-11 19:35:50 +00:00
screenX++
2016-04-22 20:02:26 +00:00
}
2016-03-19 13:24:04 +00:00
2016-07-11 19:35:50 +00:00
// Write the extra space
v.drawCell(screenX, screenY, ' ', nil, lineNumStyle)
screenX++
2016-04-22 20:02:26 +00:00
}
2016-07-11 19:35:50 +00:00
// Now we actually draw the line
colN := 0
for _, ch := range line {
lineStyle := defStyle
2016-04-22 22:50:01 +00:00
if settings["syntax"].(bool) {
// Syntax highlighting is enabled
2016-07-11 19:35:50 +00:00
highlightStyle = v.matches[viewLine][colN]
2016-04-10 22:02:58 +00:00
}
2016-03-20 15:28:41 +00:00
2016-04-25 16:48:43 +00:00
if v.Cursor.HasSelection() &&
2016-06-07 15:43:28 +00:00
(charNum.GreaterEqual(v.Cursor.CurSelection[0]) && charNum.LessThan(v.Cursor.CurSelection[1]) ||
charNum.LessThan(v.Cursor.CurSelection[0]) && charNum.GreaterEqual(v.Cursor.CurSelection[1])) {
2016-07-11 19:35:50 +00:00
// The current character is selected
lineStyle = defStyle.Reverse(true)
if style, ok := colorscheme["selection"]; ok {
lineStyle = style
}
2016-03-20 19:24:40 +00:00
} else {
lineStyle = highlightStyle
2016-03-17 21:27:57 +00:00
}
2016-07-11 19:35:50 +00:00
// We need to display the background of the linestyle with the correct color if cursorline is enabled
// and this is the current view and there is no selection on this line and the cursor is on this line
if settings["cursorline"].(bool) && tabs[curTab].curView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN {
2016-06-01 14:05:17 +00:00
if style, ok := colorscheme["cursor-line"]; ok {
fg, _, _ := style.Decompose()
lineStyle = lineStyle.Background(fg)
}
}
if ch == '\t' {
2016-07-11 19:35:50 +00:00
// If the character we are displaying is a tab, we need to do a bunch of special things
// First the user may have configured an `indent-char` to be displayed to show that this
// is a tab character
2016-05-17 15:17:18 +00:00
lineIndentStyle := defStyle
if style, ok := colorscheme["indent-char"]; ok {
2016-05-17 15:17:18 +00:00
lineIndentStyle = style
}
2016-05-18 13:33:49 +00:00
if v.Cursor.HasSelection() &&
2016-06-07 15:43:28 +00:00
(charNum.GreaterEqual(v.Cursor.CurSelection[0]) && charNum.LessThan(v.Cursor.CurSelection[1]) ||
charNum.LessThan(v.Cursor.CurSelection[0]) && charNum.GreaterEqual(v.Cursor.CurSelection[1])) {
2016-05-18 13:33:49 +00:00
lineIndentStyle = defStyle.Reverse(true)
2016-05-18 13:33:49 +00:00
if style, ok := colorscheme["selection"]; ok {
lineIndentStyle = style
}
}
2016-07-11 19:35:50 +00:00
if settings["cursorline"].(bool) && tabs[curTab].curView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN {
2016-06-01 14:05:17 +00:00
if style, ok := colorscheme["cursor-line"]; ok {
fg, _, _ := style.Decompose()
lineIndentStyle = lineIndentStyle.Background(fg)
}
}
2016-07-11 19:35:50 +00:00
// Here we get the indent char
2016-05-17 15:17:18 +00:00
indentChar := []rune(settings["indentchar"].(string))
2016-07-11 19:35:50 +00:00
if screenX-v.x-v.leftCol >= v.lineNumOffset {
v.drawCell(screenX-v.leftCol, screenY, indentChar[0], nil, lineIndentStyle)
}
2016-07-11 19:35:50 +00:00
// Now the tab has to be displayed as a bunch of spaces
tabSize := int(settings["tabsize"].(float64))
for i := 0; i < tabSize-1; i++ {
2016-07-11 19:35:50 +00:00
screenX++
if screenX-v.x-v.leftCol >= v.lineNumOffset {
v.drawCell(screenX-v.leftCol, screenY, ' ', nil, lineStyle)
2016-04-04 18:03:17 +00:00
}
}
} else if runewidth.RuneWidth(ch) > 1 {
2016-07-11 19:35:50 +00:00
if screenX-v.x-v.leftCol >= v.lineNumOffset {
v.drawCell(screenX, screenY, ch, nil, lineStyle)
}
for i := 0; i < runewidth.RuneWidth(ch)-1; i++ {
2016-07-11 19:35:50 +00:00
screenX++
if screenX-v.x-v.leftCol >= v.lineNumOffset {
v.drawCell(screenX-v.leftCol, screenY, '<', nil, lineStyle)
}
}
} else {
2016-07-11 19:35:50 +00:00
if screenX-v.x-v.leftCol >= v.lineNumOffset {
v.drawCell(screenX-v.leftCol, screenY, ch, nil, lineStyle)
2016-04-04 18:03:17 +00:00
}
}
2016-06-07 15:43:28 +00:00
charNum = charNum.Move(1, v.Buf)
2016-07-11 19:35:50 +00:00
screenX++
colN++
2016-03-17 21:27:57 +00:00
}
2016-03-25 16:14:22 +00:00
// Here we are at a newline
// The newline may be selected, in which case we should draw the selection style
// with a space to represent it
2016-04-25 16:48:43 +00:00
if v.Cursor.HasSelection() &&
2016-06-07 15:43:28 +00:00
(charNum.GreaterEqual(v.Cursor.CurSelection[0]) && charNum.LessThan(v.Cursor.CurSelection[1]) ||
charNum.LessThan(v.Cursor.CurSelection[0]) && charNum.GreaterEqual(v.Cursor.CurSelection[1])) {
2016-03-23 21:15:10 +00:00
selectStyle := defStyle.Reverse(true)
2016-03-23 21:15:10 +00:00
if style, ok := colorscheme["selection"]; ok {
selectStyle = style
2016-03-23 21:15:10 +00:00
}
2016-07-11 19:35:50 +00:00
v.drawCell(screenX, screenY, ' ', nil, selectStyle)
screenX++
2016-03-23 21:15:10 +00:00
}
2016-06-07 15:43:28 +00:00
charNum = charNum.Move(1, v.Buf)
2016-07-11 19:35:50 +00:00
for i := 0; i < v.width; i++ {
lineStyle := defStyle
2016-07-11 19:35:50 +00:00
if settings["cursorline"].(bool) && tabs[curTab].curView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN {
2016-06-01 14:05:17 +00:00
if style, ok := colorscheme["cursor-line"]; ok {
fg, _, _ := style.Decompose()
lineStyle = lineStyle.Background(fg)
}
}
2016-07-23 15:58:28 +00:00
if screenX-v.x-v.leftCol+i >= v.lineNumOffset {
2016-07-11 19:35:50 +00:00
v.drawCell(screenX-v.leftCol+i, screenY, ' ', nil, lineStyle)
2016-06-04 20:00:53 +00:00
}
}
2016-03-17 21:27:57 +00:00
}
}
2016-03-25 16:14:22 +00:00
// DisplayCursor draws the current buffer's cursor to the screen
func (v *View) DisplayCursor() {
// Don't draw the cursor if it is out of the viewport or if it has a selection
if (v.Cursor.Y-v.Topline < 0 || v.Cursor.Y-v.Topline > v.height-1) || v.Cursor.HasSelection() {
screen.HideCursor()
} else {
screen.ShowCursor(v.x+v.Cursor.GetVisualX()+v.lineNumOffset-v.leftCol, v.Cursor.Y-v.Topline+v.y)
}
}
2016-03-25 16:14:22 +00:00
// Display renders the view, the cursor, and statusline
func (v *View) Display() {
v.DisplayView()
if v.Num == tabs[curTab].curView {
v.DisplayCursor()
}
_, screenH := screen.Size()
2016-05-15 17:44:07 +00:00
if settings["statusline"].(bool) {
v.sline.Display()
} else if (v.y + v.height) != screenH-1 {
for x := 0; x < v.width; x++ {
screen.SetContent(v.x+x, v.y+v.height, '-', nil, defStyle.Reverse(true))
}
2016-05-15 17:44:07 +00:00
}
2016-03-25 16:14:22 +00:00
}