]> git.lizzy.rs Git - micro.git/blobdiff - cmd/micro/command.go
Merge pull request #1135 from whilei/gofmt-2018-Jun-17-00-39
[micro.git] / cmd / micro / command.go
index 028493c9bf524006c7635258917b095a1af1a763..976880d7a159922f9da08560c23e00eee19f03ad 100644 (file)
 package main
 
 import (
-       "bytes"
+       "fmt"
        "os"
-       "os/exec"
-       "os/signal"
+       "path/filepath"
        "regexp"
+       "runtime"
+       "strconv"
        "strings"
+       "unicode/utf8"
+
+       humanize "github.com/dustin/go-humanize"
+       "github.com/zyedidia/micro/cmd/micro/shellwords"
 )
 
-// RunShellCommand executes a shell command and returns the output/error
-func RunShellCommand(input string) (string, error) {
-       inputCmd := strings.Split(input, " ")[0]
-       args := strings.Split(input, " ")[1:]
-
-       cmd := exec.Command(inputCmd, args...)
-       outputBytes := &bytes.Buffer{}
-
-       cmd.Stdout = outputBytes // send output to buffer
-       cmd.Start()
-       err := cmd.Wait() // wait for command to finish
-       outstring := outputBytes.String()
-       return outstring, err
-}
-
-// HandleShellCommand runs the shell command and outputs to DisplayBlock
-func HandleShellCommand(input string, view *View, openTerm bool) {
-       inputCmd := strings.Split(input, " ")[0]
-       if !openTerm {
-               messenger.Message("Running...")
-               go func() {
-                       output, err := RunShellCommand(input)
-                       totalLines := strings.Split(output, "\n")
-
-                       if len(totalLines) < 3 {
-                               if err == nil {
-                                       messenger.Message(inputCmd, " exited without error")
+// A Command contains a action (a function to call) as well as information about how to autocomplete the command
+type Command struct {
+       action      func([]string)
+       completions []Completion
+}
+
+// A StrCommand is similar to a command but keeps the name of the action
+type StrCommand struct {
+       action      string
+       completions []Completion
+}
+
+var commands map[string]Command
+
+var commandActions map[string]func([]string)
+
+func init() {
+       commandActions = map[string]func([]string){
+               "Set":        Set,
+               "SetLocal":   SetLocal,
+               "Show":       Show,
+               "ShowKey":    ShowKey,
+               "Run":        Run,
+               "Bind":       Bind,
+               "Quit":       Quit,
+               "Save":       Save,
+               "Replace":    Replace,
+               "ReplaceAll": ReplaceAll,
+               "VSplit":     VSplit,
+               "HSplit":     HSplit,
+               "Tab":        NewTab,
+               "Help":       Help,
+               "Eval":       Eval,
+               "ToggleLog":  ToggleLog,
+               "Plugin":     PluginCmd,
+               "Reload":     Reload,
+               "Cd":         Cd,
+               "Pwd":        Pwd,
+               "Open":       Open,
+               "TabSwitch":  TabSwitch,
+               "Term":       Term,
+               "MemUsage":   MemUsage,
+               "Retab":      Retab,
+               "Raw":        Raw,
+       }
+}
+
+// InitCommands initializes the default commands
+func InitCommands() {
+       commands = make(map[string]Command)
+
+       defaults := DefaultCommands()
+       parseCommands(defaults)
+}
+
+func parseCommands(userCommands map[string]StrCommand) {
+       for k, v := range userCommands {
+               MakeCommand(k, v.action, v.completions...)
+       }
+}
+
+// MakeCommand is a function to easily create new commands
+// This can be called by plugins in Lua so that plugins can define their own commands
+func MakeCommand(name, function string, completions ...Completion) {
+       action := commandActions[function]
+       if _, ok := commandActions[function]; !ok {
+               // If the user seems to be binding a function that doesn't exist
+               // We hope that it's a lua function that exists and bind it to that
+               action = LuaFunctionCommand(function)
+       }
+
+       commands[name] = Command{action, completions}
+}
+
+// DefaultCommands returns a map containing micro's default commands
+func DefaultCommands() map[string]StrCommand {
+       return map[string]StrCommand{
+               "set":        {"Set", []Completion{OptionCompletion, OptionValueCompletion}},
+               "setlocal":   {"SetLocal", []Completion{OptionCompletion, OptionValueCompletion}},
+               "show":       {"Show", []Completion{OptionCompletion, NoCompletion}},
+               "showkey":    {"ShowKey", []Completion{NoCompletion}},
+               "bind":       {"Bind", []Completion{NoCompletion}},
+               "run":        {"Run", []Completion{NoCompletion}},
+               "quit":       {"Quit", []Completion{NoCompletion}},
+               "save":       {"Save", []Completion{NoCompletion}},
+               "replace":    {"Replace", []Completion{NoCompletion}},
+               "replaceall": {"ReplaceAll", []Completion{NoCompletion}},
+               "vsplit":     {"VSplit", []Completion{FileCompletion, NoCompletion}},
+               "hsplit":     {"HSplit", []Completion{FileCompletion, NoCompletion}},
+               "tab":        {"Tab", []Completion{FileCompletion, NoCompletion}},
+               "help":       {"Help", []Completion{HelpCompletion, NoCompletion}},
+               "eval":       {"Eval", []Completion{NoCompletion}},
+               "log":        {"ToggleLog", []Completion{NoCompletion}},
+               "plugin":     {"Plugin", []Completion{PluginCmdCompletion, PluginNameCompletion}},
+               "reload":     {"Reload", []Completion{NoCompletion}},
+               "cd":         {"Cd", []Completion{FileCompletion}},
+               "pwd":        {"Pwd", []Completion{NoCompletion}},
+               "open":       {"Open", []Completion{FileCompletion}},
+               "tabswitch":  {"TabSwitch", []Completion{NoCompletion}},
+               "term":       {"Term", []Completion{NoCompletion}},
+               "memusage":   {"MemUsage", []Completion{NoCompletion}},
+               "retab":      {"Retab", []Completion{NoCompletion}},
+               "raw":        {"Raw", []Completion{NoCompletion}},
+       }
+}
+
+// CommandEditAction returns a bindable function that opens a prompt with
+// the given string and executes the command when the user presses
+// enter
+func CommandEditAction(prompt string) func(*View, bool) bool {
+       return func(v *View, usePlugin bool) bool {
+               input, canceled := messenger.Prompt("> ", prompt, "Command", CommandCompletion)
+               if !canceled {
+                       HandleCommand(input)
+               }
+               return false
+       }
+}
+
+// CommandAction returns a bindable function which executes the
+// given command
+func CommandAction(cmd string) func(*View, bool) bool {
+       return func(v *View, usePlugin bool) bool {
+               HandleCommand(cmd)
+               return false
+       }
+}
+
+// PluginCmd installs, removes, updates, lists, or searches for given plugins
+func PluginCmd(args []string) {
+       if len(args) >= 1 {
+               switch args[0] {
+               case "install":
+                       installedVersions := GetInstalledVersions(false)
+                       for _, plugin := range args[1:] {
+                               pp := GetAllPluginPackages().Get(plugin)
+                               if pp == nil {
+                                       messenger.Error("Unknown plugin \"" + plugin + "\"")
+                               } else if err := pp.IsInstallable(); err != nil {
+                                       messenger.Error("Error installing ", plugin, ": ", err)
                                } else {
-                                       messenger.Message(inputCmd, " exited with error: ", err)
+                                       for _, installed := range installedVersions {
+                                               if pp.Name == installed.pack.Name {
+                                                       if pp.Versions[0].Version.Compare(installed.Version) == 1 {
+                                                               messenger.Error(pp.Name, " is already installed but out-of-date: use 'plugin update ", pp.Name, "' to update")
+                                                       } else {
+                                                               messenger.Error(pp.Name, " is already installed")
+                                                       }
+                                               }
+                                       }
+                                       pp.Install()
                                }
+                       }
+               case "remove":
+                       removed := ""
+                       for _, plugin := range args[1:] {
+                               // check if the plugin exists.
+                               if _, ok := loadedPlugins[plugin]; ok {
+                                       UninstallPlugin(plugin)
+                                       removed += plugin + " "
+                                       continue
+                               }
+                       }
+                       if !IsSpaces([]byte(removed)) {
+                               messenger.Message("Removed ", removed)
                        } else {
-                               messenger.Message(output)
+                               messenger.Error("The requested plugins do not exist")
+                       }
+               case "update":
+                       UpdatePlugins(args[1:])
+               case "list":
+                       plugins := GetInstalledVersions(false)
+                       messenger.AddLog("----------------")
+                       messenger.AddLog("The following plugins are currently installed:\n")
+                       for _, p := range plugins {
+                               messenger.AddLog(fmt.Sprintf("%s (%s)", p.pack.Name, p.Version))
+                       }
+                       messenger.AddLog("----------------")
+                       if len(plugins) > 0 {
+                               if CurView().Type != vtLog {
+                                       ToggleLog([]string{})
+                               }
                        }
-                       Redraw(view)
-               }()
+               case "search":
+                       plugins := SearchPlugin(args[1:])
+                       messenger.Message(len(plugins), " plugins found")
+                       for _, p := range plugins {
+                               messenger.AddLog("----------------")
+                               messenger.AddLog(p.String())
+                       }
+                       messenger.AddLog("----------------")
+                       if len(plugins) > 0 {
+                               if CurView().Type != vtLog {
+                                       ToggleLog([]string{})
+                               }
+                       }
+               case "available":
+                       packages := GetAllPluginPackages()
+                       messenger.AddLog("Available Plugins:")
+                       for _, pkg := range packages {
+                               messenger.AddLog(pkg.Name)
+                       }
+                       if CurView().Type != vtLog {
+                               ToggleLog([]string{})
+                       }
+               }
        } else {
-               screen.Fini()
+               messenger.Error("Not enough arguments")
+       }
+}
 
-               args := strings.Split(input, " ")[1:]
+// Retab changes all spaces to tabs or all tabs to spaces
+// depending on the user's settings
+func Retab(args []string) {
+       CurView().Retab(true)
+}
 
-               cmd := exec.Command(inputCmd, args...)
-               cmd.Stdin = os.Stdin
-               cmd.Stdout = os.Stdout
-               cmd.Stderr = os.Stderr
+// Raw opens a new raw view which displays the escape sequences micro
+// is receiving in real-time
+func Raw(args []string) {
+       buf := NewBufferFromString("", "Raw events")
 
-               c := make(chan os.Signal, 1)
-               signal.Notify(c, os.Interrupt)
-               go func() {
-                       for range c {
-                               cmd.Process.Kill()
+       view := NewView(buf)
+       view.Buf.Insert(view.Cursor.Loc, "Warning: Showing raw event escape codes\n")
+       view.Buf.Insert(view.Cursor.Loc, "Use CtrlQ to exit\n")
+       view.Type = vtRaw
+       tab := NewTabFromView(view)
+       tab.SetNum(len(tabs))
+       tabs = append(tabs, tab)
+       curTab = len(tabs) - 1
+       if len(tabs) == 2 {
+               for _, t := range tabs {
+                       for _, v := range t.Views {
+                               v.ToggleTabbar()
                        }
-               }()
-
-               cmd.Start()
-               cmd.Wait()
+               }
+       }
+}
 
-               TermMessage("")
+// TabSwitch switches to a given tab either by name or by number
+func TabSwitch(args []string) {
+       if len(args) > 0 {
+               num, err := strconv.Atoi(args[0])
+               if err != nil {
+                       // Check for tab with this name
 
-               InitScreen()
+                       found := false
+                       for _, t := range tabs {
+                               v := t.Views[t.CurView]
+                               if v.Buf.GetName() == args[0] {
+                                       curTab = v.TabNum
+                                       found = true
+                               }
+                       }
+                       if !found {
+                               messenger.Error("Could not find tab: ", err)
+                       }
+               } else {
+                       num--
+                       if num >= 0 && num < len(tabs) {
+                               curTab = num
+                       } else {
+                               messenger.Error("Invalid tab index")
+                       }
+               }
        }
 }
 
-// HandleCommand handles input from the user
-func HandleCommand(input string, view *View) {
-       inputCmd := strings.Split(input, " ")[0]
-       args := strings.Split(input, " ")[1:]
-
-       commands := []string{"set", "quit", "save", "replace", "run"}
-
-       i := 0
-       cmd := inputCmd
-
-       for _, c := range commands {
-               if strings.HasPrefix(c, inputCmd) {
-                       i++
-                       cmd = c
-               }
-       }
-       if i == 1 {
-               inputCmd = cmd
-       }
-
-       switch inputCmd {
-       case "set":
-               SetOption(view, args)
-       case "run":
-               HandleShellCommand(strings.Join(args, " "), view, false)
-       case "quit":
-               if view.CanClose("Quit anyway? (yes, no, save) ") {
-                       screen.Fini()
-                       os.Exit(0)
-               }
-       case "save":
-               view.Save()
-       case "replace":
-               r := regexp.MustCompile(`"[^"\\]*(?:\\.[^"\\]*)*"|[^\s]*`)
-               replaceCmd := r.FindAllString(strings.Join(args, " "), -1)
-               if len(replaceCmd) < 2 {
-                       messenger.Error("Invalid replace statement: " + strings.Join(args, " "))
+// Cd changes the current working directory
+func Cd(args []string) {
+       if len(args) > 0 {
+               path := ReplaceHome(args[0])
+               err := os.Chdir(path)
+               if err != nil {
+                       messenger.Error("Error with cd: ", err)
                        return
                }
+               wd, _ := os.Getwd()
+               for _, tab := range tabs {
+                       for _, view := range tab.Views {
+                               if len(view.Buf.name) == 0 {
+                                       continue
+                               }
 
-               var flags string
-               if len(replaceCmd) == 3 {
-                       // The user included some flags
-                       flags = replaceCmd[2]
+                               view.Buf.Path, _ = MakeRelative(view.Buf.AbsPath, wd)
+                               if p, _ := filepath.Abs(view.Buf.Path); !strings.Contains(p, wd) {
+                                       view.Buf.Path = view.Buf.AbsPath
+                               }
+                       }
                }
+       }
+}
+
+// MemUsage prints micro's memory usage
+// Alloc shows how many bytes are currently in use
+// Sys shows how many bytes have been requested from the operating system
+// NumGC shows how many times the GC has been run
+// Note that Go commonly reserves more memory from the OS than is currently in-use/required
+// Additionally, even if Go returns memory to the OS, the OS does not always claim it because
+// there may be plenty of memory to spare
+func MemUsage(args []string) {
+       var mem runtime.MemStats
+       runtime.ReadMemStats(&mem)
+
+       messenger.Message(fmt.Sprintf("Alloc: %v, Sys: %v, NumGC: %v", humanize.Bytes(mem.Alloc), humanize.Bytes(mem.Sys), mem.NumGC))
+}
 
-               search := string(replaceCmd[0])
-               replace := string(replaceCmd[1])
+// Pwd prints the current working directory
+func Pwd(args []string) {
+       wd, err := os.Getwd()
+       if err != nil {
+               messenger.Message(err.Error())
+       } else {
+               messenger.Message(wd)
+       }
+}
 
-               if strings.HasPrefix(search, `"`) && strings.HasSuffix(search, `"`) {
-                       search = search[1 : len(search)-1]
+// Open opens a new buffer with a given filename
+func Open(args []string) {
+       if len(args) > 0 {
+               filename := args[0]
+               // the filename might or might not be quoted, so unquote first then join the strings.
+               args, err := shellwords.Split(filename)
+               if err != nil {
+                       messenger.Error("Error parsing args ", err)
+                       return
                }
-               if strings.HasPrefix(replace, `"`) && strings.HasSuffix(replace, `"`) {
-                       replace = replace[1 : len(replace)-1]
+               filename = strings.Join(args, " ")
+
+               CurView().Open(filename)
+       } else {
+               messenger.Error("No filename")
+       }
+}
+
+// ToggleLog toggles the log view
+func ToggleLog(args []string) {
+       buffer := messenger.getBuffer()
+       if CurView().Type != vtLog {
+               CurView().HSplit(buffer)
+               CurView().Type = vtLog
+               RedrawAll()
+               buffer.Cursor.Loc = buffer.Start()
+               CurView().Relocate()
+               buffer.Cursor.Loc = buffer.End()
+               CurView().Relocate()
+       } else {
+               CurView().Quit(true)
+       }
+}
+
+// Reload reloads all files (syntax files, colorschemes...)
+func Reload(args []string) {
+       LoadAll()
+}
+
+// Help tries to open the given help page in a horizontal split
+func Help(args []string) {
+       if len(args) < 1 {
+               // Open the default help if the user just typed "> help"
+               CurView().openHelp("help")
+       } else {
+               helpPage := args[0]
+               if FindRuntimeFile(RTHelp, helpPage) != nil {
+                       CurView().openHelp(helpPage)
+               } else {
+                       messenger.Error("Sorry, no help for ", helpPage)
                }
+       }
+}
 
-               search = strings.Replace(search, `\"`, `"`, -1)
-               replace = strings.Replace(replace, `\"`, `"`, -1)
+// VSplit opens a vertical split with file given in the first argument
+// If no file is given, it opens an empty buffer in a new split
+func VSplit(args []string) {
+       if len(args) == 0 {
+               CurView().VSplit(NewBufferFromString("", ""))
+       } else {
+               buf, err := NewBufferFromFile(args[0])
+               if err != nil {
+                       messenger.Error(err)
+                       return
+               }
+               CurView().VSplit(buf)
+       }
+}
+
+// HSplit opens a horizontal split with file given in the first argument
+// If no file is given, it opens an empty buffer in a new split
+func HSplit(args []string) {
+       if len(args) == 0 {
+               CurView().HSplit(NewBufferFromString("", ""))
+       } else {
+               buf, err := NewBufferFromFile(args[0])
+               if err != nil {
+                       messenger.Error(err)
+                       return
+               }
+               CurView().HSplit(buf)
+       }
+}
 
-               // messenger.Error(search + " -> " + replace)
+// Eval evaluates a lua expression
+func Eval(args []string) {
+       if len(args) >= 1 {
+               err := L.DoString(args[0])
+               if err != nil {
+                       messenger.Error(err)
+               }
+       } else {
+               messenger.Error("Not enough arguments")
+       }
+}
 
-               regex, err := regexp.Compile(search)
+// NewTab opens the given file in a new tab
+func NewTab(args []string) {
+       if len(args) == 0 {
+               CurView().AddTab(true)
+       } else {
+               buf, err := NewBufferFromFile(args[0])
                if err != nil {
-                       messenger.Error(err.Error())
+                       messenger.Error(err)
                        return
                }
 
-               found := false
+               tab := NewTabFromView(NewView(buf))
+               tab.SetNum(len(tabs))
+               tabs = append(tabs, tab)
+               curTab = len(tabs) - 1
+               if len(tabs) == 2 {
+                       for _, t := range tabs {
+                               for _, v := range t.Views {
+                                       v.ToggleTabbar()
+                               }
+                       }
+               }
+       }
+}
+
+// Set sets an option
+func Set(args []string) {
+       if len(args) < 2 {
+               messenger.Error("Not enough arguments")
+               return
+       }
+
+       option := args[0]
+       value := args[1]
+
+       SetOptionAndSettings(option, value)
+}
+
+// SetLocal sets an option local to the buffer
+func SetLocal(args []string) {
+       if len(args) < 2 {
+               messenger.Error("Not enough arguments")
+               return
+       }
+
+       option := args[0]
+       value := args[1]
+
+       err := SetLocalOption(option, value, CurView())
+       if err != nil {
+               messenger.Error(err.Error())
+       }
+}
+
+// Show shows the value of the given option
+func Show(args []string) {
+       if len(args) < 1 {
+               messenger.Error("Please provide an option to show")
+               return
+       }
+
+       option := GetOption(args[0])
+
+       if option == nil {
+               messenger.Error(args[0], " is not a valid option")
+               return
+       }
+
+       messenger.Message(option)
+}
+
+// ShowKey displays the action that a key is bound to
+func ShowKey(args []string) {
+       if len(args) < 1 {
+               messenger.Error("Please provide a key to show")
+               return
+       }
+
+       if action, ok := bindingsStr[args[0]]; ok {
+               messenger.Message(action)
+       } else {
+               messenger.Message(args[0], " has no binding")
+       }
+}
+
+// Bind creates a new keybinding
+func Bind(args []string) {
+       if len(args) < 2 {
+               messenger.Error("Not enough arguments")
+               return
+       }
+       BindKey(args[0], args[1])
+}
+
+// Run runs a shell command in the background
+func Run(args []string) {
+       // Run a shell command in the background (openTerm is false)
+       HandleShellCommand(shellwords.Join(args...), false, true)
+}
+
+// Quit closes the main view
+func Quit(args []string) {
+       // Close the main view
+       CurView().Quit(true)
+}
+
+// Save saves the buffer in the main view
+func Save(args []string) {
+       if len(args) == 0 {
+               // Save the main view
+               CurView().Save(true)
+       } else {
+               CurView().Buf.SaveAs(args[0])
+       }
+}
+
+// Replace runs search and replace
+func Replace(args []string) {
+       if len(args) < 2 || len(args) > 4 {
+               // We need to find both a search and replace expression
+               messenger.Error("Invalid replace statement: " + strings.Join(args, " "))
+               return
+       }
+
+       all := false
+       noRegex := false
+
+       if len(args) > 2 {
+               for _, arg := range args[2:] {
+                       switch arg {
+                       case "-a":
+                               all = true
+                       case "-l":
+                               noRegex = true
+                       default:
+                               messenger.Error("Invalid flag: " + arg)
+                               return
+                       }
+               }
+       }
+
+       search := string(args[0])
+
+       if noRegex {
+               search = regexp.QuoteMeta(search)
+       }
+
+       replace := string(args[1])
+       replaceBytes := []byte(replace)
+
+       regex, err := regexp.Compile("(?m)" + search)
+       if err != nil {
+               // There was an error with the user's regex
+               messenger.Error(err.Error())
+               return
+       }
+
+       view := CurView()
+
+       found := 0
+       replaceAll := func() {
+               var deltas []Delta
+               for i := 0; i < view.Buf.LinesNum(); i++ {
+                       newText := regex.ReplaceAllFunc(view.Buf.lines[i].data, func(in []byte) []byte {
+                               found++
+                               return replaceBytes
+                       })
+
+                       from := Loc{0, i}
+                       to := Loc{utf8.RuneCount(view.Buf.lines[i].data), i}
+
+                       deltas = append(deltas, Delta{string(newText), from, to})
+               }
+               view.Buf.MultipleReplace(deltas)
+       }
+
+       if all {
+               replaceAll()
+       } else {
                for {
-                       match := regex.FindStringIndex(view.buf.text)
-                       if match == nil {
+                       // The 'check' flag was used
+                       Search(search, view, true)
+                       if !view.Cursor.HasSelection() {
                                break
                        }
-                       found = true
-                       if strings.Contains(flags, "c") {
-                               //      // The 'check' flag was used
-                               //      if messenger.YesNoPrompt("Perform replacement?") {
-                               //              view.eh.Replace(match[0], match[1], replace)
-                               //      } else {
-                               //              continue
-                               //      }
+                       view.Relocate()
+                       RedrawAll()
+                       choice, canceled := messenger.LetterPrompt("Perform replacement? (y,n,a)", 'y', 'n', 'a')
+                       if canceled {
+                               if view.Cursor.HasSelection() {
+                                       view.Cursor.Loc = view.Cursor.CurSelection[0]
+                                       view.Cursor.ResetSelection()
+                               }
+                               messenger.Reset()
+                               break
+                       } else if choice == 'a' {
+                               if view.Cursor.HasSelection() {
+                                       view.Cursor.Loc = view.Cursor.CurSelection[0]
+                                       view.Cursor.ResetSelection()
+                               }
+                               messenger.Reset()
+                               replaceAll()
+                               break
+                       } else if choice == 'y' {
+                               view.Cursor.DeleteSelection()
+                               view.Buf.Insert(view.Cursor.Loc, replace)
+                               view.Cursor.ResetSelection()
+                               messenger.Reset()
+                               found++
+                       }
+                       if view.Cursor.HasSelection() {
+                               searchStart = view.Cursor.CurSelection[1]
+                       } else {
+                               searchStart = view.Cursor.Loc
                        }
-                       view.eh.Replace(match[0], match[1], replace)
-               }
-               if !found {
-                       messenger.Message("Nothing matched " + search)
                }
-       default:
-               messenger.Error("Unknown command: " + inputCmd)
+       }
+       view.Cursor.Relocate()
+
+       if found > 1 {
+               messenger.Message("Replaced ", found, " occurrences of ", search)
+       } else if found == 1 {
+               messenger.Message("Replaced ", found, " occurrence of ", search)
+       } else {
+               messenger.Message("Nothing matched ", search)
+       }
+}
+
+// ReplaceAll replaces search term all at once
+func ReplaceAll(args []string) {
+       // aliased to Replace command
+       Replace(append(args, "-a"))
+}
+
+// Term opens a terminal in the current view
+func Term(args []string) {
+       var err error
+       if len(args) == 0 {
+               err = CurView().StartTerminal([]string{os.Getenv("SHELL"), "-i"}, true, false, "")
+       } else {
+               err = CurView().StartTerminal(args, true, false, "")
+       }
+       if err != nil {
+               messenger.Error(err)
+       }
+}
+
+// HandleCommand handles input from the user
+func HandleCommand(input string) {
+       args, err := shellwords.Split(input)
+       if err != nil {
+               messenger.Error("Error parsing args ", err)
+               return
+       }
+
+       inputCmd := args[0]
+
+       if _, ok := commands[inputCmd]; !ok {
+               messenger.Error("Unknown command ", inputCmd)
+       } else {
+               commands[inputCmd].action(args[1:])
        }
 }