]> git.lizzy.rs Git - micro.git/blob - internal/action/actions.go
51c7ae957287bf112b41f1b87783975507199088
[micro.git] / internal / action / actions.go
1 package action
2
3 import (
4         "regexp"
5         "runtime"
6         "strings"
7         "time"
8         "unicode/utf8"
9
10         shellquote "github.com/kballard/go-shellquote"
11         "github.com/zyedidia/clipboard"
12         "github.com/zyedidia/micro/internal/buffer"
13         "github.com/zyedidia/micro/internal/config"
14         "github.com/zyedidia/micro/internal/screen"
15         "github.com/zyedidia/micro/internal/shell"
16         "github.com/zyedidia/micro/internal/util"
17         "github.com/zyedidia/tcell"
18 )
19
20 // ScrollUp is not an action
21 func (h *BufPane) ScrollUp(n int) {
22         v := h.GetView()
23         if v.StartLine >= n {
24                 v.StartLine -= n
25                 h.SetView(v)
26         } else {
27                 v.StartLine = 0
28         }
29 }
30
31 // ScrollDown is not an action
32 func (h *BufPane) ScrollDown(n int) {
33         v := h.GetView()
34         if v.StartLine <= h.Buf.LinesNum()-1-n {
35                 v.StartLine += n
36                 h.SetView(v)
37         }
38 }
39
40 // MousePress is the event that should happen when a normal click happens
41 // This is almost always bound to left click
42 func (h *BufPane) MousePress(e *tcell.EventMouse) bool {
43         b := h.Buf
44         mx, my := e.Position()
45         mouseLoc := h.LocFromVisual(buffer.Loc{mx, my})
46         h.Cursor.Loc = mouseLoc
47         if h.mouseReleased {
48                 if b.NumCursors() > 1 {
49                         b.ClearCursors()
50                         h.Relocate()
51                         h.Cursor = h.Buf.GetActiveCursor()
52                         h.Cursor.Loc = mouseLoc
53                 }
54                 if time.Since(h.lastClickTime)/time.Millisecond < config.DoubleClickThreshold && (mouseLoc.X == h.lastLoc.X && mouseLoc.Y == h.lastLoc.Y) {
55                         if h.doubleClick {
56                                 // Triple click
57                                 h.lastClickTime = time.Now()
58
59                                 h.tripleClick = true
60                                 h.doubleClick = false
61
62                                 h.Cursor.SelectLine()
63                                 h.Cursor.CopySelection("primary")
64                         } else {
65                                 // Double click
66                                 h.lastClickTime = time.Now()
67
68                                 h.doubleClick = true
69                                 h.tripleClick = false
70
71                                 h.Cursor.SelectWord()
72                                 h.Cursor.CopySelection("primary")
73                         }
74                 } else {
75                         h.doubleClick = false
76                         h.tripleClick = false
77                         h.lastClickTime = time.Now()
78
79                         h.Cursor.OrigSelection[0] = h.Cursor.Loc
80                         h.Cursor.CurSelection[0] = h.Cursor.Loc
81                         h.Cursor.CurSelection[1] = h.Cursor.Loc
82                 }
83                 h.mouseReleased = false
84         } else if !h.mouseReleased {
85                 if h.tripleClick {
86                         h.Cursor.AddLineToSelection()
87                 } else if h.doubleClick {
88                         h.Cursor.AddWordToSelection()
89                 } else {
90                         h.Cursor.SetSelectionEnd(h.Cursor.Loc)
91                 }
92         }
93
94         h.Cursor.StoreVisualX()
95         h.lastLoc = mouseLoc
96         return true
97 }
98
99 // ScrollUpAction scrolls the view up
100 func (h *BufPane) ScrollUpAction() bool {
101         h.ScrollUp(util.IntOpt(h.Buf.Settings["scrollspeed"]))
102         return true
103 }
104
105 // ScrollDownAction scrolls the view up
106 func (h *BufPane) ScrollDownAction() bool {
107         h.ScrollDown(util.IntOpt(h.Buf.Settings["scrollspeed"]))
108         return true
109 }
110
111 // Center centers the view on the cursor
112 func (h *BufPane) Center() bool {
113         v := h.GetView()
114         v.StartLine = h.Cursor.Y - v.Height/2
115         if v.StartLine+v.Height > h.Buf.LinesNum() {
116                 v.StartLine = h.Buf.LinesNum() - v.Height
117         }
118         if v.StartLine < 0 {
119                 v.StartLine = 0
120         }
121         h.SetView(v)
122         h.Relocate()
123         return true
124 }
125
126 // CursorUp moves the cursor up
127 func (h *BufPane) CursorUp() bool {
128         h.Cursor.Deselect(true)
129         h.Cursor.Up()
130         h.Relocate()
131         return true
132 }
133
134 // CursorDown moves the cursor down
135 func (h *BufPane) CursorDown() bool {
136         h.Cursor.Deselect(true)
137         h.Cursor.Down()
138         h.Relocate()
139         return true
140 }
141
142 // CursorLeft moves the cursor left
143 func (h *BufPane) CursorLeft() bool {
144         if h.Cursor.HasSelection() {
145                 h.Cursor.Deselect(true)
146         } else {
147                 tabstospaces := h.Buf.Settings["tabstospaces"].(bool)
148                 tabmovement := h.Buf.Settings["tabmovement"].(bool)
149                 if tabstospaces && tabmovement {
150                         tabsize := int(h.Buf.Settings["tabsize"].(float64))
151                         line := h.Buf.LineBytes(h.Cursor.Y)
152                         if h.Cursor.X-tabsize >= 0 && util.IsSpaces(line[h.Cursor.X-tabsize:h.Cursor.X]) && util.IsBytesWhitespace(line[0:h.Cursor.X-tabsize]) {
153                                 for i := 0; i < tabsize; i++ {
154                                         h.Cursor.Left()
155                                 }
156                         } else {
157                                 h.Cursor.Left()
158                         }
159                 } else {
160                         h.Cursor.Left()
161                 }
162         }
163         h.Relocate()
164         return true
165 }
166
167 // CursorRight moves the cursor right
168 func (h *BufPane) CursorRight() bool {
169         if h.Cursor.HasSelection() {
170                 h.Cursor.Deselect(false)
171                 h.Cursor.Loc = h.Cursor.Loc.Move(1, h.Buf)
172         } else {
173                 tabstospaces := h.Buf.Settings["tabstospaces"].(bool)
174                 tabmovement := h.Buf.Settings["tabmovement"].(bool)
175                 if tabstospaces && tabmovement {
176                         tabsize := int(h.Buf.Settings["tabsize"].(float64))
177                         line := h.Buf.LineBytes(h.Cursor.Y)
178                         if h.Cursor.X+tabsize < utf8.RuneCount(line) && util.IsSpaces(line[h.Cursor.X:h.Cursor.X+tabsize]) && util.IsBytesWhitespace(line[0:h.Cursor.X]) {
179                                 for i := 0; i < tabsize; i++ {
180                                         h.Cursor.Right()
181                                 }
182                         } else {
183                                 h.Cursor.Right()
184                         }
185                 } else {
186                         h.Cursor.Right()
187                 }
188         }
189
190         h.Relocate()
191         return true
192 }
193
194 // WordRight moves the cursor one word to the right
195 func (h *BufPane) WordRight() bool {
196         h.Cursor.Deselect(false)
197         h.Cursor.WordRight()
198         h.Relocate()
199         return true
200 }
201
202 // WordLeft moves the cursor one word to the left
203 func (h *BufPane) WordLeft() bool {
204         h.Cursor.Deselect(true)
205         h.Cursor.WordLeft()
206         h.Relocate()
207         return true
208 }
209
210 // SelectUp selects up one line
211 func (h *BufPane) SelectUp() bool {
212         if !h.Cursor.HasSelection() {
213                 h.Cursor.OrigSelection[0] = h.Cursor.Loc
214         }
215         h.Cursor.Up()
216         h.Cursor.SelectTo(h.Cursor.Loc)
217         h.Relocate()
218         return true
219 }
220
221 // SelectDown selects down one line
222 func (h *BufPane) SelectDown() bool {
223         if !h.Cursor.HasSelection() {
224                 h.Cursor.OrigSelection[0] = h.Cursor.Loc
225         }
226         h.Cursor.Down()
227         h.Cursor.SelectTo(h.Cursor.Loc)
228         h.Relocate()
229         return true
230 }
231
232 // SelectLeft selects the character to the left of the cursor
233 func (h *BufPane) SelectLeft() bool {
234         loc := h.Cursor.Loc
235         count := h.Buf.End()
236         if loc.GreaterThan(count) {
237                 loc = count
238         }
239         if !h.Cursor.HasSelection() {
240                 h.Cursor.OrigSelection[0] = loc
241         }
242         h.Cursor.Left()
243         h.Cursor.SelectTo(h.Cursor.Loc)
244         h.Relocate()
245         return true
246 }
247
248 // SelectRight selects the character to the right of the cursor
249 func (h *BufPane) SelectRight() bool {
250         loc := h.Cursor.Loc
251         count := h.Buf.End()
252         if loc.GreaterThan(count) {
253                 loc = count
254         }
255         if !h.Cursor.HasSelection() {
256                 h.Cursor.OrigSelection[0] = loc
257         }
258         h.Cursor.Right()
259         h.Cursor.SelectTo(h.Cursor.Loc)
260         h.Relocate()
261         return true
262 }
263
264 // SelectWordRight selects the word to the right of the cursor
265 func (h *BufPane) SelectWordRight() bool {
266         if !h.Cursor.HasSelection() {
267                 h.Cursor.OrigSelection[0] = h.Cursor.Loc
268         }
269         h.Cursor.WordRight()
270         h.Cursor.SelectTo(h.Cursor.Loc)
271         h.Relocate()
272         return true
273 }
274
275 // SelectWordLeft selects the word to the left of the cursor
276 func (h *BufPane) SelectWordLeft() bool {
277         if !h.Cursor.HasSelection() {
278                 h.Cursor.OrigSelection[0] = h.Cursor.Loc
279         }
280         h.Cursor.WordLeft()
281         h.Cursor.SelectTo(h.Cursor.Loc)
282         h.Relocate()
283         return true
284 }
285
286 // StartOfLine moves the cursor to the start of the text of the line
287 func (h *BufPane) StartOfText() bool {
288         h.Cursor.Deselect(true)
289         h.Cursor.StartOfText()
290         h.Relocate()
291         return true
292 }
293
294 // StartOfLine moves the cursor to the start of the line
295 func (h *BufPane) StartOfLine() bool {
296         h.Cursor.Deselect(true)
297         h.Cursor.Start()
298         h.Relocate()
299         return true
300 }
301
302 // EndOfLine moves the cursor to the end of the line
303 func (h *BufPane) EndOfLine() bool {
304         h.Cursor.Deselect(true)
305         h.Cursor.End()
306         h.Relocate()
307         return true
308 }
309
310 // SelectLine selects the entire current line
311 func (h *BufPane) SelectLine() bool {
312         h.Cursor.SelectLine()
313         h.Relocate()
314         return true
315 }
316
317 // SelectToStartOfText selects to the start of the text on the current line
318 func (h *BufPane) SelectToStartOfText() bool {
319         if !h.Cursor.HasSelection() {
320                 h.Cursor.OrigSelection[0] = h.Cursor.Loc
321         }
322         h.Cursor.StartOfText()
323         h.Cursor.SelectTo(h.Cursor.Loc)
324         h.Relocate()
325         return true
326 }
327
328 // SelectToStartOfLine selects to the start of the current line
329 func (h *BufPane) SelectToStartOfLine() bool {
330         if !h.Cursor.HasSelection() {
331                 h.Cursor.OrigSelection[0] = h.Cursor.Loc
332         }
333         h.Cursor.Start()
334         h.Cursor.SelectTo(h.Cursor.Loc)
335         h.Relocate()
336         return true
337 }
338
339 // SelectToEndOfLine selects to the end of the current line
340 func (h *BufPane) SelectToEndOfLine() bool {
341         if !h.Cursor.HasSelection() {
342                 h.Cursor.OrigSelection[0] = h.Cursor.Loc
343         }
344         h.Cursor.End()
345         h.Cursor.SelectTo(h.Cursor.Loc)
346         h.Relocate()
347         return true
348 }
349
350 // ParagraphPrevious moves the cursor to the previous empty line, or beginning of the buffer if there's none
351 func (h *BufPane) ParagraphPrevious() bool {
352         var line int
353         for line = h.Cursor.Y; line > 0; line-- {
354                 if len(h.Buf.LineBytes(line)) == 0 && line != h.Cursor.Y {
355                         h.Cursor.X = 0
356                         h.Cursor.Y = line
357                         break
358                 }
359         }
360         // If no empty line found. move cursor to end of buffer
361         if line == 0 {
362                 h.Cursor.Loc = h.Buf.Start()
363         }
364         h.Relocate()
365         return true
366 }
367
368 // ParagraphNext moves the cursor to the next empty line, or end of the buffer if there's none
369 func (h *BufPane) ParagraphNext() bool {
370         var line int
371         for line = h.Cursor.Y; line < h.Buf.LinesNum(); line++ {
372                 if len(h.Buf.LineBytes(line)) == 0 && line != h.Cursor.Y {
373                         h.Cursor.X = 0
374                         h.Cursor.Y = line
375                         break
376                 }
377         }
378         // If no empty line found. move cursor to end of buffer
379         if line == h.Buf.LinesNum() {
380                 h.Cursor.Loc = h.Buf.End()
381         }
382         h.Relocate()
383         return true
384 }
385
386 // Retab changes all tabs to spaces or all spaces to tabs depending
387 // on the user's settings
388 func (h *BufPane) Retab() bool {
389         h.Buf.Retab()
390         h.Relocate()
391         return true
392 }
393
394 // CursorStart moves the cursor to the start of the buffer
395 func (h *BufPane) CursorStart() bool {
396         h.Cursor.Deselect(true)
397         h.Cursor.X = 0
398         h.Cursor.Y = 0
399         h.Relocate()
400         return true
401 }
402
403 // CursorEnd moves the cursor to the end of the buffer
404 func (h *BufPane) CursorEnd() bool {
405         h.Cursor.Deselect(true)
406         h.Cursor.Loc = h.Buf.End()
407         h.Cursor.StoreVisualX()
408         h.Relocate()
409         return true
410 }
411
412 // SelectToStart selects the text from the cursor to the start of the buffer
413 func (h *BufPane) SelectToStart() bool {
414         if !h.Cursor.HasSelection() {
415                 h.Cursor.OrigSelection[0] = h.Cursor.Loc
416         }
417         h.CursorStart()
418         h.Cursor.SelectTo(h.Buf.Start())
419         h.Relocate()
420         return true
421 }
422
423 // SelectToEnd selects the text from the cursor to the end of the buffer
424 func (h *BufPane) SelectToEnd() bool {
425         if !h.Cursor.HasSelection() {
426                 h.Cursor.OrigSelection[0] = h.Cursor.Loc
427         }
428         h.CursorEnd()
429         h.Cursor.SelectTo(h.Buf.End())
430         h.Relocate()
431         return true
432 }
433
434 // InsertNewline inserts a newline plus possible some whitespace if autoindent is on
435 func (h *BufPane) InsertNewline() bool {
436         // Insert a newline
437         if h.Cursor.HasSelection() {
438                 h.Cursor.DeleteSelection()
439                 h.Cursor.ResetSelection()
440         }
441
442         ws := util.GetLeadingWhitespace(h.Buf.LineBytes(h.Cursor.Y))
443         cx := h.Cursor.X
444         h.Buf.Insert(h.Cursor.Loc, "\n")
445         // h.Cursor.Right()
446
447         if h.Buf.Settings["autoindent"].(bool) {
448                 if cx < len(ws) {
449                         ws = ws[0:cx]
450                 }
451                 h.Buf.Insert(h.Cursor.Loc, string(ws))
452                 // for i := 0; i < len(ws); i++ {
453                 //      h.Cursor.Right()
454                 // }
455
456                 // Remove the whitespaces if keepautoindent setting is off
457                 if util.IsSpacesOrTabs(h.Buf.LineBytes(h.Cursor.Y-1)) && !h.Buf.Settings["keepautoindent"].(bool) {
458                         line := h.Buf.LineBytes(h.Cursor.Y - 1)
459                         h.Buf.Remove(buffer.Loc{X: 0, Y: h.Cursor.Y - 1}, buffer.Loc{X: utf8.RuneCount(line), Y: h.Cursor.Y - 1})
460                 }
461         }
462         h.Cursor.LastVisualX = h.Cursor.GetVisualX()
463         h.Relocate()
464         return true
465 }
466
467 // Backspace deletes the previous character
468 func (h *BufPane) Backspace() bool {
469         if h.Cursor.HasSelection() {
470                 h.Cursor.DeleteSelection()
471                 h.Cursor.ResetSelection()
472         } else if h.Cursor.Loc.GreaterThan(h.Buf.Start()) {
473                 // We have to do something a bit hacky here because we want to
474                 // delete the line by first moving left and then deleting backwards
475                 // but the undo redo would place the cursor in the wrong place
476                 // So instead we move left, save the position, move back, delete
477                 // and restore the position
478
479                 // If the user is using spaces instead of tabs and they are deleting
480                 // whitespace at the start of the line, we should delete as if it's a
481                 // tab (tabSize number of spaces)
482                 lineStart := util.SliceStart(h.Buf.LineBytes(h.Cursor.Y), h.Cursor.X)
483                 tabSize := int(h.Buf.Settings["tabsize"].(float64))
484                 if h.Buf.Settings["tabstospaces"].(bool) && util.IsSpaces(lineStart) && len(lineStart) != 0 && utf8.RuneCount(lineStart)%tabSize == 0 {
485                         loc := h.Cursor.Loc
486                         h.Buf.Remove(loc.Move(-tabSize, h.Buf), loc)
487                 } else {
488                         loc := h.Cursor.Loc
489                         h.Buf.Remove(loc.Move(-1, h.Buf), loc)
490                 }
491         }
492         h.Cursor.LastVisualX = h.Cursor.GetVisualX()
493         h.Relocate()
494         return true
495 }
496
497 // DeleteWordRight deletes the word to the right of the cursor
498 func (h *BufPane) DeleteWordRight() bool {
499         h.SelectWordRight()
500         if h.Cursor.HasSelection() {
501                 h.Cursor.DeleteSelection()
502                 h.Cursor.ResetSelection()
503         }
504         h.Relocate()
505         return true
506 }
507
508 // DeleteWordLeft deletes the word to the left of the cursor
509 func (h *BufPane) DeleteWordLeft() bool {
510         h.SelectWordLeft()
511         if h.Cursor.HasSelection() {
512                 h.Cursor.DeleteSelection()
513                 h.Cursor.ResetSelection()
514         }
515         h.Relocate()
516         return true
517 }
518
519 // Delete deletes the next character
520 func (h *BufPane) Delete() bool {
521         if h.Cursor.HasSelection() {
522                 h.Cursor.DeleteSelection()
523                 h.Cursor.ResetSelection()
524         } else {
525                 loc := h.Cursor.Loc
526                 if loc.LessThan(h.Buf.End()) {
527                         h.Buf.Remove(loc, loc.Move(1, h.Buf))
528                 }
529         }
530         h.Relocate()
531         return true
532 }
533
534 // IndentSelection indents the current selection
535 func (h *BufPane) IndentSelection() bool {
536         if h.Cursor.HasSelection() {
537                 start := h.Cursor.CurSelection[0]
538                 end := h.Cursor.CurSelection[1]
539                 if end.Y < start.Y {
540                         start, end = end, start
541                         h.Cursor.SetSelectionStart(start)
542                         h.Cursor.SetSelectionEnd(end)
543                 }
544
545                 startY := start.Y
546                 endY := end.Move(-1, h.Buf).Y
547                 endX := end.Move(-1, h.Buf).X
548                 tabsize := int(h.Buf.Settings["tabsize"].(float64))
549                 indentsize := len(h.Buf.IndentString(tabsize))
550                 for y := startY; y <= endY; y++ {
551                         if len(h.Buf.LineBytes(y)) > 0 {
552                                 h.Buf.Insert(buffer.Loc{X: 0, Y: y}, h.Buf.IndentString(tabsize))
553                                 if y == startY && start.X > 0 {
554                                         h.Cursor.SetSelectionStart(start.Move(indentsize, h.Buf))
555                                 }
556                                 if y == endY {
557                                         h.Cursor.SetSelectionEnd(buffer.Loc{X: endX + indentsize + 1, Y: endY})
558                                 }
559                         }
560                 }
561                 h.Buf.RelocateCursors()
562
563                 h.Relocate()
564                 return true
565         }
566         return false
567 }
568
569 // OutdentLine moves the current line back one indentation
570 func (h *BufPane) OutdentLine() bool {
571         if h.Cursor.HasSelection() {
572                 return false
573         }
574
575         for x := 0; x < len(h.Buf.IndentString(util.IntOpt(h.Buf.Settings["tabsize"]))); x++ {
576                 if len(util.GetLeadingWhitespace(h.Buf.LineBytes(h.Cursor.Y))) == 0 {
577                         break
578                 }
579                 h.Buf.Remove(buffer.Loc{X: 0, Y: h.Cursor.Y}, buffer.Loc{X: 1, Y: h.Cursor.Y})
580         }
581         h.Buf.RelocateCursors()
582         h.Relocate()
583         return true
584 }
585
586 // OutdentSelection takes the current selection and moves it back one indent level
587 func (h *BufPane) OutdentSelection() bool {
588         if h.Cursor.HasSelection() {
589                 start := h.Cursor.CurSelection[0]
590                 end := h.Cursor.CurSelection[1]
591                 if end.Y < start.Y {
592                         start, end = end, start
593                         h.Cursor.SetSelectionStart(start)
594                         h.Cursor.SetSelectionEnd(end)
595                 }
596
597                 startY := start.Y
598                 endY := end.Move(-1, h.Buf).Y
599                 for y := startY; y <= endY; y++ {
600                         for x := 0; x < len(h.Buf.IndentString(util.IntOpt(h.Buf.Settings["tabsize"]))); x++ {
601                                 if len(util.GetLeadingWhitespace(h.Buf.LineBytes(y))) == 0 {
602                                         break
603                                 }
604                                 h.Buf.Remove(buffer.Loc{X: 0, Y: y}, buffer.Loc{X: 1, Y: y})
605                         }
606                 }
607                 h.Buf.RelocateCursors()
608
609                 h.Relocate()
610                 return true
611         }
612         return false
613 }
614
615 // Autocomplete cycles the suggestions and performs autocompletion if there are suggestions
616 func (h *BufPane) Autocomplete() bool {
617         b := h.Buf
618
619         if h.Cursor.HasSelection() {
620                 return false
621         }
622
623         if !util.IsNonAlphaNumeric(h.Cursor.RuneUnder(h.Cursor.X)) {
624                 // don't autocomplete if cursor is on alpha numeric character (middle of a word)
625                 return false
626         }
627
628         if b.HasSuggestions {
629                 b.CycleAutocomplete(true)
630                 return true
631         }
632         return b.Autocomplete(buffer.BufferComplete)
633 }
634
635 // CycleAutocompleteBack cycles back in the autocomplete suggestion list
636 func (h *BufPane) CycleAutocompleteBack() bool {
637         if h.Cursor.HasSelection() {
638                 return false
639         }
640
641         if h.Buf.HasSuggestions {
642                 h.Buf.CycleAutocomplete(false)
643                 return true
644         }
645         return false
646 }
647
648 // InsertTab inserts a tab or spaces
649 func (h *BufPane) InsertTab() bool {
650         b := h.Buf
651         indent := b.IndentString(util.IntOpt(b.Settings["tabsize"]))
652         tabBytes := len(indent)
653         bytesUntilIndent := tabBytes - (h.Cursor.GetVisualX() % tabBytes)
654         b.Insert(h.Cursor.Loc, indent[:bytesUntilIndent])
655         h.Relocate()
656         return true
657 }
658
659 // SaveAll saves all open buffers
660 func (h *BufPane) SaveAll() bool {
661         for _, b := range buffer.OpenBuffers {
662                 b.Save()
663         }
664         return true
665 }
666
667 // SaveCB performs a save and does a callback at the very end (after all prompts have been resolved)
668 func (h *BufPane) SaveCB(action string, callback func()) bool {
669         // If this is an empty buffer, ask for a filename
670         if h.Buf.Path == "" {
671                 h.SaveAsCB(action, callback)
672         } else {
673                 noPrompt := h.saveBufToFile(h.Buf.Path, action, callback)
674                 if noPrompt {
675                         return true
676                 }
677         }
678         return false
679 }
680
681 // Save the buffer to disk
682 func (h *BufPane) Save() bool {
683         return h.SaveCB("Save", nil)
684 }
685
686 // SaveAsCB performs a save as and does a callback at the very end (after all prompts have been resolved)
687 func (h *BufPane) SaveAsCB(action string, callback func()) bool {
688         InfoBar.Prompt("Filename: ", "", "Save", nil, func(resp string, canceled bool) {
689                 if !canceled {
690                         // the filename might or might not be quoted, so unquote first then join the strings.
691                         args, err := shellquote.Split(resp)
692                         if err != nil {
693                                 InfoBar.Error("Error parsing arguments: ", err)
694                                 return
695                         }
696                         if len(args) == 0 {
697                                 InfoBar.Error("No filename given")
698                                 return
699                         }
700                         filename := strings.Join(args, " ")
701                         noPrompt := h.saveBufToFile(filename, action, callback)
702                         if noPrompt {
703                                 h.completeAction(action)
704                         }
705                 }
706         })
707         return false
708 }
709
710 // SaveAs saves the buffer to disk with the given name
711 func (h *BufPane) SaveAs() bool {
712         return h.SaveAsCB("SaveAs", nil)
713 }
714
715 // This function saves the buffer to `filename` and changes the buffer's path and name
716 // to `filename` if the save is successful
717 func (h *BufPane) saveBufToFile(filename string, action string, callback func()) bool {
718         err := h.Buf.SaveAs(filename)
719         if err != nil {
720                 if strings.HasSuffix(err.Error(), "permission denied") {
721                         InfoBar.YNPrompt("Permission denied. Do you want to save this file using sudo? (y,n)", func(yes, canceled bool) {
722                                 if yes && !canceled {
723                                         err = h.Buf.SaveAsWithSudo(filename)
724                                         if err != nil {
725                                                 InfoBar.Error(err)
726                                         } else {
727                                                 h.Buf.Path = filename
728                                                 h.Buf.SetName(filename)
729                                                 InfoBar.Message("Saved " + filename)
730                                         }
731                                         h.completeAction(action)
732                                 }
733                                 if callback != nil {
734                                         callback()
735                                 }
736                         })
737                         return false
738                 } else {
739                         InfoBar.Error(err)
740                 }
741         } else {
742                 h.Buf.Path = filename
743                 h.Buf.SetName(filename)
744                 InfoBar.Message("Saved " + filename)
745         }
746         if callback != nil {
747                 callback()
748         }
749         return true
750 }
751
752 // Find opens a prompt and searches forward for the input
753 func (h *BufPane) Find() bool {
754         h.searchOrig = h.Cursor.Loc
755         InfoBar.Prompt("Find: ", "", "Find", func(resp string) {
756                 // Event callback
757                 match, found, _ := h.Buf.FindNext(resp, h.Buf.Start(), h.Buf.End(), h.searchOrig, true, true)
758                 if found {
759                         h.Cursor.SetSelectionStart(match[0])
760                         h.Cursor.SetSelectionEnd(match[1])
761                         h.Cursor.OrigSelection[0] = h.Cursor.CurSelection[0]
762                         h.Cursor.OrigSelection[1] = h.Cursor.CurSelection[1]
763                         h.Cursor.GotoLoc(match[1])
764                 } else {
765                         h.Cursor.GotoLoc(h.searchOrig)
766                         h.Cursor.ResetSelection()
767                 }
768                 h.Relocate()
769         }, func(resp string, canceled bool) {
770                 // Finished callback
771                 if !canceled {
772                         match, found, err := h.Buf.FindNext(resp, h.Buf.Start(), h.Buf.End(), h.searchOrig, true, true)
773                         if err != nil {
774                                 InfoBar.Error(err)
775                         }
776                         if found {
777                                 h.Cursor.SetSelectionStart(match[0])
778                                 h.Cursor.SetSelectionEnd(match[1])
779                                 h.Cursor.OrigSelection[0] = h.Cursor.CurSelection[0]
780                                 h.Cursor.OrigSelection[1] = h.Cursor.CurSelection[1]
781                                 h.Cursor.GotoLoc(h.Cursor.CurSelection[1])
782                                 h.lastSearch = resp
783                         } else {
784                                 h.Cursor.ResetSelection()
785                                 InfoBar.Message("No matches found")
786                         }
787                 } else {
788                         h.Cursor.ResetSelection()
789                 }
790                 h.Relocate()
791         })
792
793         return true
794 }
795
796 // FindNext searches forwards for the last used search term
797 func (h *BufPane) FindNext() bool {
798         // If the cursor is at the start of a selection and we search we want
799         // to search from the end of the selection in the case that
800         // the selection is a search result in which case we wouldn't move at
801         // at all which would be bad
802         searchLoc := h.Cursor.Loc
803         if h.Cursor.HasSelection() {
804                 searchLoc = h.Cursor.CurSelection[1]
805         }
806         match, found, err := h.Buf.FindNext(h.lastSearch, h.Buf.Start(), h.Buf.End(), searchLoc, true, true)
807         if err != nil {
808                 InfoBar.Error(err)
809         }
810         if found {
811                 h.Cursor.SetSelectionStart(match[0])
812                 h.Cursor.SetSelectionEnd(match[1])
813                 h.Cursor.OrigSelection[0] = h.Cursor.CurSelection[0]
814                 h.Cursor.OrigSelection[1] = h.Cursor.CurSelection[1]
815                 h.Cursor.Loc = h.Cursor.CurSelection[1]
816         } else {
817                 h.Cursor.ResetSelection()
818         }
819         h.Relocate()
820         return true
821 }
822
823 // FindPrevious searches backwards for the last used search term
824 func (h *BufPane) FindPrevious() bool {
825         // If the cursor is at the end of a selection and we search we want
826         // to search from the beginning of the selection in the case that
827         // the selection is a search result in which case we wouldn't move at
828         // at all which would be bad
829         searchLoc := h.Cursor.Loc
830         if h.Cursor.HasSelection() {
831                 searchLoc = h.Cursor.CurSelection[0]
832         }
833         match, found, err := h.Buf.FindNext(h.lastSearch, h.Buf.Start(), h.Buf.End(), searchLoc, false, true)
834         if err != nil {
835                 InfoBar.Error(err)
836         }
837         if found {
838                 h.Cursor.SetSelectionStart(match[0])
839                 h.Cursor.SetSelectionEnd(match[1])
840                 h.Cursor.OrigSelection[0] = h.Cursor.CurSelection[0]
841                 h.Cursor.OrigSelection[1] = h.Cursor.CurSelection[1]
842                 h.Cursor.Loc = h.Cursor.CurSelection[1]
843         } else {
844                 h.Cursor.ResetSelection()
845         }
846         h.Relocate()
847         return true
848 }
849
850 // Undo undoes the last action
851 func (h *BufPane) Undo() bool {
852         h.Buf.Undo()
853         InfoBar.Message("Undid action")
854         h.Relocate()
855         return true
856 }
857
858 // Redo redoes the last action
859 func (h *BufPane) Redo() bool {
860         h.Buf.Redo()
861         InfoBar.Message("Redid action")
862         h.Relocate()
863         return true
864 }
865
866 // Copy the selection to the system clipboard
867 func (h *BufPane) Copy() bool {
868         if h.Cursor.HasSelection() {
869                 h.Cursor.CopySelection("clipboard")
870                 h.freshClip = true
871                 if clipboard.Unsupported {
872                         InfoBar.Message("Copied selection (install xclip for external clipboard)")
873                 } else {
874                         InfoBar.Message("Copied selection")
875                 }
876         }
877         h.Relocate()
878         return true
879 }
880
881 // CutLine cuts the current line to the clipboard
882 func (h *BufPane) CutLine() bool {
883         h.Cursor.SelectLine()
884         if !h.Cursor.HasSelection() {
885                 return false
886         }
887         if h.freshClip == true {
888                 if h.Cursor.HasSelection() {
889                         if clip, err := clipboard.ReadAll("clipboard"); err != nil {
890                                 // messenger.Error(err)
891                         } else {
892                                 clipboard.WriteAll(clip+string(h.Cursor.GetSelection()), "clipboard")
893                         }
894                 }
895         } else if time.Since(h.lastCutTime)/time.Second > 10*time.Second || h.freshClip == false {
896                 h.Copy()
897         }
898         h.freshClip = true
899         h.lastCutTime = time.Now()
900         h.Cursor.DeleteSelection()
901         h.Cursor.ResetSelection()
902         InfoBar.Message("Cut line")
903         h.Relocate()
904         return true
905 }
906
907 // Cut the selection to the system clipboard
908 func (h *BufPane) Cut() bool {
909         if h.Cursor.HasSelection() {
910                 h.Cursor.CopySelection("clipboard")
911                 h.Cursor.DeleteSelection()
912                 h.Cursor.ResetSelection()
913                 h.freshClip = true
914                 InfoBar.Message("Cut selection")
915
916                 h.Relocate()
917                 return true
918         } else {
919                 return h.CutLine()
920         }
921 }
922
923 // DuplicateLine duplicates the current line or selection
924 func (h *BufPane) DuplicateLine() bool {
925         if h.Cursor.HasSelection() {
926                 h.Buf.Insert(h.Cursor.CurSelection[1], string(h.Cursor.GetSelection()))
927         } else {
928                 h.Cursor.End()
929                 h.Buf.Insert(h.Cursor.Loc, "\n"+string(h.Buf.LineBytes(h.Cursor.Y)))
930                 // h.Cursor.Right()
931         }
932
933         InfoBar.Message("Duplicated line")
934         h.Relocate()
935         return true
936 }
937
938 // DeleteLine deletes the current line
939 func (h *BufPane) DeleteLine() bool {
940         h.Cursor.SelectLine()
941         if !h.Cursor.HasSelection() {
942                 return false
943         }
944         h.Cursor.DeleteSelection()
945         h.Cursor.ResetSelection()
946         InfoBar.Message("Deleted line")
947         h.Relocate()
948         return true
949 }
950
951 // MoveLinesUp moves up the current line or selected lines if any
952 func (h *BufPane) MoveLinesUp() bool {
953         if h.Cursor.HasSelection() {
954                 if h.Cursor.CurSelection[0].Y == 0 {
955                         InfoBar.Message("Cannot move further up")
956                         return false
957                 }
958                 start := h.Cursor.CurSelection[0].Y
959                 end := h.Cursor.CurSelection[1].Y
960                 if start > end {
961                         end, start = start, end
962                 }
963
964                 h.Buf.MoveLinesUp(
965                         start,
966                         end,
967                 )
968                 h.Cursor.CurSelection[1].Y -= 1
969         } else {
970                 if h.Cursor.Loc.Y == 0 {
971                         InfoBar.Message("Cannot move further up")
972                         return false
973                 }
974                 h.Buf.MoveLinesUp(
975                         h.Cursor.Loc.Y,
976                         h.Cursor.Loc.Y+1,
977                 )
978         }
979
980         h.Relocate()
981         return true
982 }
983
984 // MoveLinesDown moves down the current line or selected lines if any
985 func (h *BufPane) MoveLinesDown() bool {
986         if h.Cursor.HasSelection() {
987                 if h.Cursor.CurSelection[1].Y >= h.Buf.LinesNum() {
988                         InfoBar.Message("Cannot move further down")
989                         return false
990                 }
991                 start := h.Cursor.CurSelection[0].Y
992                 end := h.Cursor.CurSelection[1].Y
993                 if start > end {
994                         end, start = start, end
995                 }
996
997                 h.Buf.MoveLinesDown(
998                         start,
999                         end,
1000                 )
1001         } else {
1002                 if h.Cursor.Loc.Y >= h.Buf.LinesNum()-1 {
1003                         InfoBar.Message("Cannot move further down")
1004                         return false
1005                 }
1006                 h.Buf.MoveLinesDown(
1007                         h.Cursor.Loc.Y,
1008                         h.Cursor.Loc.Y+1,
1009                 )
1010         }
1011
1012         h.Relocate()
1013         return true
1014 }
1015
1016 // Paste whatever is in the system clipboard into the buffer
1017 // Delete and paste if the user has a selection
1018 func (h *BufPane) Paste() bool {
1019         clip, _ := clipboard.ReadAll("clipboard")
1020         h.paste(clip)
1021         h.Relocate()
1022         return true
1023 }
1024
1025 // PastePrimary pastes from the primary clipboard (only use on linux)
1026 func (h *BufPane) PastePrimary() bool {
1027         clip, _ := clipboard.ReadAll("primary")
1028         h.paste(clip)
1029         h.Relocate()
1030         return true
1031 }
1032
1033 func (h *BufPane) paste(clip string) {
1034         if h.Buf.Settings["smartpaste"].(bool) {
1035                 if h.Cursor.X > 0 && len(util.GetLeadingWhitespace([]byte(strings.TrimLeft(clip, "\r\n")))) == 0 {
1036                         leadingWS := util.GetLeadingWhitespace(h.Buf.LineBytes(h.Cursor.Y))
1037                         clip = strings.Replace(clip, "\n", "\n"+string(leadingWS), -1)
1038                 }
1039         }
1040
1041         if h.Cursor.HasSelection() {
1042                 h.Cursor.DeleteSelection()
1043                 h.Cursor.ResetSelection()
1044         }
1045
1046         h.Buf.Insert(h.Cursor.Loc, clip)
1047         // h.Cursor.Loc = h.Cursor.Loc.Move(Count(clip), h.Buf)
1048         h.freshClip = false
1049         if clipboard.Unsupported {
1050                 InfoBar.Message("Pasted clipboard (install xclip for external clipboard)")
1051         } else {
1052                 InfoBar.Message("Pasted clipboard")
1053         }
1054 }
1055
1056 // JumpToMatchingBrace moves the cursor to the matching brace if it is
1057 // currently on a brace
1058 func (h *BufPane) JumpToMatchingBrace() bool {
1059         for _, bp := range buffer.BracePairs {
1060                 r := h.Cursor.RuneUnder(h.Cursor.X)
1061                 rl := h.Cursor.RuneUnder(h.Cursor.X - 1)
1062                 if r == bp[0] || r == bp[1] || rl == bp[0] || rl == bp[1] {
1063                         matchingBrace, left := h.Buf.FindMatchingBrace(bp, h.Cursor.Loc)
1064                         if left {
1065                                 h.Cursor.GotoLoc(matchingBrace)
1066                         } else {
1067                                 h.Cursor.GotoLoc(matchingBrace.Move(1, h.Buf))
1068                         }
1069                 }
1070         }
1071
1072         h.Relocate()
1073         return true
1074 }
1075
1076 // SelectAll selects the entire buffer
1077 func (h *BufPane) SelectAll() bool {
1078         h.Cursor.SetSelectionStart(h.Buf.Start())
1079         h.Cursor.SetSelectionEnd(h.Buf.End())
1080         // Put the cursor at the beginning
1081         h.Cursor.X = 0
1082         h.Cursor.Y = 0
1083         h.Relocate()
1084         return true
1085 }
1086
1087 // OpenFile opens a new file in the buffer
1088 func (h *BufPane) OpenFile() bool {
1089         InfoBar.Prompt("> ", "open ", "Open", nil, func(resp string, canceled bool) {
1090                 if !canceled {
1091                         h.HandleCommand(resp)
1092                 }
1093         })
1094         return true
1095 }
1096
1097 // Start moves the viewport to the start of the buffer
1098 func (h *BufPane) Start() bool {
1099         v := h.GetView()
1100         v.StartLine = 0
1101         h.SetView(v)
1102         return true
1103 }
1104
1105 // End moves the viewport to the end of the buffer
1106 func (h *BufPane) End() bool {
1107         // TODO: softwrap problems?
1108         v := h.GetView()
1109         if v.Height > h.Buf.LinesNum() {
1110                 v.StartLine = 0
1111                 h.SetView(v)
1112         } else {
1113                 v.StartLine = h.Buf.LinesNum() - v.Height
1114                 h.SetView(v)
1115         }
1116         return true
1117 }
1118
1119 // PageUp scrolls the view up a page
1120 func (h *BufPane) PageUp() bool {
1121         v := h.GetView()
1122         if v.StartLine > v.Height {
1123                 h.ScrollUp(v.Height)
1124         } else {
1125                 v.StartLine = 0
1126         }
1127         h.SetView(v)
1128         return true
1129 }
1130
1131 // PageDown scrolls the view down a page
1132 func (h *BufPane) PageDown() bool {
1133         v := h.GetView()
1134         if h.Buf.LinesNum()-(v.StartLine+v.Height) > v.Height {
1135                 h.ScrollDown(v.Height)
1136         } else if h.Buf.LinesNum() >= v.Height {
1137                 v.StartLine = h.Buf.LinesNum() - v.Height
1138         }
1139         return true
1140 }
1141
1142 // SelectPageUp selects up one page
1143 func (h *BufPane) SelectPageUp() bool {
1144         if !h.Cursor.HasSelection() {
1145                 h.Cursor.OrigSelection[0] = h.Cursor.Loc
1146         }
1147         h.Cursor.UpN(h.GetView().Height)
1148         h.Cursor.SelectTo(h.Cursor.Loc)
1149         h.Relocate()
1150         return true
1151 }
1152
1153 // SelectPageDown selects down one page
1154 func (h *BufPane) SelectPageDown() bool {
1155         if !h.Cursor.HasSelection() {
1156                 h.Cursor.OrigSelection[0] = h.Cursor.Loc
1157         }
1158         h.Cursor.DownN(h.GetView().Height)
1159         h.Cursor.SelectTo(h.Cursor.Loc)
1160         h.Relocate()
1161         return true
1162 }
1163
1164 // CursorPageUp places the cursor a page up
1165 func (h *BufPane) CursorPageUp() bool {
1166         h.Cursor.Deselect(true)
1167
1168         if h.Cursor.HasSelection() {
1169                 h.Cursor.Loc = h.Cursor.CurSelection[0]
1170                 h.Cursor.ResetSelection()
1171                 h.Cursor.StoreVisualX()
1172         }
1173         h.Cursor.UpN(h.GetView().Height)
1174         h.Relocate()
1175         return true
1176 }
1177
1178 // CursorPageDown places the cursor a page up
1179 func (h *BufPane) CursorPageDown() bool {
1180         h.Cursor.Deselect(false)
1181
1182         if h.Cursor.HasSelection() {
1183                 h.Cursor.Loc = h.Cursor.CurSelection[1]
1184                 h.Cursor.ResetSelection()
1185                 h.Cursor.StoreVisualX()
1186         }
1187         h.Cursor.DownN(h.GetView().Height)
1188         h.Relocate()
1189         return true
1190 }
1191
1192 // HalfPageUp scrolls the view up half a page
1193 func (h *BufPane) HalfPageUp() bool {
1194         v := h.GetView()
1195         if v.StartLine > v.Height/2 {
1196                 h.ScrollUp(v.Height / 2)
1197         } else {
1198                 v.StartLine = 0
1199         }
1200         h.SetView(v)
1201         return true
1202 }
1203
1204 // HalfPageDown scrolls the view down half a page
1205 func (h *BufPane) HalfPageDown() bool {
1206         v := h.GetView()
1207         if h.Buf.LinesNum()-(v.StartLine+v.Height) > v.Height/2 {
1208                 h.ScrollDown(v.Height / 2)
1209         } else {
1210                 if h.Buf.LinesNum() >= v.Height {
1211                         v.StartLine = h.Buf.LinesNum() - v.Height
1212                 }
1213         }
1214         h.SetView(v)
1215         return true
1216 }
1217
1218 // ToggleDiffGutter turns the diff gutter off and on
1219 func (h *BufPane) ToggleDiffGutter() bool {
1220         if !h.Buf.Settings["diffgutter"].(bool) {
1221                 h.Buf.Settings["diffgutter"] = true
1222                 h.Buf.UpdateDiff(func(synchronous bool) {
1223                         screen.DrawChan <- true
1224                 })
1225                 InfoBar.Message("Enabled diff gutter")
1226         } else {
1227                 h.Buf.Settings["diffgutter"] = false
1228                 InfoBar.Message("Disabled diff gutter")
1229         }
1230         return true
1231 }
1232
1233 // ToggleRuler turns line numbers off and on
1234 func (h *BufPane) ToggleRuler() bool {
1235         if !h.Buf.Settings["ruler"].(bool) {
1236                 h.Buf.Settings["ruler"] = true
1237                 InfoBar.Message("Enabled ruler")
1238         } else {
1239                 h.Buf.Settings["ruler"] = false
1240                 InfoBar.Message("Disabled ruler")
1241         }
1242         return true
1243 }
1244
1245 // ClearStatus clears the messenger bar
1246 func (h *BufPane) ClearStatus() bool {
1247         InfoBar.Message("")
1248         return true
1249 }
1250
1251 // ToggleHelp toggles the help screen
1252 func (h *BufPane) ToggleHelp() bool {
1253         if h.Buf.Type == buffer.BTHelp {
1254                 h.Quit()
1255         } else {
1256                 h.openHelp("help")
1257         }
1258         return true
1259 }
1260
1261 // ToggleKeyMenu toggles the keymenu option and resizes all tabs
1262 func (h *BufPane) ToggleKeyMenu() bool {
1263         config.GlobalSettings["keymenu"] = !config.GetGlobalOption("keymenu").(bool)
1264         Tabs.Resize()
1265         return true
1266 }
1267
1268 // ShellMode opens a terminal to run a shell command
1269 func (h *BufPane) ShellMode() bool {
1270         InfoBar.Prompt("$ ", "", "Shell", nil, func(resp string, canceled bool) {
1271                 if !canceled {
1272                         // The true here is for openTerm to make the command interactive
1273                         shell.RunInteractiveShell(resp, true, false)
1274                 }
1275         })
1276
1277         return true
1278 }
1279
1280 // CommandMode lets the user enter a command
1281 func (h *BufPane) CommandMode() bool {
1282         InfoBar.Prompt("> ", "", "Command", nil, func(resp string, canceled bool) {
1283                 if !canceled {
1284                         h.HandleCommand(resp)
1285                 }
1286         })
1287         return true
1288 }
1289
1290 // ToggleOverwriteMode lets the user toggle the text overwrite mode
1291 func (h *BufPane) ToggleOverwriteMode() bool {
1292         h.isOverwriteMode = !h.isOverwriteMode
1293         return true
1294 }
1295
1296 // Escape leaves current mode
1297 func (h *BufPane) Escape() bool {
1298         return true
1299 }
1300
1301 // Quit this will close the current tab or view that is open
1302 func (h *BufPane) Quit() bool {
1303         quit := func() {
1304                 h.Buf.Close()
1305                 if len(MainTab().Panes) > 1 {
1306                         h.Unsplit()
1307                 } else if len(Tabs.List) > 1 {
1308                         Tabs.RemoveTab(h.splitID)
1309                 } else {
1310                         screen.Screen.Fini()
1311                         InfoBar.Close()
1312                         runtime.Goexit()
1313                 }
1314         }
1315         if h.Buf.Modified() {
1316                 if config.GlobalSettings["autosave"].(float64) > 0 {
1317                         // autosave on means we automatically save when quitting
1318                         h.SaveCB("Quit", func() {
1319                                 quit()
1320                         })
1321                 } else {
1322                         InfoBar.YNPrompt("Save changes to "+h.Buf.GetName()+" before closing? (y,n,esc)", func(yes, canceled bool) {
1323                                 if !canceled && !yes {
1324                                         quit()
1325                                 } else if !canceled && yes {
1326                                         h.SaveCB("Quit", func() {
1327                                                 quit()
1328                                         })
1329                                 }
1330                         })
1331                 }
1332         } else {
1333                 quit()
1334         }
1335         return true
1336 }
1337
1338 // QuitAll quits the whole editor; all splits and tabs
1339 func (h *BufPane) QuitAll() bool {
1340         anyModified := false
1341         for _, b := range buffer.OpenBuffers {
1342                 if b.Modified() {
1343                         anyModified = true
1344                         break
1345                 }
1346         }
1347
1348         quit := func() {
1349                 for _, b := range buffer.OpenBuffers {
1350                         b.Close()
1351                 }
1352                 screen.Screen.Fini()
1353                 InfoBar.Close()
1354                 runtime.Goexit()
1355         }
1356
1357         if anyModified {
1358                 InfoBar.YNPrompt("Quit micro? (all open buffers will be closed without saving)", func(yes, canceled bool) {
1359                         if !canceled && yes {
1360                                 quit()
1361                         }
1362                 })
1363         } else {
1364                 quit()
1365         }
1366
1367         return true
1368 }
1369
1370 // AddTab adds a new tab with an empty buffer
1371 func (h *BufPane) AddTab() bool {
1372         width, height := screen.Screen.Size()
1373         iOffset := config.GetInfoBarOffset()
1374         b := buffer.NewBufferFromString("", "", buffer.BTDefault)
1375         tp := NewTabFromBuffer(0, 0, width, height-iOffset, b)
1376         Tabs.AddTab(tp)
1377         Tabs.SetActive(len(Tabs.List) - 1)
1378
1379         return true
1380 }
1381
1382 // PreviousTab switches to the previous tab in the tab list
1383 func (h *BufPane) PreviousTab() bool {
1384         a := Tabs.Active()
1385         Tabs.SetActive(util.Clamp(a-1, 0, len(Tabs.List)-1))
1386
1387         return true
1388 }
1389
1390 // NextTab switches to the next tab in the tab list
1391 func (h *BufPane) NextTab() bool {
1392         a := Tabs.Active()
1393         Tabs.SetActive(util.Clamp(a+1, 0, len(Tabs.List)-1))
1394         return true
1395 }
1396
1397 // VSplitAction opens an empty vertical split
1398 func (h *BufPane) VSplitAction() bool {
1399         h.VSplitBuf(buffer.NewBufferFromString("", "", buffer.BTDefault))
1400
1401         return true
1402 }
1403
1404 // HSplitAction opens an empty horizontal split
1405 func (h *BufPane) HSplitAction() bool {
1406         h.HSplitBuf(buffer.NewBufferFromString("", "", buffer.BTDefault))
1407
1408         return true
1409 }
1410
1411 // Unsplit closes all splits in the current tab except the active one
1412 func (h *BufPane) Unsplit() bool {
1413         tab := h.tab
1414         n := tab.GetNode(h.splitID)
1415         ok := n.Unsplit()
1416         if ok {
1417                 tab.RemovePane(tab.GetPane(h.splitID))
1418                 tab.Resize()
1419                 tab.SetActive(len(tab.Panes) - 1)
1420
1421                 return true
1422         }
1423         return false
1424 }
1425
1426 // NextSplit changes the view to the next split
1427 func (h *BufPane) NextSplit() bool {
1428         a := h.tab.active
1429         if a < len(h.tab.Panes)-1 {
1430                 a++
1431         } else {
1432                 a = 0
1433         }
1434
1435         h.tab.SetActive(a)
1436
1437         return true
1438 }
1439
1440 // PreviousSplit changes the view to the previous split
1441 func (h *BufPane) PreviousSplit() bool {
1442         a := h.tab.active
1443         if a > 0 {
1444                 a--
1445         } else {
1446                 a = len(h.tab.Panes) - 1
1447         }
1448         h.tab.SetActive(a)
1449
1450         return true
1451 }
1452
1453 var curmacro []interface{}
1454 var recording_macro bool
1455
1456 // ToggleMacro toggles recording of a macro
1457 func (h *BufPane) ToggleMacro() bool {
1458         recording_macro = !recording_macro
1459         if recording_macro {
1460                 curmacro = []interface{}{}
1461                 InfoBar.Message("Recording")
1462         } else {
1463                 InfoBar.Message("Stopped recording")
1464         }
1465         h.Relocate()
1466         return true
1467 }
1468
1469 // PlayMacro plays back the most recently recorded macro
1470 func (h *BufPane) PlayMacro() bool {
1471         if recording_macro {
1472                 return false
1473         }
1474         for _, action := range curmacro {
1475                 switch t := action.(type) {
1476                 case rune:
1477                         h.DoRuneInsert(t)
1478                 case func(*BufPane) bool:
1479                         t(h)
1480                 }
1481         }
1482         h.Relocate()
1483         return true
1484 }
1485
1486 // SpawnMultiCursor creates a new multiple cursor at the next occurrence of the current selection or current word
1487 func (h *BufPane) SpawnMultiCursor() bool {
1488         spawner := h.Buf.GetCursor(h.Buf.NumCursors() - 1)
1489         if !spawner.HasSelection() {
1490                 spawner.SelectWord()
1491                 h.multiWord = true
1492                 h.Relocate()
1493                 return true
1494         }
1495
1496         sel := spawner.GetSelection()
1497         searchStart := spawner.CurSelection[1]
1498
1499         search := string(sel)
1500         search = regexp.QuoteMeta(search)
1501         if h.multiWord {
1502                 search = "\\b" + search + "\\b"
1503         }
1504         match, found, err := h.Buf.FindNext(search, h.Buf.Start(), h.Buf.End(), searchStart, true, true)
1505         if err != nil {
1506                 InfoBar.Error(err)
1507         }
1508         if found {
1509                 c := buffer.NewCursor(h.Buf, buffer.Loc{})
1510                 c.SetSelectionStart(match[0])
1511                 c.SetSelectionEnd(match[1])
1512                 c.OrigSelection[0] = c.CurSelection[0]
1513                 c.OrigSelection[1] = c.CurSelection[1]
1514                 c.Loc = c.CurSelection[1]
1515
1516                 h.Buf.AddCursor(c)
1517                 h.Buf.SetCurCursor(h.Buf.NumCursors() - 1)
1518                 h.Buf.MergeCursors()
1519         } else {
1520                 InfoBar.Message("No matches found")
1521         }
1522
1523         h.Relocate()
1524         return true
1525 }
1526
1527 // SpawnMultiCursorUp creates additional cursor, at the same X (if possible), one Y less.
1528 func (h *BufPane) SpawnMultiCursorUp() bool {
1529         if h.Cursor.Y == 0 {
1530                 return false
1531         } else {
1532                 h.Cursor.GotoLoc(buffer.Loc{h.Cursor.X, h.Cursor.Y - 1})
1533                 h.Cursor.Relocate()
1534         }
1535
1536         c := buffer.NewCursor(h.Buf, buffer.Loc{h.Cursor.X, h.Cursor.Y + 1})
1537         h.Buf.AddCursor(c)
1538         h.Buf.SetCurCursor(h.Buf.NumCursors() - 1)
1539         h.Buf.MergeCursors()
1540
1541         h.Relocate()
1542         return true
1543 }
1544
1545 // SpawnMultiCursorUp creates additional cursor, at the same X (if possible), one Y more.
1546 func (h *BufPane) SpawnMultiCursorDown() bool {
1547         if h.Cursor.Y+1 == h.Buf.LinesNum() {
1548                 return false
1549         } else {
1550                 h.Cursor.GotoLoc(buffer.Loc{h.Cursor.X, h.Cursor.Y + 1})
1551                 h.Cursor.Relocate()
1552         }
1553
1554         c := buffer.NewCursor(h.Buf, buffer.Loc{h.Cursor.X, h.Cursor.Y - 1})
1555         h.Buf.AddCursor(c)
1556         h.Buf.SetCurCursor(h.Buf.NumCursors() - 1)
1557         h.Buf.MergeCursors()
1558         h.Relocate()
1559         return true
1560 }
1561
1562 // SpawnMultiCursorSelect adds a cursor at the beginning of each line of a selection
1563 func (h *BufPane) SpawnMultiCursorSelect() bool {
1564         // Avoid cases where multiple cursors already exist, that would create problems
1565         if h.Buf.NumCursors() > 1 {
1566                 return false
1567         }
1568
1569         var startLine int
1570         var endLine int
1571
1572         a, b := h.Cursor.CurSelection[0].Y, h.Cursor.CurSelection[1].Y
1573         if a > b {
1574                 startLine, endLine = b, a
1575         } else {
1576                 startLine, endLine = a, b
1577         }
1578
1579         if h.Cursor.HasSelection() {
1580                 h.Cursor.ResetSelection()
1581                 h.Cursor.GotoLoc(buffer.Loc{0, startLine})
1582
1583                 for i := startLine; i <= endLine; i++ {
1584                         c := buffer.NewCursor(h.Buf, buffer.Loc{0, i})
1585                         c.StoreVisualX()
1586                         h.Buf.AddCursor(c)
1587                 }
1588                 h.Buf.MergeCursors()
1589         } else {
1590                 return false
1591         }
1592         InfoBar.Message("Added cursors from selection")
1593         return true
1594 }
1595
1596 // MouseMultiCursor is a mouse action which puts a new cursor at the mouse position
1597 func (h *BufPane) MouseMultiCursor(e *tcell.EventMouse) bool {
1598         b := h.Buf
1599         mx, my := e.Position()
1600         mouseLoc := h.LocFromVisual(buffer.Loc{X: mx, Y: my})
1601         c := buffer.NewCursor(b, mouseLoc)
1602         b.AddCursor(c)
1603         b.MergeCursors()
1604
1605         return true
1606 }
1607
1608 // SkipMultiCursor moves the current multiple cursor to the next available position
1609 func (h *BufPane) SkipMultiCursor() bool {
1610         lastC := h.Buf.GetCursor(h.Buf.NumCursors() - 1)
1611         sel := lastC.GetSelection()
1612         searchStart := lastC.CurSelection[1]
1613
1614         search := string(sel)
1615         search = regexp.QuoteMeta(search)
1616         if h.multiWord {
1617                 search = "\\b" + search + "\\b"
1618         }
1619
1620         match, found, err := h.Buf.FindNext(search, h.Buf.Start(), h.Buf.End(), searchStart, true, true)
1621         if err != nil {
1622                 InfoBar.Error(err)
1623         }
1624         if found {
1625                 lastC.SetSelectionStart(match[0])
1626                 lastC.SetSelectionEnd(match[1])
1627                 lastC.OrigSelection[0] = lastC.CurSelection[0]
1628                 lastC.OrigSelection[1] = lastC.CurSelection[1]
1629                 lastC.Loc = lastC.CurSelection[1]
1630
1631                 h.Buf.MergeCursors()
1632                 h.Buf.SetCurCursor(h.Buf.NumCursors() - 1)
1633         } else {
1634                 InfoBar.Message("No matches found")
1635         }
1636         h.Relocate()
1637         return true
1638 }
1639
1640 // RemoveMultiCursor removes the latest multiple cursor
1641 func (h *BufPane) RemoveMultiCursor() bool {
1642         if h.Buf.NumCursors() > 1 {
1643                 h.Buf.RemoveCursor(h.Buf.NumCursors() - 1)
1644                 h.Buf.SetCurCursor(h.Buf.NumCursors() - 1)
1645                 h.Buf.UpdateCursors()
1646         } else {
1647                 h.multiWord = false
1648         }
1649         h.Relocate()
1650         return true
1651 }
1652
1653 // RemoveAllMultiCursors removes all cursors except the base cursor
1654 func (h *BufPane) RemoveAllMultiCursors() bool {
1655         h.Buf.ClearCursors()
1656         h.multiWord = false
1657         h.Relocate()
1658         return true
1659 }
1660
1661 // None is an action that does nothing
1662 func (h *BufPane) None() bool {
1663         return true
1664 }