]> git.lizzy.rs Git - micro.git/blobdiff - cmd/micro/view.go
Copy to primary clipboard for any change in selection
[micro.git] / cmd / micro / view.go
index 5bc33ec5d8f99616e1adeb98e309c7c4e95cbce0..996ac8bdd39cde4e67e443c5fbc07f2f34453485 100644 (file)
@@ -1,14 +1,11 @@
 package main
 
 import (
-       "reflect"
-       "runtime"
        "strconv"
        "strings"
        "time"
 
        "github.com/mattn/go-runewidth"
-       "github.com/yuin/gopher-lua"
        "github.com/zyedidia/tcell"
 )
 
@@ -80,30 +77,27 @@ type View struct {
 
        // Syntax highlighting matches
        matches SyntaxMatches
-       // The matches from the last frame
-       lastMatches SyntaxMatches
 
-       splitParent         *View
-       splitChild          *View
-       splitOrigDimensions [2]int
-       splitOrigPos        [2]int
+       splitNode *LeafNode
 }
 
 // NewView returns a new fullscreen view
 func NewView(buf *Buffer) *View {
-       return NewViewWidthHeight(buf, 100, 100)
+       screenW, screenH := screen.Size()
+       return NewViewWidthHeight(buf, screenW, screenH)
 }
 
-// NewViewWidthHeight returns a new view with the specified width and height percentages
-// Note that w and h are percentages not actual values
+// NewViewWidthHeight returns a new view with the specified width and height
+// Note that w and h are raw column and row values
 func NewViewWidthHeight(buf *Buffer, w, h int) *View {
        v := new(View)
 
        v.x, v.y = 0, 0
 
-       v.widthPercent = w
-       v.heightPercent = h
-       v.Resize(screen.Size())
+       v.width = w
+       v.height = h
+
+       v.ToggleTabbar()
 
        v.OpenBuffer(buf)
 
@@ -113,41 +107,56 @@ func NewViewWidthHeight(buf *Buffer, w, h int) *View {
                view: v,
        }
 
+       if v.Buf.Settings["statusline"].(bool) {
+               v.height--
+       }
+
+       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
 }
 
-// Resize recalculates the actual width and height of the view from the width and height
-// percentages
-// This is usually called when the window is resized, or when a split has been added and
-// the percentages have changed
-func (v *View) Resize(w, h int) {
-       // Always include 1 line for the command line at the bottom
-       h--
+func (v *View) ToggleStatusLine() {
+       if v.Buf.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
-                       h--
+                       v.height--
                        v.y = 1
                }
        } else {
                if v.y == 1 {
                        v.y = 0
+                       v.height++
                }
        }
-       v.width = int(float32(w) * float32(v.widthPercent) / 100)
-       // We subtract 1 for the statusline
-       v.height = int(float32(h) * float32(v.heightPercent) / 100)
-       if w%2 == 0 && v.x > 1 && v.widthPercent < 100 {
-               v.width++
-       }
+}
 
-       if h%2 == 1 && v.y > 1 && v.heightPercent < 100 {
-               v.height++
-       }
-       if settings["statusline"].(bool) {
-               // Make room for the status line if it is enabled
-               v.height--
+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")
 }
 
 // ScrollUp scrolls the view up n lines (if possible)
