micro/cmd/micro/view.go

978 lines
25 KiB
Go
Raw Normal View History

2016-03-17 21:27:57 +00:00
package main
import (
2016-09-06 23:58:34 +00:00
"io/ioutil"
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"
2016-09-06 23:58:34 +00:00
"github.com/mitchellh/go-homedir"
"github.com/zyedidia/tcell"
2016-03-17 21:27:57 +00:00
)
2016-09-26 17:08:37 +00:00
type ViewType int
const (
vtDefault ViewType = iota
vtHelp
vtLog
)
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
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-07-14 17:01:02 +00:00
// Specifies whether or not this view holds a help buffer
2016-09-26 17:08:37 +00:00
Type ViewType
2016-07-14 17:01:02 +00:00
// Actual width and height
2016-11-29 01:23:22 +00:00
Width int
Height int
2016-03-21 21:43:53 +00:00
2016-11-29 01:23:22 +00:00
LockWidth bool
LockHeight bool
// 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
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)
2016-03-17 22:20:07 +00:00
}
2016-08-20 20:02:19 +00:00
// NewViewWidthHeight returns a new view with the specified width and height
// Note that w and h are raw column and row 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-08-24 23:55:44 +00:00
if v.Buf.Settings["statusline"].(bool) {
v.Height--
2016-05-15 17:44:07 +00:00
}
2016-08-25 20:01:42 +00:00
for _, pl := range loadedPlugins {
_, err := Call(pl+".onViewOpen", v)
if err != nil && !strings.HasPrefix(err.Error(), "function does not exist") {
TermMessage(err)
continue
}
}
return v
2016-03-21 21:43:53 +00:00
}
2016-10-18 15:12:28 +00:00
// ToggleStatusLine creates an extra row for the statusline if necessary
2016-08-11 17:50:59 +00:00
func (v *View) ToggleStatusLine() {
2016-08-24 23:55:44 +00:00
if v.Buf.Settings["statusline"].(bool) {
v.Height--
2016-08-11 17:50:59 +00:00
} else {
v.Height++
2016-08-11 17:50:59 +00:00
}
}
2016-10-18 15:12:28 +00:00
// ToggleTabbar creates an extra row for the tabbar if necessary
2016-08-11 17:50:59 +00:00
func (v *View) ToggleTabbar() {
if len(tabs) > 1 {
if v.y == 0 {
// Include one line for the tab bar at the top
v.Height--
2016-08-11 17:50:59 +00:00
v.y = 1
}
} else {
if v.y == 1 {
v.y = 0
v.Height++
2016-08-11 17:50:59 +00:00
}
}
}
2016-09-02 13:40:08 +00:00
func (v *View) paste(clip string) {
leadingWS := GetLeadingWhitespace(v.Buf.Line(v.Cursor.Y))
if v.Cursor.HasSelection() {
v.Cursor.DeleteSelection()
v.Cursor.ResetSelection()
}
clip = strings.Replace(clip, "\n", "\n"+leadingWS, -1)
v.Buf.Insert(v.Cursor.Loc, clip)
v.Cursor.Loc = v.Cursor.Loc.Move(Count(clip), v.Buf)
v.freshClip = false
messenger.Message("Pasted clipboard")
}
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
if v.Topline+n <= v.Buf.NumLines-v.Height {
2016-04-25 16:48:43 +00:00
v.Topline += n
} else if v.Topline < v.Buf.NumLines-v.Height {
2016-04-25 16:48:43 +00:00
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
func (v *View) CanClose() bool {
if v.Type == vtDefault && v.Buf.IsModified {
2016-09-28 17:07:05 +00:00
var char rune
var canceled bool
if v.Buf.Settings["autosave"].(bool) {
char = 'y'
} else {
2016-11-20 00:07:51 +00:00
char, canceled = messenger.LetterPrompt("Save changes to "+v.Buf.GetName()+" before closing? (y,n,esc) ", 'y', 'n')
2016-09-28 17:07:05 +00:00
}
2016-03-25 16:14:22 +00:00
if !canceled {
if char == 'y' {
v.Save(true)
2016-04-19 17:16:08 +00:00
return true
} else if char == 'n' {
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()
2016-08-25 00:03:02 +00:00
v.Center(false)
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{}
}
2016-10-18 15:12:28 +00:00
// Open opens the given file in the view
2016-09-06 23:58:34 +00:00
func (v *View) Open(filename string) {
home, _ := homedir.Dir()
filename = strings.Replace(filename, "~", home, 1)
file, err := ioutil.ReadFile(filename)
var buf *Buffer
if err != nil {
messenger.Message(err.Error())
// File does not exist -- create an empty buffer with that name
buf = NewBuffer([]byte{}, filename)
} else {
buf = NewBuffer(file, filename)
}
v.OpenBuffer(buf)
}
// 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() {
if v.CanClose() {
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) {
i := 0
if v.Buf.Settings["splitBottom"].(bool) {
i = 1
}
v.splitNode.HSplit(buf, v.Num+i)
2016-06-26 22:44:15 +00:00
}
// VSplit opens a vertical split with the given buffer
func (v *View) VSplit(buf *Buffer) {
i := 0
if v.Buf.Settings["splitRight"].(bool) {
i = 1
}
v.splitNode.VSplit(buf, v.Num+i)
}
// HSplitIndex opens a horizontal split with the given buffer at the given index
func (v *View) HSplitIndex(buf *Buffer, splitIndex int) {
v.splitNode.HSplit(buf, splitIndex)
}
// VSplitIndex opens a vertical split with the given buffer at the given index
func (v *View) VSplitIndex(buf *Buffer, splitIndex int) {
v.splitNode.VSplit(buf, splitIndex)
2016-06-15 22:38:37 +00:00
}
2016-10-18 15:12:28 +00:00
// GetSoftWrapLocation gets the location of a visual click on the screen and converts it to col,line
2016-10-13 18:26:45 +00:00
func (v *View) GetSoftWrapLocation(vx, vy int) (int, int) {
if !v.Buf.Settings["softwrap"].(bool) {
vx = v.Cursor.GetCharPosInLine(vy, vx)
2016-10-13 18:26:45 +00:00
return vx, vy
}
screenX, screenY := 0, v.Topline
for lineN := v.Topline; lineN < v.Bottomline(); lineN++ {
2016-10-13 18:26:45 +00:00
line := v.Buf.Line(lineN)
colN := 0
for _, ch := range line {
if screenX >= v.Width-v.lineNumOffset {
2016-10-13 18:26:45 +00:00
screenX = 0
screenY++
}
if screenX == vx && screenY == vy {
return colN, lineN
}
if ch == '\t' {
screenX += int(v.Buf.Settings["tabsize"].(float64)) - 1
}
screenX++
colN++
}
if screenY == vy {
return colN, lineN
}
2016-10-13 18:26:45 +00:00
screenX = 0
screenY++
}
return 0, 0
}
func (v *View) Bottomline() int {
if !v.Buf.Settings["softwrap"].(bool) {
return v.Topline + v.Height
}
screenX, screenY := 0, 0
numLines := 0
for lineN := v.Topline; lineN < v.Topline+v.Height; lineN++ {
line := v.Buf.Line(lineN)
colN := 0
for _, ch := range line {
if screenX >= v.Width-v.lineNumOffset {
screenX = 0
screenY++
}
if ch == '\t' {
screenX += int(v.Buf.Settings["tabsize"].(float64)) - 1
}
screenX++
colN++
}
screenX = 0
screenY++
numLines++
if screenY >= v.Height {
break
}
}
return numLines + v.Topline
}
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 {
height := v.Bottomline() - v.Topline
ret := false
cy := v.Cursor.Y
2016-08-24 23:55:44 +00:00
scrollmargin := int(v.Buf.Settings["scrollmargin"].(float64))
2016-05-20 18:06:01 +00:00
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
}
2016-10-12 20:24:00 +00:00
if cy > v.Topline+height-1-scrollmargin && cy < v.Buf.NumLines-scrollmargin {
v.Topline = cy - height + 1 + scrollmargin
ret = true
2016-10-12 20:24:00 +00:00
} else if cy >= v.Buf.NumLines-scrollmargin && cy > height {
v.Topline = v.Buf.NumLines - height
ret = true
2016-03-25 16:14:22 +00:00
}
2016-04-04 18:03:17 +00:00
2016-10-12 20:24:00 +00:00
if !v.Buf.Settings["softwrap"].(bool) {
cx := v.Cursor.GetVisualX()
if cx < v.leftCol {
v.leftCol = cx
ret = true
}
if cx+v.lineNumOffset+1 > v.leftCol+v.Width {
v.leftCol = cx - v.Width + v.lineNumOffset + 1
2016-10-12 20:24:00 +00:00
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) {
if y-v.Topline > v.Height-1 {
2016-03-25 16:14:22 +00:00
v.ScrollDown(1)
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-10-13 18:26:45 +00:00
x, y = v.GetSoftWrapLocation(x, y)
// 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:
// Check first if input is a key binding, if it is we 'eat' the input and don't insert a rune
isBinding := false
if e.Key() != tcell.KeyRune || e.Modifiers() != 0 {
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
isBinding = true
for _, action := range actions {
relocate = action(v, true) || relocate
funcName := FuncName(action)
if funcName != "main.(*View).ToggleMacro" && funcName != "main.(*View).PlayMacro" {
if recordingMacro {
curMacro = append(curMacro, action)
}
}
}
break
}
}
}
2016-03-17 21:27:57 +00:00
}
if !isBinding && e.Key() == tcell.KeyRune {
// Insert a character
if v.Cursor.HasSelection() {
v.Cursor.DeleteSelection()
v.Cursor.ResetSelection()
}
v.Buf.Insert(v.Cursor.Loc, string(e.Rune()))
v.Cursor.Right()
for _, pl := range loadedPlugins {
_, err := Call(pl+".onRune", string(e.Rune()), v)
if err != nil && !strings.HasPrefix(err.Error(), "function does not exist") {
TermMessage(err)
}
}
if recordingMacro {
curMacro = append(curMacro, e.Rune())
}
}
case *tcell.EventPaste:
if !PreActionCall("Paste", v) {
break
}
v.paste(e.Text())
PostActionCall("Paste", v)
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 {
v.Cursor.SetSelectionEnd(v.Cursor.Loc)
2016-03-26 20:32:19 +00:00
}
2016-03-17 21:27:57 +00:00
}
2016-09-02 13:40:08 +00:00
case tcell.Button2:
// Middle mouse button was clicked,
// We should paste primary
v.PastePrimary(true)
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)
v.Cursor.SetSelectionEnd(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
2016-08-24 23:55:44 +00:00
scrollspeed := int(v.Buf.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
2016-08-24 23:55:44 +00:00
scrollspeed := int(v.Buf.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
}
}
// 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 data, err := FindRuntimeFile(RTHelp, helpPage).Data(); err != nil {
2016-09-13 06:53:20 +00:00
TermMessage("Unable to load help text", helpPage, "\n", err)
} else {
2016-09-13 06:53:20 +00:00
helpBuffer := NewBuffer(data, helpPage+".md")
2016-11-20 00:07:51 +00:00
helpBuffer.name = "Help"
2016-09-13 06:53:20 +00:00
2016-09-26 17:08:37 +00:00
if v.Type == vtHelp {
2016-09-13 06:53:20 +00:00
v.OpenBuffer(helpBuffer)
} else {
v.HSplit(helpBuffer)
2016-09-26 17:08:37 +00:00
CurView().Type = vtHelp
2016-09-13 06:53:20 +00:00
}
}
}
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() {
if v.Type == vtLog {
// Log views should always follow the cursor...
v.Relocate()
}
if v.Buf.Settings["syntax"].(bool) {
v.matches = Match(v)
}
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
2016-08-24 23:55:44 +00:00
if v.Buf.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
2016-10-12 20:24:00 +00:00
screenX, screenY := v.x, v.y-1
2016-07-11 19:35:50 +00:00
highlightStyle := defStyle
curLineN := 0
2016-07-11 19:35:50 +00:00
// ViewLine is the current line from the top of the viewport
for viewLine := 0; viewLine < v.Height; viewLine++ {
2016-10-12 20:24:00 +00:00
screenY++
2016-07-11 19:35:50 +00:00
screenX = v.x
// This is the current line number of the buffer that we are drawing
curLineN = viewLine + v.Topline
2016-07-11 19:35:50 +00:00
if screenY-v.y >= v.Height {
2016-10-12 20:24:00 +00:00
break
}
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++ {
2016-07-11 19:35:50 +00:00
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.hasPrompt {
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
}
}
}
2016-10-12 20:24:00 +00:00
lineNumStyle := defStyle
2016-08-24 23:55:44 +00:00
if v.Buf.Settings["ruler"] == true {
2016-07-11 19:35:50 +00:00
// Write the line number
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-11-29 01:50:11 +00:00
if curLineN == v.Cursor.Y && tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() {
2016-08-17 15:59:29 +00:00
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
2016-09-28 22:08:06 +00:00
strWidth := 0
tabSize := int(v.Buf.Settings["tabsize"].(float64))
for _, ch := range line {
2016-10-12 20:24:00 +00:00
if v.Buf.Settings["softwrap"].(bool) {
if screenX-v.x >= v.Width {
2016-10-12 20:24:00 +00:00
screenY++
for i := 0; i < v.lineNumOffset; i++ {
screen.SetContent(v.x+i, screenY, ' ', nil, lineNumStyle)
}
screenX = v.x + v.lineNumOffset
}
}
2016-11-29 01:50:11 +00:00
if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN && colN == v.Cursor.X {
2016-10-13 02:05:24 +00:00
v.DisplayCursor(screenX-v.leftCol, screenY)
2016-10-12 20:24:00 +00:00
}
lineStyle := defStyle
2016-04-22 22:50:01 +00:00
2016-08-24 23:55:44 +00:00
if v.Buf.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
2016-11-29 01:50:11 +00:00
if v.Buf.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 && v.Buf.Settings["indentchar"].(string) != " " {
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-11-29 01:50:11 +00:00
if v.Buf.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-08-24 23:55:44 +00:00
indentChar := []rune(v.Buf.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
2016-09-28 22:08:06 +00:00
visLoc := strWidth
2016-09-28 19:54:34 +00:00
remainder := tabSize - (visLoc % tabSize)
for i := 0; i < remainder-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-09-28 22:08:06 +00:00
strWidth += StringWidth(string(ch), tabSize)
2016-03-17 21:27:57 +00:00
}
2016-03-25 16:14:22 +00:00
// Here we are at a newline
2016-11-29 01:50:11 +00:00
if tabs[curTab].CurView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN && colN == v.Cursor.X {
2016-10-13 02:05:24 +00:00
v.DisplayCursor(screenX-v.leftCol, screenY)
2016-10-12 20:24:00 +00:00
}
2016-03-25 16:14:22 +00:00
// 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)
for i := 0; i < v.Width; i++ {
lineStyle := defStyle
2016-11-29 01:50:11 +00:00
if v.Buf.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 {
colorcolumn := int(v.Buf.Settings["colorcolumn"].(float64))
if colorcolumn != 0 && screenX-v.lineNumOffset+i == colorcolumn-1 {
if style, ok := colorscheme["color-column"]; ok {
fg, _, _ := style.Decompose()
lineStyle = lineStyle.Background(fg)
}
}
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
2016-10-12 20:24:00 +00:00
func (v *View) DisplayCursor(x, y int) {
// screen.ShowCursor(v.x+v.Cursor.GetVisualX()+v.lineNumOffset-v.leftCol, y)
screen.ShowCursor(x, y)
}
2016-03-25 16:14:22 +00:00
// Display renders the view, the cursor, and statusline
func (v *View) Display() {
v.DisplayView()
2016-10-12 20:24:00 +00:00
// 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() {
2016-10-12 20:24:00 +00:00
screen.HideCursor()
}
_, screenH := screen.Size()
2016-08-24 23:55:44 +00:00
if v.Buf.Settings["statusline"].(bool) {
2016-05-15 17:44:07 +00:00
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
}