]> git.lizzy.rs Git - micro.git/blobdiff - cmd/micro/micro.go
Correctly detect synatx ft from header
[micro.git] / cmd / micro / micro.go
index 2d2829c82928209585dc282ff7f924226cb1a86f..663b217b1a4d0c11a58b6dd149031d278e3e298b 100644 (file)
@@ -8,15 +8,16 @@ import (
        "path/filepath"
        "runtime"
        "strings"
+       "time"
 
        "github.com/go-errors/errors"
-       "github.com/layeh/gopher-luar"
        "github.com/mattn/go-isatty"
        "github.com/mitchellh/go-homedir"
        "github.com/yuin/gopher-lua"
        "github.com/zyedidia/clipboard"
        "github.com/zyedidia/tcell"
        "github.com/zyedidia/tcell/encoding"
+       "layeh.com/gopher-luar"
 )
 
 const (
@@ -24,6 +25,7 @@ const (
        synLinesDown         = 75  // How many lines down to look to do syntax highlighting
        doubleClickThreshold = 400 // How many milliseconds to wait before a second click is not a double click
        undoThreshold        = 500 // If two events are less than n milliseconds apart, undo both of them
+       autosaveTime         = 8   // Number of seconds to wait before autosaving
 )
 
 var (
@@ -44,7 +46,7 @@ var (
 
        // Version is the version number or commit hash
        // These variables should be set by the linker when compiling
-       Version     = "Unknown"
+       Version     = "0.0.0-unknown"
        CommitHash  = "Unknown"
        CompileDate = "Unknown"
 
@@ -61,7 +63,8 @@ var (
        // Channel of jobs running in the background
        jobs chan JobFunction
        // Event channel
-       events chan tcell.Event
+       events   chan tcell.Event
+       autosave chan bool
 )
 
 // LoadInput determines which files should be loaded into buffers
@@ -81,26 +84,37 @@ func LoadInput() []*Buffer {
        var filename string
        var input []byte
        var err error
-       var buffers []*Buffer
+       args := flag.Args()
+       buffers := make([]*Buffer, 0, len(args))
 
-       if len(flag.Args()) > 0 {
+       if len(args) > 0 {
                // Option 1
                // We go through each file and load it
-               for i := 0; i < len(flag.Args()); i++ {
-                       filename = flag.Args()[i]
+               for i := 0; i < len(args); i++ {
+                       filename = args[i]
 
                        // Check that the file exists
+                       var input *os.File
                        if _, e := os.Stat(filename); e == nil {
                                // If it exists we load it into a buffer
-                               input, err = ioutil.ReadFile(filename)
+                               input, err = os.Open(filename)
+                               stat, _ := input.Stat()
+                               defer input.Close()
                                if err != nil {
                                        TermMessage(err)
-                                       input = []byte{}
-                                       filename = ""
+                                       continue
+                               }
+                               if stat.IsDir() {
+                                       TermMessage("Cannot read", filename, "because it is a directory")
+                                       continue
                                }
                        }
                        // If the file didn't exist, input will be empty, and we'll open an empty buffer
-                       buffers = append(buffers, NewBuffer(input, filename))
+                       if input != nil {
+                               buffers = append(buffers, NewBuffer(input, FSize(input), filename))
+                       } else {
+                               buffers = append(buffers, NewBufferFromString("", filename))
+                       }
                }
        } else if !isatty.IsTerminal(os.Stdin.Fd()) {
                // Option 2
@@ -111,10 +125,10 @@ func LoadInput() []*Buffer {
                        TermMessage("Error reading from stdin: ", err)
                        input = []byte{}
                }
-               buffers = append(buffers, NewBuffer(input, filename))
+               buffers = append(buffers, NewBufferFromString(string(input), filename))
        } else {
                // Option 3, just open an empty buffer
-               buffers = append(buffers, NewBuffer(input, filename))
+               buffers = append(buffers, NewBufferFromString(string(input), filename))
        }
 
        return buffers
@@ -188,6 +202,14 @@ func InitScreen() {
 // RedrawAll redraws everything -- all the views and the messenger
 func RedrawAll() {
        messenger.Clear()
+
+       w, h := screen.Size()
+       for x := 0; x < w; x++ {
+               for y := 0; y < h; y++ {
+                       screen.SetContent(x, y, ' ', nil, defStyle)
+               }
+       }
+
        for _, v := range tabs[curTab].views {
                v.Display()
        }
@@ -196,6 +218,28 @@ func RedrawAll() {
        screen.Show()
 }
 
+func LoadAll() {
+       // Find the user's configuration directory (probably $XDG_CONFIG_HOME/micro)
+       InitConfigDir()
+
+       // Build a list of available Extensions (Syntax, Colorscheme etc.)
+       InitRuntimeFiles()
+
+       // Load the user's settings
+       InitGlobalSettings()
+
+       InitCommands()
+       InitBindings()
+
+       InitColorscheme()
+
+       for _, tab := range tabs {
+               for _, v := range tab.views {
+                       v.Buf.UpdateRules()
+               }
+       }
+}
+
 // Passing -version as a flag will have micro print out the version number
 var flagVersion = flag.Bool("version", false, "Show the version number and information")
 var flagStartPos = flag.String("startpos", "", "LINE,COL to start the cursor at when opening a buffer.")
@@ -203,7 +247,7 @@ var flagStartPos = flag.String("startpos", "", "LINE,COL to start the cursor at
 func main() {
        flag.Usage = func() {
                fmt.Println("Usage: micro [OPTIONS] [FILE]...")
-               fmt.Println("Micro's options can be set via command line arguments for quick adjustments. For real configuration, please use the bindings.json file (see 'help options').\n")
+               fmt.Print("Micro's options can be set via command line arguments for quick adjustments. For real configuration, please use the bindings.json file (see 'help options').\n\n")
                flag.PrintDefaults()
        }
 
@@ -263,9 +307,15 @@ func main() {
        // This is used for sending the user messages in the bottom of the editor
        messenger = new(Messenger)
        messenger.history = make(map[string][]string)
+       InitColorscheme()
 
        // Now we load the input
        buffers := LoadInput()
+       if len(buffers) == 0 {
+               screen.Fini()
+               os.Exit(1)
+       }
+
        for _, buf := range buffers {
                // For each buffer we create a new tab and place the view in that tab
                tab := NewTabFromView(NewView(buf))
@@ -274,9 +324,6 @@ func main() {
                for _, t := range tabs {
                        for _, v := range t.views {
                                v.Center(false)
-                               if globalSettings["syntax"].(bool) {
-                                       v.matches = Match(v)
-                               }
                        }
 
                        t.Resize()
@@ -307,7 +354,7 @@ func main() {
        L.SetGlobal("HandleShellCommand", luar.New(L, HandleShellCommand))
        L.SetGlobal("GetLeadingWhitespace", luar.New(L, GetLeadingWhitespace))
        L.SetGlobal("MakeCompletion", luar.New(L, MakeCompletion))
-       L.SetGlobal("NewBuffer", luar.New(L, NewBuffer))
+       L.SetGlobal("NewBuffer", luar.New(L, NewBufferFromString))
        L.SetGlobal("RuneStr", luar.New(L, func(r rune) string {
                return string(r)
        }))
@@ -315,10 +362,15 @@ func main() {
                return Loc{x, y}
        }))
        L.SetGlobal("JoinPaths", luar.New(L, filepath.Join))
+       L.SetGlobal("DirectoryName", luar.New(L, filepath.Dir))
        L.SetGlobal("configDir", luar.New(L, configDir))
+       L.SetGlobal("Reload", luar.New(L, LoadAll))
+       L.SetGlobal("ByteOffset", luar.New(L, ByteOffset))
+       L.SetGlobal("ToCharPos", luar.New(L, ToCharPos))
 
        // Used for asynchronous jobs
        L.SetGlobal("JobStart", luar.New(L, JobStart))
+       L.SetGlobal("JobSpawn", luar.New(L, JobSpawn))
        L.SetGlobal("JobSend", luar.New(L, JobSend))
        L.SetGlobal("JobStop", luar.New(L, JobStop))
 
@@ -326,29 +378,24 @@ func main() {
        L.SetGlobal("ReadRuntimeFile", luar.New(L, PluginReadRuntimeFile))
        L.SetGlobal("ListRuntimeFiles", luar.New(L, PluginListRuntimeFiles))
        L.SetGlobal("AddRuntimeFile", luar.New(L, PluginAddRuntimeFile))
+       L.SetGlobal("AddRuntimeFilesFromDirectory", luar.New(L, PluginAddRuntimeFilesFromDirectory))
+       L.SetGlobal("AddRuntimeFileFromMemory", luar.New(L, PluginAddRuntimeFileFromMemory))
 
        jobs = make(chan JobFunction, 100)
        events = make(chan tcell.Event, 100)
+       autosave = make(chan bool)
 
        LoadPlugins()
 
-       // Load the syntax files, including the colorscheme
-       LoadSyntaxFiles()
-
        for _, t := range tabs {
                for _, v := range t.views {
-                       v.Buf.FindFileType()
-                       v.Buf.UpdateRules()
-                       for _, pl := range loadedPlugins {
+                       for pl := range loadedPlugins {
                                _, err := Call(pl+".onViewOpen", v)
                                if err != nil && !strings.HasPrefix(err.Error(), "function does not exist") {
                                        TermMessage(err)
                                        continue
                                }
                        }
-                       if v.Buf.Settings["syntax"].(bool) {
-                               v.matches = Match(v)
-                       }
                }
        }
 
@@ -359,6 +406,15 @@ func main() {
                }
        }()
 
+       go func() {
+               for {
+                       time.Sleep(autosaveTime * time.Second)
+                       if globalSettings["autosave"].(bool) {
+                               autosave <- true
+                       }
+               }
+       }()
+
        for {
                // Display everything
                RedrawAll()
@@ -371,11 +427,17 @@ func main() {
                        // If a new job has finished while running in the background we should execute the callback
                        f.function(f.output, f.args...)
                        continue
+               case <-autosave:
+                       CurView().Save(true)
                case event = <-events:
                }
 
                for event != nil {
                        switch e := event.(type) {
+                       case *tcell.EventResize:
+                               for _, t := range tabs {
+                                       t.Resize()
+                               }
                        case *tcell.EventMouse:
                                if e.Buttons() == tcell.Button1 {
                                        // If the user left clicked we check a couple things
@@ -394,8 +456,8 @@ func main() {
                                                // We loop through each view in the current tab and make sure the current view
                                                // is the one being clicked in
                                                for _, v := range tabs[curTab].views {
-                                                       if x >= v.x && x < v.x+v.width && y >= v.y && y < v.y+v.height {
-                                                               tabs[curTab].curView = v.Num
+                                                       if x >= v.x && x < v.x+v.Width && y >= v.y && y < v.y+v.Height {
+                                                               tabs[curTab].CurView = v.Num
                                                        }
                                                }
                                        }
@@ -423,7 +485,6 @@ func main() {
                        default:
                                event = nil
                        }
-
                }
        }
 }