@@ -174,14 +183,14 @@ func (v *View) ScrollDown(n int) {
 // 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 {
+func (v *View) CanClose(msg string, responses ...rune) bool {
        if v.Buf.IsModified {
-               quit, canceled := messenger.Prompt("You have unsaved changes. "+msg, "Unsaved", NoCompletion)
+               char, canceled := messenger.LetterPrompt("You have unsaved changes. "+msg, responses...)
                if !canceled {
-                       if strings.ToLower(quit) == "yes" || strings.ToLower(quit) == "y" {
+                       if char == 'y' {
                                return true
-                       } else if strings.ToLower(quit) == "save" || strings.ToLower(quit) == "s" {
-                               v.Save()
+                       } else if char == 's' {
+                               v.Save(true)
                                return true
                        }
                }
@@ -202,6 +211,7 @@ func (v *View) OpenBuffer(buf *Buffer) {
        v.leftCol = 0
        v.Cursor.ResetSelection()
        v.Relocate()
+       v.Center(false)
        v.messages = make(map[string][]GutterMessage)
 
        v.matches = Match(v)
@@ -221,7 +231,7 @@ func (v *View) CloseBuffer() {
 
 // ReOpen reloads the current buffer
 func (v *View) ReOpen() {
-       if v.CanClose("Continue? (yes, no, save) ") {
+       if v.CanClose("Continue? (y,n,s) ", 'y', 'n', 's') {
                screen.Clear()
                v.Buf.ReOpen()
                v.Relocate()
@@ -231,57 +241,15 @@ func (v *View) ReOpen() {
 
 // HSplit opens a horizontal split with the given buffer
 func (v *View) HSplit(buf *Buffer) bool {
-       origDimensions := [2]int{v.widthPercent, v.heightPercent}
-       origPos := [2]int{v.x, v.y}
-
-       v.heightPercent /= 2
-       v.Resize(screen.Size())
-
-       newView := NewViewWidthHeight(buf, v.widthPercent, v.heightPercent)
-
-       v.splitOrigDimensions = origDimensions
-       v.splitOrigPos = origPos
-       newView.splitOrigDimensions = origDimensions
-       newView.splitOrigPos = origPos
-
-       newView.TabNum = v.TabNum
-       newView.y = v.y + v.height + 1
-       newView.x = v.x
-       tab := tabs[v.TabNum]
-       tab.curView++
-       newView.Num = len(tab.views)
-       newView.splitParent = v
-       v.splitChild = newView
-       tab.views = append(tab.views, newView)
-       newView.Resize(screen.Size())
+       v.splitNode.HSplit(buf)
+       tabs[v.TabNum].Resize()
        return false
 }
 
 // VSplit opens a vertical split with the given buffer
 func (v *View) VSplit(buf *Buffer) bool {
-       origDimensions := [2]int{v.widthPercent, v.heightPercent}
-       origPos := [2]int{v.x, v.y}
-
-       v.widthPercent /= 2
-       v.Resize(screen.Size())
-
-       newView := NewViewWidthHeight(buf, v.widthPercent, v.heightPercent)
-
-       v.splitOrigDimensions = origDimensions
-       v.splitOrigPos = origPos
-       newView.splitOrigDimensions = origDimensions
-       newView.splitOrigPos = origPos
-
-       newView.TabNum = v.TabNum
-       newView.y = v.y
-       newView.x = v.x + v.width
-       tab := tabs[v.TabNum]
-       tab.curView++
-       newView.Num = len(tab.views)
-       newView.splitParent = v
-       v.splitChild = newView
-       tab.views = append(tab.views, newView)
-       newView.Resize(screen.Size())
+       v.splitNode.VSplit(buf)
+       tabs[v.TabNum].Resize()
        return false
 }
 
@@ -290,7 +258,7 @@ func (v *View) VSplit(buf *Buffer) bool {
 func (v *View) Relocate() bool {
        ret := false
        cy := v.Cursor.Y
-       scrollmargin := int(settings["scrollmargin"].(float64))
+       scrollmargin := int(v.Buf.Settings["scrollmargin"].(float64))
        if cy < v.Topline+scrollmargin && cy > scrollmargin-1 {
                v.Topline = cy - scrollmargin
                ret = true
@@ -355,7 +323,7 @@ func (v *View) HandleEvent(event tcell.Event) {
        switch e := event.(type) {
        case *tcell.EventResize:
                // Window resized
-               v.Resize(e.Size())
+               tabs[v.TabNum].Resize()
        case *tcell.EventKey:
                if e.Key() == tcell.KeyRune && (e.Modifiers() == 0 || e.Modifiers() == tcell.ModShift) {
                        // Insert a character
@@ -367,7 +335,7 @@ func (v *View) HandleEvent(event tcell.Event) {
                        v.Cursor.Right()
 
                        for _, pl := range loadedPlugins {
-                               _, err := Call(pl+".onRune", []string{string(e.Rune())})
+                               _, err := Call(pl+".onRune", string(e.Rune()), v)
                                if err != nil && !strings.HasPrefix(err.Error(), "function does not exist") {
                                        TermMessage(err)
                                }
@@ -383,42 +351,31 @@ func (v *View) HandleEvent(event tcell.Event) {
                                        if e.Modifiers() == key.modifiers {
                                                relocate = false
                                                for _, action := range actions {
-                                                       executeAction := true
-                                                       funcName := strings.Split(runtime.FuncForPC(reflect.ValueOf(action).Pointer()).Name(), ".")
-                                                       for _, pl := range loadedPlugins {
-                                                               ret, err := Call(pl+".pre"+funcName[len(funcName)-1], nil)
-                                                               if err != nil && !strings.HasPrefix(err.Error(), "function does not exist") {
-                                                                       TermMessage(err)
-                                                                       continue
-                                                               }
-                                                               if ret == lua.LFalse {
-                                                                       executeAction = false
-                                                               }
-                                                       }
-                                                       if executeAction {
-                                                               relocate = action(v) || relocate
-                                                               for _, pl := range loadedPlugins {
-                                                                       _, err := Call(pl+".on"+funcName[len(funcName)-1], nil)
-                                                                       if err != nil && !strings.HasPrefix(err.Error(), "function does not exist") {
-                                                                               TermMessage(err)
-                                                                               continue
-                                                                       }
-                                                               }
-                                                       }
+                                                       relocate = action(v, true) || relocate
                                                }
                                        }
                                }
                        }
                }
        case *tcell.EventPaste:
+               if !PreActionCall("Paste", v) {
+                       break
+               }
+
+               leadingWS := GetLeadingWhitespace(v.Buf.Line(v.Cursor.Y))
+
                if v.Cursor.HasSelection() {
                        v.Cursor.DeleteSelection()
                        v.Cursor.ResetSelection()
                }
                clip := e.Text()
+               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")
+
+               PostActionCall("Paste", v)
        case *tcell.EventMouse:
                x, y := e.Position()
                x -= v.lineNumOffset - v.leftCol + v.x
@@ -457,8 +414,8 @@ func (v *View) HandleEvent(event tcell.Event) {
                                        v.lastClickTime = time.Now()
 
                                        v.Cursor.OrigSelection[0] = v.Cursor.Loc
-                                       v.Cursor.CurSelection[0] = v.Cursor.Loc
-                                       v.Cursor.CurSelection[1] = v.Cursor.Loc
+                                       v.Cursor.SetSelectionStart(v.Cursor.Loc)
+                                       v.Cursor.SetSelectionEnd(v.Cursor.Loc)
                                }
                                v.mouseReleased = false
                        } else if !v.mouseReleased {
@@ -468,9 +425,13 @@ func (v *View) HandleEvent(event tcell.Event) {
                                } else if v.doubleClick {
                                        v.Cursor.AddWordToSelection()
                                } else {
-                                       v.Cursor.CurSelection[1] = v.Cursor.Loc
+                                       v.Cursor.SetSelectionEnd(v.Cursor.Loc)
                                }
                        }
+               case tcell.Button2:
+                       // Middle mouse button was clicked,
+                       // We should paste primary
+                       v.PastePrimary(true)
                case tcell.ButtonNone:
                        // Mouse event with no click
                        if !v.mouseReleased {
@@ -484,17 +445,17 @@ func (v *View) HandleEvent(event tcell.Event) {
 
                                if !v.doubleClick && !v.tripleClick {
                                        v.MoveToMouseClick(x, y)
-                                       v.Cursor.CurSelection[1] = v.Cursor.Loc
+                                       v.Cursor.SetSelectionEnd(v.Cursor.Loc)
                                }
                                v.mouseReleased = true
                        }
                case tcell.WheelUp:
                        // Scroll up
-                       scrollspeed := int(settings["scrollspeed"].(float64))
+                       scrollspeed := int(v.Buf.Settings["scrollspeed"].(float64))
                        v.ScrollUp(scrollspeed)
                case tcell.WheelDown:
                        // Scroll down
-                       scrollspeed := int(settings["scrollspeed"].(float64))
+                       scrollspeed := int(v.Buf.Settings["scrollspeed"].(float64))
                        v.ScrollDown(scrollspeed)
                }
        }
@@ -502,7 +463,7 @@ func (v *View) HandleEvent(event tcell.Event) {
        if relocate {
                v.Relocate()
        }
-       if settings["syntax"].(bool) {
+       if v.Buf.Settings["syntax"].(bool) {
                v.matches = Match(v)
        }
 }
@@ -538,6 +499,20 @@ func (v *View) ClearAllGutterMessages() {
        }
 }
 
+// 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)
@@ -554,7 +529,7 @@ func (v *View) DisplayView() {
        // We are going to have to offset by that amount
        maxLineLength := len(strconv.Itoa(v.Buf.NumLines))
 
-       if settings["ruler"] == true {
+       if v.Buf.Settings["ruler"] == true {
                // + 1 for the little space after the line number
                v.lineNumOffset = maxLineLength + 1
        } else {
@@ -592,7 +567,7 @@ func (v *View) DisplayView() {
 
                if v.x != 0 {
                        // Draw the split divider
-                       v.drawCell(screenX, screenY, ' ', nil, defStyle.Reverse(true))
+                       v.drawCell(screenX, screenY, '|', nil, defStyle.Reverse(true))
                        screenX++
                }
 
@@ -633,7 +608,7 @@ func (v *View) DisplayView() {
                                                screenX++
                                                v.drawCell(screenX, screenY, '>', nil, gutterStyle)
                                                screenX++
-                                               if v.Cursor.Y == curLineN {
+                                               if v.Cursor.Y == curLineN && !messenger.hasPrompt {
                                                        messenger.Message(msg.msg)
                                                        messenger.gutterMessage = true
                                                }
@@ -653,12 +628,17 @@ func (v *View) DisplayView() {
                        }
                }
 
-               if settings["ruler"] == true {
+               if v.Buf.Settings["ruler"] == true {
                        // Write the line number
                        lineNumStyle := defStyle
                        if style, ok := colorscheme["line-number"]; ok {
                                lineNumStyle = style
                        }
+                       if style, ok := colorscheme["current-line-number"]; ok {
+                               if curLineN == v.Cursor.Y && tabs[curTab].curView == v.Num && !v.Cursor.HasSelection() {
+                                       lineNumStyle = style
+                               }
+                       }
 
                        lineNum := strconv.Itoa(curLineN + 1)
 
@@ -679,10 +659,11 @@ func (v *View) DisplayView() {
                }
 
                // Now we actually draw the line
-               for colN, ch := range line {
+               colN := 0
+               for _, ch := range line {
                        lineStyle := defStyle
 
-                       if settings["syntax"].(bool) {
+                       if v.Buf.Settings["syntax"].(bool) {
                                // Syntax highlighting is enabled
                                highlightStyle = v.matches[viewLine][colN]
                        }
@@ -702,7 +683,7 @@ func (v *View) DisplayView() {
 
                        // 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 {
+                       if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].curView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN {
                                if style, ok := colorscheme["cursor-line"]; ok {
                                        fg, _, _ := style.Decompose()
                                        lineStyle = lineStyle.Background(fg)
@@ -728,19 +709,19 @@ func (v *View) DisplayView() {
                                                lineIndentStyle = style
                                        }
                                }
-                               if settings["cursorline"].(bool) && tabs[curTab].curView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN {
+                               if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].curView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN {
                                        if style, ok := colorscheme["cursor-line"]; ok {
                                                fg, _, _ := style.Decompose()
                                                lineIndentStyle = lineIndentStyle.Background(fg)
                                        }
                                }
                                // Here we get the indent char
-                               indentChar := []rune(settings["indentchar"].(string))
+                               indentChar := []rune(v.Buf.Settings["indentchar"].(string))
                                if screenX-v.x-v.leftCol >= v.lineNumOffset {
                                        v.drawCell(screenX-v.leftCol, screenY, indentChar[0], nil, lineIndentStyle)
                                }
                                // Now the tab has to be displayed as a bunch of spaces
-                               tabSize := int(settings["tabsize"].(float64))
+                               tabSize := int(v.Buf.Settings["tabsize"].(float64))
                                for i := 0; i < tabSize-1; i++ {
                                        screenX++
                                        if screenX-v.x-v.leftCol >= v.lineNumOffset {
@@ -764,6 +745,7 @@ func (v *View) DisplayView() {
                        }
                        charNum = charNum.Move(1, v.Buf)
                        screenX++
+                       colN++
                }
                // Here we are at a newline
 
@@ -786,13 +768,13 @@ func (v *View) DisplayView() {
 
                for i := 0; i < v.width; i++ {
                        lineStyle := defStyle
-                       if settings["cursorline"].(bool) && tabs[curTab].curView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN {
+                       if v.Buf.Settings["cursorline"].(bool) && tabs[curTab].curView == v.Num && !v.Cursor.HasSelection() && v.Cursor.Y == curLineN {
                                if style, ok := colorscheme["cursor-line"]; ok {
                                        fg, _, _ := style.Decompose()
                                        lineStyle = lineStyle.Background(fg)
                                }
                        }
-                       if screenX-v.x-v.leftCol >= v.lineNumOffset {
+                       if screenX-v.x-v.leftCol+i >= v.lineNumOffset {
                                v.drawCell(screenX-v.leftCol+i, screenY, ' ', nil, lineStyle)
                        }
                }
@@ -815,7 +797,12 @@ func (v *View) Display() {
        if v.Num == tabs[curTab].curView {
                v.DisplayCursor()
        }
-       if settings["statusline"].(bool) {
+       _, screenH := screen.Size()
+       if v.Buf.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))
+               }
        }
 }