]> git.lizzy.rs Git - micro.git/commitdiff
Add savehistory option
authorZachary Yedidia <zyedidia@gmail.com>
Sat, 21 Oct 2017 19:31:04 +0000 (15:31 -0400)
committerZachary Yedidia <zyedidia@gmail.com>
Sat, 21 Oct 2017 19:31:04 +0000 (15:31 -0400)
When savehistory is enabled, micro will save your command history across
sessions. This includes command-mode, shell-mode, open, jump-to-line...
Anything that uses up-arrow for history in the infobar.

This option is on by default.

Closes #874

cmd/micro/actions.go
cmd/micro/messenger.go
cmd/micro/micro.go
cmd/micro/runtime.go
cmd/micro/settings.go
runtime/help/options.md

index b9f0bd4bcd83e2af95f75d4ef8322296925d58e9..c2b3b652b643a5ebb169ba543c57d00f74e331ac 100644 (file)
@@ -1708,6 +1708,7 @@ func (v *View) Quit(usePlugin bool) bool {
                                }
 
                                screen.Fini()
+                               messenger.SaveHistory()
                                os.Exit(0)
                        }
                }
@@ -1751,6 +1752,7 @@ func (v *View) QuitAll(usePlugin bool) bool {
                                }
 
                                screen.Fini()
+                               messenger.SaveHistory()
                                os.Exit(0)
                        }
                }
index e9f72e1e454f456f7a31e44ebe174988e4ee14ab..1212725b21a0746e873c636735e43416a6916f14 100644 (file)
@@ -3,6 +3,7 @@ package main
 import (
        "bufio"
        "bytes"
+       "encoding/gob"
        "fmt"
        "os"
        "strconv"
@@ -485,6 +486,55 @@ func (m *Messenger) Display() {
        }
 }
 
+// LoadHistory attempts to load user history from configDir/buffers/history
+// into the history map
+// The savehistory option must be on
+func (m *Messenger) LoadHistory() {
+       if GetGlobalOption("savehistory").(bool) {
+               file, err := os.Open(configDir + "/buffers/history")
+               var decodedMap map[string][]string
+               if err == nil {
+                       decoder := gob.NewDecoder(file)
+                       err = decoder.Decode(&decodedMap)
+                       file.Close()
+               }
+
+               if err != nil {
+                       m.Error("Error loading history:", err)
+                       return
+               }
+
+               m.history = decodedMap
+       } else {
+               m.history = make(map[string][]string)
+       }
+}
+
+// SaveHistory saves the user's command history to configDir/buffers/history
+// only if the savehistory option is on
+func (m *Messenger) SaveHistory() {
+       if GetGlobalOption("savehistory").(bool) {
+               // Don't save history past 100
+               for k, v := range m.history {
+                       if len(v) > 100 {
+                               m.history[k] = v[0:100]
+                       }
+               }
+
+               file, err := os.Create(configDir + "/buffers/history")
+               if err == nil {
+                       encoder := gob.NewEncoder(file)
+
+                       err = encoder.Encode(m.history)
+                       if err != nil {
+                               m.Error("Error saving history:", err)
+                               return
+                       }
+                       file.Close()
+               }
+       }
+}
+
 // A GutterMessage is a message displayed on the side of the editor
 type GutterMessage struct {
        lineNum int
index fb7fe927928a3aeba6769cbd161015a84da71124..35d1721d88f54c4c1cc24138788da0367955c01c 100644 (file)
@@ -342,7 +342,7 @@ func main() {
        // Create a new messenger
        // This is used for sending the user messages in the bottom of the editor
        messenger = new(Messenger)
-       messenger.history = make(map[string][]string)
+       messenger.LoadHistory()
 
        // Now we load the input
        buffers := LoadInput()
index 9d29dbc701184aca38be9a9d3e43e7ff6d296645..802bbc43d64a5494da11367da624b45279e3467f 100644 (file)
@@ -1010,7 +1010,7 @@ func runtimeHelpKeybindingsMd() (*asset, error) {
        return a, nil
 }
 
-var _runtimeHelpOptionsMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x59\x5f\x8f\xe4\x36\x72\x7f\x1e\x7d\x8a\xc2\xf8\x80\x99\x31\x7a\x7a\x8d\x8b\x1f\x0e\xfd\x12\xac\xbd\xc9\x9e\x71\xb1\x7d\x88\xf7\x12\x1f\x72\xc1\x89\x92\x4a\x12\x6f\x28\x52\x47\x52\x3d\xab\x35\x9c\xcf\x1e\x54\x15\x29\xa9\x7b\x7a\x7a\xfd\xd6\x2d\x92\xf5\x8f\xf5\xe7\x57\xc5\x2f\xe0\xc7\x31\x6a\x67\x43\x51\x7c\xaf\x6b\xef\x20\x44\xe7\x31\x80\x32\x06\x5c\x0b\xb1\x47\x98\x02\x7a\xa8\x9d\x6d\x75\x37\x79\x45\x9b\x41\x5b\xd0\x31\x9c\x7d\x6c\xb4\xc7\x3a\x3a\x3f\xef\x33\xad\x29\x60\x60\x12\xe5\xef\x7e\x7e\xf7\xfe\xef\xdf\xfe\xf8\xc3\xbf\x7f\xf7\xfe\xef\x7f\xfc\xf1\xfb\x7f\x7b\x33\xd0\x86\x12\x94\xac\xbf\x46\x08\xde\x06\x18\xd1\x17\xb4\xe7\xe7\x77\xef\x21\x8c\x58\xef\x40\xb7\x2f\x09\x96\xa0\x03\x58\x17\x21\x60\xdc\x41\xf9\x7f\x6f\xf6\x42\x33\x33\xd2\x81\xa4\x69\x88\x61\xb1\x72\x3c\x91\xf9\x8f\xe8\x11\x94\x47\x96\xc8\x89\x55\x20\xf6\x2a\xc2\xec\x26\xa8\x95\x25\xda\x87\xa2\xf8\x12\x4a\x35\x45\xa7\x6d\x83\x36\x96\x07\x78\xee\xd1\x42\xed\x51\x45\x6d\x3b\x50\x60\xf1\x19\x8c\xb6\x6c\x38\xa6\x15\xd4\x80\x20\xdb\x45\xc1\xa4\x75\x01\x00\xa3\xc7\xa3\x76\x53\xe0\x13\xfb\xa2\xb8\x69\xb0\x55\x93\x89\x70\x54\x66\xc2\x03\x94\xce\x96\x0b\xcb\xa0\x8e\x58\x1e\x80\x55\x82\x67\x6d\x0c\xd0\x17\xa6\x55\x4d\x6d\x8b\x1e\xf0\x88\x7e\x86\x3f\x40\xc0\xda\xd9\x26\x00\x9d\x1a\x54\xd4\xb5\x32\x66\xde\x03\x5f\x0b\xb1\x55\x26\x24\x0a\x27\x3b\x84\x9e\xb2\x0d\xfc\x73\xd2\x51\x34\x23\xe5\xf1\x23\xfd\xd3\xb1\x77\x53\x04\x15\x9e\xb4\xed\xf6\xf0\x0d\x12\xa5\x5a\x79\x6c\x27\x23\x7b\xa7\x40\x26\x88\xbd\x0e\xd0\xa2\x8a\x93\xc7\x1d\x54\x58\x2b\xb2\x04\xd1\x19\x74\xd7\x47\x50\x75\xad\xd9\x18\x2b\x47\x68\xb5\xc1\x1d\xd1\x73\x47\xf4\xcf\x5e\xb3\x2d\x9f\xc9\xf8\xcf\x62\x2d\x8f\x50\x61\xeb\xfc\x65\x23\xb5\xad\x58\xa9\x76\xc6\xf9\xda\x99\x69\xb0\xe5\x81\x1c\x85\x65\x59\x5d\x03\xa2\x83\xaf\x76\xc0\xda\x18\x03\x8d\x0e\xa3\x51\x33\x28\x90\x33\xa0\x22\xf1\x2a\x80\x3d\x4d\xb7\x1a\x9b\xb4\xb2\x87\x0f\x89\xd2\x14\x58\x5f\xdd\xb2\x46\xcf\xca\xc6\x7c\xf8\x0f\x5f\x11\xf9\x0a\xa1\xd7\x5d\x6f\x48\x55\x6c\x32\x29\x65\xa0\x75\x1e\xf0\xa3\x1a\x46\x73\x51\x87\xaf\x36\x1a\x84\xba\xc7\x81\xae\xda\x38\xd5\xe4\x10\x59\xbe\x4b\x8c\x36\x14\x85\x64\xb1\xdf\xdd\x8b\x33\xbf\xd3\xfe\xe1\xcd\x66\x5b\x78\x53\x8a\x17\x97\x7b\xf6\x98\x9d\xa8\x10\x30\xb2\x71\x75\x80\xb2\x33\xae\x52\x06\x9c\x35\x73\x79\x49\xa6\xf4\xbf\x2c\x8a\x9b\x1f\x5c\x44\x89\x06\x92\x26\x6f\xdc\xb2\x83\xfb\xf4\x75\x07\xc1\x19\xe5\xf5\x27\x6c\x76\xec\x4c\xcb\xdf\xc7\x58\x3f\x14\x37\x14\x63\x74\x1f\xc6\xd5\x2a\x8a\x1e\x8b\x06\xab\xbf\xc4\x1e\x67\x0e\x47\x1c\x2a\x6c\x1a\xd9\x47\xbc\xc5\xfd\x2b\x6d\x15\x87\xed\xcd\x87\x33\xeb\x50\xa4\x56\x08\x01\x0d\xd6\x44\xbe\xf5\x6e\xe0\x7c\x46\x87\xc9\xcf\x42\xa6\x54\xdc\x9c\xe5\x89\x53\xf3\x6d\x13\x91\x24\xb4\xda\x91\x9e\xd5\xbc\xe8\x4f\x31\x01\xb1\xf7\x88\xc5\xcd\xf6\xec\xa1\x28\x6e\xfe\x9a\xb2\x86\x47\xd5\xc0\xe0\x28\xb9\x54\x14\x3f\xcc\xe9\x2e\x9c\xda\x2e\x49\x94\xae\xbf\x84\x1e\xcd\x08\xd1\x8d\xba\x2e\x6e\xee\x4b\xfe\x97\x96\x1e\xf6\xe2\x27\x93\x0f\xce\x53\xd6\x28\x0f\xab\xc3\x31\x11\x4e\x3e\xcb\x55\xc9\x46\xba\x6e\x49\xdc\x0a\x1a\x4d\xb9\x02\x6d\xba\x3e\xf2\xa1\xfb\xc5\xc5\x68\x63\x83\xad\xb6\xd8\x90\xa2\xe7\xae\x47\x3e\x4f\x97\xc2\x91\xfe\x70\x2d\x61\xa1\x6b\x2d\x3e\x27\x01\x37\x29\xeb\x34\xe1\xa8\xa6\x91\x94\x29\x42\xbb\xe5\x92\x2e\x91\x6e\x95\x09\x28\xd4\x5b\x15\x62\xa3\x7d\x9c\xcb\x83\xc4\x78\x83\x11\xfd\xa0\x2d\x06\x49\x1b\x4f\xda\x36\x54\xc1\x94\xe9\x9c\xd7\xb1\x1f\x92\x0c\x52\x93\xdc\xba\x1f\x74\xcb\x19\x31\xa7\x50\x1d\x60\x70\x8d\xc4\xbe\xf3\xe4\xa8\x7b\xf8\x6f\x4a\x6e\x1b\x9e\x62\xcd\x5d\x22\xf9\x8f\x29\x44\xa1\xab\x88\x52\xe5\x9c\x41\x65\xa1\xcc\x64\x4a\xb9\x0c\x89\x3d\xe2\x5d\x46\x3f\x21\x17\xbf\xe0\xd6\x72\xc0\x75\x76\x50\x4f\x44\xc7\x02\x36\x3a\xee\x89\x5c\xce\x3b\xc4\x7d\x07\xd5\x14\xb3\x83\x6b\xab\xea\x9a\x6a\x26\xee\xe1\xbb\xf6\x85\x78\x6d\xbb\x23\xb2\x76\x63\x7b\x22\xd7\xab\xd0\x67\xbf\x60\x1f\x48\x6a\xab\x4e\x69\x1b\x22\x28\xd9\x91\x6a\xbf\xf3\xba\xd3\x96\x92\x97\x36\x08\xf7\x5c\xe5\xb0\x91\x64\x2f\x89\x32\x9f\xa7\x34\x4d\xd9\x0a\x9b\x87\x35\x57\x8a\xd7\x27\x29\x59\x76\x57\x71\xb9\x33\xb3\xac\x79\x0c\x6e\xf2\x35\x13\xd2\x36\xa2\x0d\xfa\x88\xe9\xbc\x24\x2f\x31\xb5\x99\x39\x7d\x8e\xe8\x46\x83\xf0\xdc\x3b\x8a\x2a\xf2\x1f\x2a\x3f\x29\xae\x7a\x75\xd4\xb6\xe3\xbb\xcc\x1c\x97\x8b\x0c\x51\xc5\x29\x5c\x73\x57\x52\xb0\x75\x7e\x50\xf1\x73\x1e\xc5\x9e\x8a\xb6\xd1\xb6\x0b\x5b\xc7\xa6\xa4\x45\x42\x26\xbb\xb0\x13\xc3\x5f\x7e\xf8\xee\xe7\xd3\x13\x24\x30\x7b\x4c\xf9\x37\x5b\xc2\xbd\x69\x1f\xc8\x9c\x1e\x55\x80\xc6\x85\x17\x7b\x89\x54\xf9\x37\xcf\x7b\x6b\x6f\x5a\xb6\x2e\x42\x7c\x76\x30\xba\x10\x74\x65\x50\x74\x09\x89\xf9\x6a\x39\xe2\x54\x4e\x56\x7f\x2c\x39\x0b\x97\x8d\x0b\x65\x72\x29\x89\x31\xd1\x57\xa4\xaf\xf0\x2c\x32\x49\x7d\xce\x9f\x74\x36\x15\x4a\x0a\x09\x49\x54\x62\x50\x12\x56\x7c\x20\x9e\x70\x7e\x59\x26\xdd\x64\x1a\x30\xfa\x89\x63\xbc\xee\x95\xed\x70\xcd\x55\x59\x5d\xca\x3e\x1c\x8c\x39\xcb\x84\xa8\xfc\x06\x55\xbd\x96\x17\x58\xc7\xe5\x16\xe3\x3c\x52\xca\x09\x18\xc3\x92\x4d\xe8\x5b\xbe\x9c\x33\xcf\xdf\x9f\x97\x45\xb6\x38\xd5\xa6\xd7\x0b\x23\xeb\x7a\xd9\x6c\x14\xe2\x0d\x8e\xa2\x52\xb6\x16\x47\x0f\x29\xd5\xab\x23\x16\x37\x6e\x44\xcb\xe2\xea\xce\x3a\x8f\xb5\x0a\x24\xf0\x88\x9e\x2e\x04\xe8\xef\xa3\xb6\x81\x82\x21\xea\x23\x55\x32\xe5\xeb\x1e\x2f\xbb\x6f\x46\x3e\x82\x2f\xeb\x5e\xf9\xad\xee\x5b\xd4\x49\x6b\xaa\x8e\xe8\x2f\xd1\x81\x4c\xa5\x75\x15\x93\x40\xab\x2a\x93\xe0\x3b\x5f\x52\x2a\x27\x95\x8b\xd1\x0d\x39\x3f\x50\x96\x72\x5e\x1c\x18\x06\x0c\x41\x75\xb8\xb8\xed\xe8\x29\xa4\x9b\x17\xe1\xfc\x59\xd8\x91\x63\xf2\x09\x71\x7c\x09\xb5\x05\x64\xae\xdf\x77\xf0\xdc\xeb\x88\x61\x54\x35\x12\x79\xc5\x60\x81\x2e\x7b\x76\x93\x30\x67\x60\x29\xfc\x37\x51\xad\xdb\x15\xe1\x0e\xee\xb8\x94\x1f\x8b\x1f\xa3\xe8\xbc\x40\x5e\x3b\x03\xdd\x88\x97\x56\x09\x80\xf7\x6d\xd8\xc6\x8c\x54\x85\x79\xe8\xd9\xdf\x2b\x02\x4a\x06\xd9\x06\xdf\xac\xa0\x81\xce\xae\xe2\x13\xb5\x53\x05\xd2\x19\x81\xaf\xc9\xfa\x9c\x5e\xb1\x8d\x80\xc3\x18\xe7\xab\x9e\xf0\x84\xf3\x80\x76\x2a\x0f\x0b\xbc\x65\xa5\x94\x75\x8f\x21\xce\x06\xe1\x09\x67\xa0\x1d\x97\xaf\x34\xd4\x1e\xd1\xee\x81\x00\x9f\x68\xaa\x22\x7c\x70\x5d\x67\xf0\x4f\x38\x7f\x4f\xe7\x74\x80\xca\x4d\xb6\xe1\x5a\xf6\xd6\xc4\xc7\xae\xdc\x82\x22\x4a\x18\x19\x77\xaf\x89\x43\xdb\x6c\xb7\x35\x77\xec\xe1\x83\xa3\x2d\xe4\x6a\x7c\x64\x07\x41\x0f\xa3\x99\x89\x5c\xa6\x4c\x4c\xfe\x62\x2b\x6d\x9b\x3f\xe1\x2b\xfe\x92\x55\x1f\xdc\xc4\xa1\xf4\xdc\x23\xb5\x0c\x74\x54\xfc\x18\x78\x05\xc2\x34\x8e\xce\xe7\x82\x7e\xf2\x2d\x09\x4b\x9b\x1b\x6e\x44\xa6\x30\x71\x40\x93\xc4\xe2\x32\xca\xac\x31\xcf\x02\x3b\xaa\x34\x18\x42\xa2\x84\x47\xb4\x91\x8a\x85\xae\xfb\x5c\xa4\x25\x0d\x72\x79\xdb\x34\x0c\x94\x03\xdd\x38\x0b\x34\x3d\x61\x40\x35\x98\xf0\xa2\x6b\x65\x51\xea\xcb\xbd\x6e\xb9\x31\x82\x10\x7a\xf2\x6c\xa2\x97\x5a\x89\x13\xc0\xbc\xd2\xe9\xc9\x17\x45\xb8\xe4\xd5\x92\xd1\x6a\xa3\xc7\xca\x29\x2f\x69\x7d\xc8\xfd\x60\xe3\x90\x7b\xa4\xab\x88\x6e\x34\x53\xa7\x2d\x25\x6f\x8b\x26\x94\x07\x42\xed\x91\x50\xc3\x82\xae\xf3\xda\x82\x71\xe5\x08\x0c\xca\xaa\x8e\x40\x02\xf7\xac\x9c\xce\xb8\x44\x52\x49\xe7\x1d\x04\x80\xf7\xf0\x36\x13\x60\xac\x24\x8e\xa0\xc0\xe8\x10\xc9\x1e\x77\x1e\x47\x17\x28\xdf\xcc\x77\xf0\x8f\xe0\x6c\x02\xf3\x6c\x6f\x6e\x45\x45\x1c\x18\x30\xaa\x46\x45\x95\x70\x01\x09\xd6\xe9\x23\xda\xc4\x6b\x0f\x3f\xa1\x58\xab\xfc\xb3\x88\xf7\xbd\x88\x57\x52\xdb\xcc\x49\xc2\xb5\xd9\x57\x93\xd2\x27\x88\x9c\xe5\x66\xf8\x42\xe9\x92\x4a\xa8\x76\xf6\x92\xe1\xfa\x18\xc7\x70\x78\xf3\xa6\xd3\xb1\x9f\xaa\x7d\xed\x06\x69\x33\x1e\x25\x6d\xbe\x11\xda\x8f\x49\xe9\xad\x91\x59\xd5\x4b\x16\x5e\x8d\xa0\x31\xdc\x5d\xb3\x33\x69\x20\xa6\xbe\x60\xe7\xd5\x94\xc4\x22\xe8\x10\x03\x83\x65\x28\x69\x65\x4f\xd6\x2d\xa5\x6a\x9d\x5b\x37\xac\xe6\x25\xb2\x0a\x28\x1b\x1b\xcc\xb6\x7d\xbd\xb4\xf8\x21\x7a\xa5\x8d\xb6\xdd\x73\xb8\xd6\x11\x44\xaf\x07\xc8\x5b\x37\x99\x31\x50\xba\x42\x67\x3e\xd3\x18\xf8\xc9\xa0\xdf\xe4\x3e\xce\x9e\x76\x1a\x2a\xf4\x57\xf1\x5f\x50\x47\x94\x56\xa9\x3c\x80\xc7\x81\xba\xce\x5c\xd8\x36\x6d\x14\xe7\x61\x15\x22\x44\x3d\xe0\x5a\xdb\xe9\x33\x55\x75\x81\x4b\x5c\xfc\xa6\x08\x3a\xa6\xc9\xc5\x52\x66\x68\xcf\x7a\x8a\x31\xf7\xd5\x84\x46\x52\x4d\xb6\x71\xb9\xf6\xc5\x73\x60\xbc\x03\x5a\xe6\x78\x51\x47\x6c\x38\x07\x81\x6a\x23\x7a\x99\x5a\x19\x17\xf2\x78\x85\x1d\xc2\xe5\x3c\x94\x56\x6c\x03\x1e\x59\xaa\x34\x83\x59\x86\x5d\x54\x7c\x99\xb8\xb6\xdd\x75\x19\x6b\xef\x8c\x19\x94\xef\xb4\x2d\x0f\xa0\x06\x37\xd9\x98\x81\x72\xb8\x00\xff\x02\x32\x64\x4f\x93\xa6\x0a\x8d\x7b\xce\xa0\x59\xac\x7c\x89\xdd\xbf\x6c\x99\x85\x11\xb1\xb9\xc0\x8b\x88\xf3\x06\xf6\x4d\x67\x31\xff\xe5\xd4\x7c\x89\xec\xef\x13\x59\xd7\xc6\x67\xaf\x46\xc2\x4e\x52\xbb\x93\x7f\x7a\x35\x66\xda\x54\x07\x79\x3c\xe8\x1c\x18\x67\x3b\xe2\xd6\xea\xb8\x20\x62\xa9\x9b\x57\x2d\x35\x1a\x1d\xa5\xda\xe6\x0b\x55\xd0\x3b\xaf\x3f\x51\x6c\x19\xe0\x75\xba\xcb\xd4\x67\xed\xb2\x30\x3a\x52\x2d\xc9\xdd\x17\x5b\x2c\x27\xa8\x0c\x66\xf9\xec\xbf\x5e\x73\x70\xda\xe0\x75\xd7\xc7\x95\xf7\x91\x10\x4d\xfd\xdb\x39\x4b\x29\x21\xd6\x4c\x28\x43\x86\xdf\x2e\xc3\x52\xf9\xcf\xd0\x89\x2c\x5c\x01\x9a\x57\xac\x9b\x69\xcf\x36\xaa\x8f\xd4\xbc\x4d\xde\x06\x90\xbf\x74\x39\xe4\x09\x6d\x7b\xf5\xe8\x54\x0f\xe4\x4e\x79\xe8\x27\xa8\x37\x4c\x23\xfa\x3c\xfd\x1e\x06\x65\x9b\x3d\xfc\x48\xa8\x21\x44\x08\x73\x88\x38\x84\x05\xe6\xdc\x86\xa9\x71\xb7\xd4\x07\x31\xd4\xb4\xf0\xcd\x4f\xef\xc8\x76\x09\x05\xdc\x36\x4e\x85\xfd\xed\x09\x10\x4e\x4b\xf5\x14\xa2\x1b\xf4\xa7\xd4\x68\xe5\x6e\x97\x87\xd5\x74\x4b\x1c\xb5\xdc\xd9\xca\xb0\x29\x4c\x97\x34\x21\xf6\xa2\x4b\x54\x15\x61\xd9\x41\x00\xb3\x55\x47\xdd\x51\x27\xbc\xa6\x50\xb6\x2d\x76\xda\x5a\x6e\x50\x72\xe8\xa8\x90\xf0\xa6\x0c\xdd\xa2\xaa\x18\xe7\xde\xe3\xbe\xdb\x0b\x3a\x66\x00\xf2\xf5\x86\x92\xb3\x35\x3e\x9c\xa2\x7b\x96\x9d\xc1\x84\xb2\x73\xec\xb9\xa1\xe2\x5a\x4a\x72\x85\xe8\xe4\x70\x9a\x9f\x5c\x8d\x15\xda\xaf\x3f\x9d\x34\x72\x51\x55\x40\xdf\x18\x11\xa6\xd1\xe6\x05\x12\x5f\xaf\x04\x16\x86\x07\xee\xce\x93\xe8\x1b\x8c\xc5\x6a\x5e\x93\x02\xfd\x10\x75\x34\xec\xaf\x3c\x15\x0b\x0b\xb8\x94\xe1\x10\xe5\x37\xbf\xe0\xae\xbb\x00\xbc\x7d\x01\x8a\xd4\x0e\x56\xf3\x0a\xb4\x38\xf0\xa4\x52\x5c\x55\x7f\x0a\x38\x7a\x3d\x28\x3f\x97\x70\x9f\x3d\x82\x1a\x6a\x67\xe1\x4b\xab\x3f\x3e\xbc\x2a\xcf\xd9\x44\x22\xc5\x6b\x22\xb6\xc1\x7f\x19\x83\xca\x9c\x94\x1f\x3b\xd2\x10\xb2\x52\xf5\x53\xe7\x09\xe0\xa7\xcb\xcd\xe8\x10\x54\xdb\x62\x1d\x73\xea\xb1\x84\x7d\xb6\x90\x52\x3a\xb3\x6f\xa3\x37\x8f\xdf\xb2\x37\xf3\xcf\xff\x7a\x35\xf4\x1e\x1f\x1f\x8b\xe2\x5d\x5a\x49\x10\x26\x3d\xbc\xac\xef\x2c\x5c\xa8\x28\xd7\x9f\xa0\x04\x29\x5f\xe5\x2f\xbf\x96\x50\xde\x3f\x94\x50\xfe\xcf\xff\x96\x50\xde\xde\x96\x50\xde\xdd\x95\x7b\xf8\xb3\x77\x47\xdd\x2c\x33\x4c\x76\xc1\x95\x5a\x62\x76\x6d\x1c\x14\x93\x20\xe5\x61\xd3\xda\xec\x4e\xde\x5e\x30\x42\x70\xc3\xfa\x56\x54\xa9\xb0\x0e\x48\xf2\xd4\x61\x0f\x6f\x17\x83\x0d\x6e\xe0\x7e\xf5\xfc\x8a\x54\x25\xc3\x9b\x41\x3d\xa1\x60\x5a\x9e\x9a\x8b\xb7\x32\x78\x9b\x63\xef\x2c\x7f\x9d\xd5\x60\xf2\x78\x29\x80\xc7\x4e\xf9\xc6\x10\xcc\x77\xad\xb8\x62\x1a\x64\x04\x1e\x0a\xbe\x2c\xbe\xdb\x6e\x0b\x2a\xec\xd5\x51\x4b\x3f\x41\x69\xf3\x04\x5f\x7c\x26\x69\x1a\x6a\xee\x09\x2c\xbd\x3d\xb9\x18\xfa\xbc\xcc\x07\x05\xe6\x64\x70\xf2\xe2\x56\x16\x22\xec\xa1\xaf\x02\x48\xe6\xf8\xd6\xce\x59\x30\x52\x8a\x8c\x9f\xdc\x35\xcf\x20\x72\xc4\x31\x0e\xda\x4c\x92\xa1\x38\x9f\xf2\x2f\x26\xe2\x2e\x22\xb8\x1d\x91\x42\xf6\xed\x9d\x18\xf1\xf4\x41\x52\x20\x5e\xa2\x5f\xe4\x62\xb8\x4c\x18\xc4\xce\x77\xab\x8d\xa3\x7a\xc2\x4b\x74\x38\x81\x93\xf4\xd4\x39\x5a\x47\x51\x5b\x0c\xaa\xee\xb5\xc5\xa5\xf1\xe5\x98\xe4\xf2\x73\x22\x64\xd2\x87\xcf\x40\x3a\xb3\x2f\x8a\xe2\x8b\x2f\xe0\xbd\x4c\x53\xc8\x39\xa4\xc7\xcb\x27\x8b\xe2\xaf\xeb\xc3\x25\x1d\x0f\x2b\x55\x40\xcd\xa4\x64\x14\x63\x66\xca\x1e\x7c\xda\xcc\x7b\xf8\x0f\xf9\x01\x03\xaa\xfc\x04\x4a\x31\x94\x47\x64\xcf\xce\xde\xc5\x13\x53\x9f\xbf\xb7\x9e\x5a\xb8\x4c\x13\x01\x15\x97\x87\x37\xca\x68\x45\x4a\x8f\xe9\x1a\xcf\xa7\x72\x3f\x25\x6e\x2a\xe7\x84\x55\x56\x1d\xb6\x8f\x50\xfc\xc6\x54\x2c\x21\xb9\xbe\xde\xf2\x6b\x07\x5d\x1a\x53\x24\xf4\xff\x61\x7d\x62\x91\x17\xb6\x0d\x96\xde\x0c\xa5\x76\x49\x60\xdc\x0c\x14\x37\x3b\xd9\x4e\x05\x6d\xe4\xf9\x05\x31\x5d\x85\x4c\x46\xdc\x71\x64\x97\x01\x23\x7f\x28\xb7\x45\x87\xbe\x96\xfb\xa2\xf8\x2e\xbd\xf9\x9c\x19\x6b\x19\x16\xd2\xcd\xf1\x43\x2d\xf5\x12\xc4\x25\x27\x9a\xc4\x83\xa2\x48\x20\xcb\xcc\x86\x2a\x48\x85\x3d\xf0\x3b\xb6\x96\x47\x04\x99\x11\xa4\x91\x44\xaf\xc2\x79\x1d\x26\xe7\xa6\x2e\xce\x98\x94\x50\xf0\x63\x8d\x63\x84\xf7\xae\xe0\xff\x62\x89\xa5\x18\xc3\xd7\x97\xb7\xff\xe7\x54\xcd\xf2\xe5\x50\x14\x65\x59\x92\x22\xc5\x2f\xc5\xcd\xed\x97\xfb\xce\xdd\x1e\xe0\x97\xe2\xe6\xe6\x76\xcb\xf9\xf6\x00\xdc\xb3\x15\x37\xbf\xee\x78\x9b\xaf\xb6\xdb\xf4\x27\xbc\x3d\xc0\xef\xd3\xea\xd9\xc1\xe8\x27\xcc\x9f\x65\xe3\xd7\xc5\xaf\xc4\xb5\x28\xde\x86\xcd\x5b\x3d\x82\x40\xda\x7f\x4e\x3a\x22\xa0\x0a\xb3\x34\x1f\x2f\xed\x98\x9f\xad\x5f\xdc\x45\x21\x13\xe7\xff\x0f\x00\x00\xff\xff\x1d\xf9\xb0\x16\x25\x21\x00\x00")
+var _runtimeHelpOptionsMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x5a\x5f\x8f\xe4\xb8\x71\x7f\x1e\x7d\x8a\xc2\x9c\x81\x99\x39\xf4\xf4\x1e\x9c\x7d\x30\xfa\x25\xd8\xbb\x4d\xd6\x0b\x67\x6f\x8d\xdc\x3a\x39\x23\x0e\x2c\x4a\x2a\xb5\xe8\xa1\x48\x99\xa4\xba\x57\x7b\xb8\x7c\xf6\xa0\xaa\x48\x49\xdd\xd3\xd3\x7b\x6f\xd3\x22\x59\xff\x58\x7f\x7e\x55\x9c\x6f\xe0\xe3\x10\xb5\xb3\xa1\x28\x3e\xe8\xda\x3b\x08\xd1\x79\x0c\xa0\x8c\x01\xd7\x42\xec\x10\xc6\x80\x1e\x6a\x67\x5b\xbd\x1f\xbd\xa2\xcd\xa0\x2d\xe8\x18\xce\x3e\x36\xda\x63\x1d\x9d\x9f\xb6\x99\xd6\x18\x30\x30\x89\xf2\x77\x3f\xbf\x7d\xf7\xf7\x1f\x3e\xfe\xf8\xef\xef\xdf\xfd\xfd\x8f\x1f\x3f\xfc\xdb\xab\x9e\x36\x94\xa0\x64\xfd\x25\x42\xf0\x26\xc0\x80\xbe\xa0\x3d\x3f\xbf\x7d\x07\x61\xc0\x7a\x03\xba\x7d\x4e\xb0\x04\x1d\xc0\xba\x08\x01\xe3\x06\xca\xff\x7b\xb5\x15\x9a\x99\x91\x0e\x24\x4d\x43\x0c\x8b\x85\xe3\x89\xcc\x7f\x44\x8f\xa0\x3c\xb2\x44\x4e\xac\x02\xb1\x53\x11\x26\x37\x42\xad\x2c\xd1\xde\x15\xc5\xb7\x50\xaa\x31\x3a\x6d\x1b\xb4\xb1\xdc\xc1\xb1\x43\x0b\xb5\x47\x15\xb5\xdd\x83\x02\x8b\x47\x30\xda\xb2\xe1\x98\x56\x50\x3d\x82\x6c\x17\x05\x93\xd6\x05\x00\x0c\x1e\x0f\xda\x8d\x81\x4f\x6c\x8b\xe2\xa6\xc1\x56\x8d\x26\xc2\x41\x99\x11\x77\x50\x3a\x5b\xce\x2c\x83\x3a\x60\xb9\x03\x56\x09\x8e\xda\x18\xa0\x2f\x4c\xab\x1a\xdb\x16\x3d\xe0\x01\xfd\x04\x7f\x80\x80\xb5\xb3\x4d\x00\x3a\xd5\xab\xa8\x6b\x65\xcc\xb4\x05\xbe\x16\x62\xab\x4c\x48\x14\x4e\x76\x08\x3d\x65\x1b\xf8\xe7\xa8\xa3\x68\x46\xca\xe3\x67\xfa\xa5\x63\xe7\xc6\x08\x2a\x3c\x69\xbb\xdf\xc2\xf7\x48\x94\x6a\xe5\xb1\x1d\x8d\xec\x1d\x03\x99\x20\x76\x3a\x40\x8b\x2a\x8e\x1e\x37\x50\x61\xad\xc8\x12\x44\xa7\xd7\xfb\x2e\x82\xaa\x6b\xcd\xc6\x58\x38\x42\xab\x0d\x6e\x88\x9e\x3b\xa0\x3f\x7a\xcd\xb6\x3c\x92\xf1\x8f\x62\x2d\x8f\x50\x61\xeb\xfc\x65\x23\xb5\xad\x58\xa9\x76\xc6\xf9\xda\x99\xb1\xb7\xe5\x8e\x1c\x85\x65\x59\x5c\x03\xa2\x83\xef\x36\xc0\xda\x18\x03\x8d\x0e\x83\x51\x13\x28\x90\x33\xa0\x22\xf1\x2a\x80\x3d\x4d\xb7\x1a\x9b\xb4\xb2\x85\x4f\x89\xd2\x18\x58\x5f\xdd\xb2\x46\x47\x65\x63\x3e\xfc\x87\xef\x88\x7c\x85\xd0\xe9\x7d\x67\x48\x55\x6c\x32\x29\x65\xa0\x75\x1e\xf0\xb3\xea\x07\x73\x51\x87\xef\x56\x1a\x84\xba\xc3\x9e\xae\xda\x38\xd5\xe4\x10\x99\xbf\x4b\x8c\x36\x14\x85\x64\xb1\xdf\xdd\x8b\x33\xbf\xd5\xfe\xe1\xd5\x6a\x5b\x78\x55\x8a\x17\x97\x5b\xf6\x98\x8d\xa8\x10\x30\xb2\x71\x75\x80\x72\x6f\x5c\xa5\x0c\x38\x6b\xa6\xf2\x92\x4c\xe9\x77\x59\x14\x37\x3f\xba\x88\x12\x0d\x24\x4d\xde\xb8\x66\x07\xf7\xe9\xeb\x06\x82\x33\xca\xeb\x2f\xd8\x6c\xd8\x99\xe6\x9f\x8f\xb1\x7e\x28\x6e\x28\xc6\xe8\x3e\x8c\xab\x55\x14\x3d\x66\x0d\x16\x7f\x89\x1d\x4e\x1c\x8e\xd8\x57\xd8\x34\xb2\x8f\x78\x8b\xfb\x57\xda\x2a\x0e\xdb\x9b\x4f\x67\xd6\xa1\x48\xad\x10\x02\x1a\xac\x89\x7c\xeb\x5d\xcf\xf9\x8c\x0e\x93\x9f\x85\x4c\xa9\xb8\x39\xcb\x13\xa7\xe6\x5b\x27\x22\x49\x68\xb5\x23\x3d\xab\x69\xd6\x9f\x62\x02\x62\xe7\x11\x8b\x9b\xf5\xd9\x5d\x51\xdc\xfc\x35\x65\x0d\x8f\xaa\x81\xde\x51\x72\xa9\x28\x7e\x98\xd3\x5d\x38\xb5\x5d\x92\x28\x5d\x7f\x09\x1d\x9a\x01\xa2\x1b\x74\x5d\xdc\xdc\x97\xfc\x2b\x2d\x3d\x6c\xc5\x4f\x46\x1f\x9c\xa7\xac\x51\xee\x16\x87\x63\x22\x9c\x7c\xe6\xab\x92\x8d\x74\xdd\x92\xb8\x15\x34\x9a\x72\x05\xda\x74\x7d\xe4\x43\xf7\xb3\x8b\xd1\xc6\x06\x5b\x6d\xb1\x21\x45\xcf\x5d\x8f\x7c\x9e\x2e\x85\x23\xfd\xe1\x5a\xc2\x42\xd7\x5a\x3c\x26\x01\x57\x29\xeb\x34\xe1\xa8\xa6\x91\x94\x29\x42\xbb\xf9\x92\x2e\x91\x6e\x95\x09\x28\xd4\x5b\x15\x62\xa3\x7d\x9c\xca\x9d\xc4\x78\x83\x11\x7d\xaf\x2d\x06\x49\x1b\x4f\xda\x36\x54\xc1\x94\xd9\x3b\xaf\x63\xd7\x27\x19\xa4\x26\xb9\x65\x3f\xe8\x96\x33\x62\x4e\xa1\x3a\x40\xef\x1a\x89\x7d\xe7\xc9\x51\xb7\xf0\xdf\x94\xdc\x56\x3c\xc5\x9a\x9b\x44\xf2\x1f\x63\x88\x42\x57\x11\xa5\xca\x39\x83\xca\x42\x99\xc9\x94\x72\x19\x12\x7b\xc4\xbb\x8c\x7e\x44\x2e\x7e\xc1\x2d\xe5\x80\xeb\x6c\xaf\x9e\x88\x8e\x05\x6c\x74\xdc\x12\xb9\x9c\x77\x88\xfb\x06\xaa\x31\x66\x07\xd7\x56\xd5\x35\xd5\x4c\xdc\xc2\xfb\xf6\x99\x78\x6d\xbb\x21\xb2\x76\x65\x7b\x22\xd7\xa9\xd0\x65\xbf\x60\x1f\x48\x6a\xab\xbd\xd2\x36\x44\x50\xb2\x23\xd5\x7e\xe7\xf5\x5e\x5b\x4a\x5e\xda\x20\xdc\x73\x95\xc3\x46\x92\xbd\x24\xca\x7c\x9e\xd2\x34\x65\x2b\x6c\x1e\x96\x5c\x29\x5e\x9f\xa4\x64\xd9\x5d\xc5\xe5\xce\x4c\xb2\xe6\x31\xb8\xd1\xd7\x4c\x48\xdb\x88\x36\xe8\x03\xa6\xf3\x92\xbc\xc4\xd4\x66\xe2\xf4\x39\xa0\x1b\x0c\xc2\xb1\x73\x14\x55\xe4\x3f\x54\x7e\x52\x5c\x75\xea\xa0\xed\x9e\xef\x32\x73\x9c\x2f\x32\x44\x15\xc7\x70\xcd\x5d\x49\xc1\xd6\xf9\x5e\xc5\xaf\x79\x14\x7b\x2a\xda\x46\xdb\x7d\x58\x3b\x36\x25\x2d\x12\x32\xd9\x85\x9d\x18\xfe\xf2\xe3\xfb\x9f\x4f\x4f\x90\xc0\xec\x31\xe5\xdf\x6c\x09\xf7\xa6\x7d\x20\x73\x7a\x54\x01\x1a\x17\x9e\xed\x25\x52\xe5\xdf\x3c\xef\xad\xbd\x69\xd9\xba\x08\xf1\xe8\x60\x70\x21\xe8\xca\xa0\xe8\x12\x12\xf3\xc5\x72\xc4\xa9\x1c\xad\xfe\x5c\x72\x16\x2e\x1b\x17\xca\xe4\x52\x12\x63\xa2\xaf\x48\x5f\xe1\x59\x64\x92\xfa\x9c\x3f\xe9\x6c\x2a\x94\x14\x12\x92\xa8\xc4\xa0\x24\xac\xf8\x40\x3c\xe1\xfc\xbc\x4c\xba\xd1\x34\x60\xf4\x13\xc7\x78\xdd\x29\xbb\xc7\x25\x57\x65\x75\x29\xfb\x70\x30\xe6\x2c\x13\xa2\xf2\x2b\x54\xf5\x52\x5e\x60\x1d\xe7\x5b\x8c\xd3\x40\x29\x27\x60\x0c\x73\x36\xa1\x6f\xf9\x72\xce\x3c\x7f\x7b\x5e\x16\xd9\xe2\x54\x9b\x5e\x2e\x8c\xac\xeb\x65\xb3\x51\x88\x37\x38\x88\x4a\xd9\x5a\x1c\x3d\xa4\x54\xa7\x0e\x58\xdc\xb8\x01\x2d\x8b\xab\xf7\xd6\x79\xac\x55\x20\x81\x07\xf4\x74\x21\x40\x3f\x1f\xb5\x0d\x14\x0c\x51\x1f\xa8\x92\x29\x5f\x77\x78\xd9\x7d\x33\xf2\x11\x7c\x59\x77\xca\xaf\x75\x5f\xa3\x4e\x5a\x53\x75\x44\x7f\x89\x0e\x64\x2a\xad\xab\x98\x04\x5a\x55\x99\x04\xdf\xf9\x92\x52\x39\xa9\x5c\x8c\xae\xcf\xf9\x81\xb2\x94\xf3\xe2\xc0\xd0\x63\x08\x6a\x8f\xb3\xdb\x0e\x9e\x42\xba\x79\x16\xce\x5f\x85\x1d\x39\x26\x9f\x10\x87\xe7\x50\x5b\x40\xe6\xf2\x7d\x03\xc7\x4e\x47\x0c\x83\xaa\x91\xc8\x2b\x06\x0b\x74\xd9\x93\x1b\x85\x39\x03\x4b\xe1\xbf\x8a\x6a\xdd\x2e\x08\xb7\x77\x87\xb9\xfc\x58\xfc\x1c\x45\xe7\x19\xf2\xda\x09\xe8\x46\xbc\xb4\x4a\x00\xbc\x6f\xc5\x36\x66\xa4\x2a\xcc\x43\xc7\xfe\x5e\x11\x50\x32\xc8\x36\xf8\x7e\x01\x0d\x74\x76\x11\x9f\xa8\x9d\x2a\x90\xce\x08\x7c\x4d\xd6\xe7\xf4\x8a\x6d\x04\xec\x87\x38\x5d\xf5\x84\x27\x9c\x7a\xb4\x63\xb9\x9b\xe1\x2d\x2b\xa5\xac\x7b\x0c\x71\x32\x08\x4f\x38\x01\xed\xb8\x7c\xa5\xa1\xf6\x88\x76\x0b\x04\xf8\x44\x53\x15\xe1\x93\xdb\xef\x0d\xfe\x09\xa7\x0f\x74\x4e\x07\xa8\xdc\x68\x1b\xae\x65\x6f\x4c\x7c\xdc\x97\x6b\x50\x44\x09\x23\xe3\xee\x25\x71\x68\x9b\xed\xb6\xe4\x8e\x2d\x7c\x72\xb4\x85\x5c\x8d\x8f\x6c\x20\xe8\x7e\x30\x13\x91\xcb\x94\x89\xc9\x5f\x6c\xa5\x6d\xf3\x27\x7c\xc1\x5f\xb2\xea\xbd\x1b\x39\x94\x8e\x1d\x52\xcb\x40\x47\xc5\x8f\x81\x57\x20\x8c\xc3\xe0\x7c\x2e\xe8\x27\xdf\x92\xb0\xb4\xb9\xe1\x46\x64\x0c\x23\x07\x34\x49\x2c\x2e\xa3\xcc\x12\xf3\x2c\xb0\xa3\x4a\x83\x21\x24\x4a\x78\x40\x1b\xa9\x58\xe8\xba\xcb\x45\x5a\xd2\x20\x97\xb7\x55\xc3\x40\x39\xd0\x0d\x93\x40\xd3\x13\x06\x54\x83\x09\x2f\xba\x56\x16\xa5\xbe\xdc\xeb\x96\x1b\x23\x08\xa1\x23\xcf\x26\x7a\xa9\x95\x38\x01\xcc\x0b\x9d\x8e\x7c\x51\x84\x4b\x5e\x2d\x19\xad\x36\x7a\xa8\x9c\xf2\x92\xd6\xfb\xdc\x0f\x36\x0e\xb9\x47\xba\x8a\xe8\x06\x33\xee\xb5\xa5\xe4\x6d\xd1\x84\x72\x47\xa8\x3d\x12\x6a\x98\xd1\x75\x5e\x9b\x31\xae\x1c\x81\x5e\x59\xb5\x27\x90\xc0\x3d\x2b\xa7\x33\x2e\x91\x54\xd2\x79\x07\x01\xe0\x2d\xbc\xc9\x04\x18\x2b\x89\x23\x28\x30\x3a\x44\xb2\xc7\x9d\xc7\xc1\x05\xca\x37\xd3\x1d\xfc\x23\x38\x9b\xc0\x3c\xdb\x9b\x5b\x51\x11\x07\x7a\x8c\xaa\x51\x51\x25\x5c\x40\x82\xed\xf5\x01\x6d\xe2\xb5\x85\x9f\x50\xac\x55\xfe\x59\xc4\xfb\x20\xe2\x95\xd4\x36\x73\x92\x70\x6d\xf6\xd5\xa4\xf4\x09\x22\x67\xb9\x19\xbe\x50\xba\xa4\x12\xaa\x9d\xbd\x64\xb8\x2e\xc6\x21\xec\x5e\xbd\xda\xeb\xd8\x8d\xd5\xb6\x76\xbd\xb4\x19\x8f\x92\x36\x5f\x09\xed\xc7\xa4\xf4\xda\xc8\xac\xea\x25\x0b\x2f\x46\xd0\x18\xee\xae\xd9\x99\x34\x10\x53\x5f\xb0\xf3\x62\x4a\x62\x11\x74\x88\x81\xc1\x32\x94\xb4\xb2\x25\xeb\x96\x52\xb5\xce\xad\x1b\x16\xf3\x12\x59\x05\x94\x8d\x0d\x66\xdb\xbe\x5c\x5a\x7c\x1f\xbd\xd2\x46\xdb\xfd\x31\x5c\xeb\x08\xa2\xd7\x3d\xe4\xad\xab\xcc\x18\x28\x5d\xa1\x33\x5f\x69\x0c\xfc\x68\xd0\xaf\x72\x1f\x67\x4f\x3b\xf6\x15\xfa\xab\xf8\x2f\xa8\x03\x4a\xab\x54\xee\xc0\x63\x4f\x5d\x67\x2e\x6c\xab\x36\x8a\xf3\xb0\x0a\x11\xa2\xee\x71\xa9\xed\xf4\x99\xaa\xba\xc0\x25\x2e\x7e\x63\x04\x1d\xd3\xe4\x62\x2e\x33\xb4\x67\x39\xc5\x98\xfb\x6a\x42\x23\xa9\x3a\x4d\xfd\xfe\xb4\x16\xab\x76\x7d\x4f\xf1\x9b\x96\xa0\xc2\x78\x44\xb4\x50\x1b\x27\xc5\xd1\x36\xe0\xf1\x91\xb8\x25\x48\xcc\xe6\xde\x16\xf4\x27\x5c\x33\xc1\x68\x1b\x97\x0b\x6d\x3c\x47\xe1\x1b\xa0\x65\x0e\x4e\x75\xc0\x86\x13\x1e\xa8\x36\xa2\x97\x11\x99\x71\x21\xcf\x72\xd8\xfb\x5c\x4e\x7a\x69\x85\xa5\x62\x13\xa4\x81\xcf\x3c\x59\xa3\x4a\xcf\xc4\xb5\xdd\x5f\x37\x48\xed\x9d\x31\xbd\xf2\x7b\x6d\xcb\x1d\xa8\xde\x8d\x36\x66\x54\x1e\x2e\x60\xcd\x80\xdc\x1f\xa4\xb1\x56\x85\xc6\x1d\x33\x42\x97\x2b\xbd\xc4\xee\x5f\xd6\xcc\xc2\x80\xd8\x5c\xe0\x45\xc4\x79\x03\x07\x82\xb3\x98\x7f\x72\x1d\xb8\x44\xf6\xf7\x89\xac\x6b\xe3\xd1\xab\x81\x80\x9a\x00\x85\x14\x0c\x5e\x0d\x99\x36\x15\x5d\x9e\x45\x3a\x07\xc6\xd9\x3d\x71\x6b\x75\x9c\xe1\xb7\x14\xe9\xab\x96\x1a\x8c\x8e\x52\xda\xf3\x85\x2a\xe8\x9c\xd7\x5f\x28\x90\x0d\xf0\x3a\xdd\x65\x6a\xea\x36\x59\x18\x1d\xa9\x70\xe5\x56\x8f\x2d\x96\xb3\x61\x46\xce\x7c\xf6\x5f\xaf\x45\x13\x6d\xf0\x7a\xdf\xc5\x85\xf7\x81\xe0\x53\xfd\xdb\x39\x4b\xdd\x22\xd6\x4c\x28\xe3\x93\xdf\x2e\xc3\x0c\x33\xce\xa0\x90\x2c\x5c\x41\xb5\x57\xac\x9b\x69\x4f\x36\xaa\xcf\xd4\x29\x8e\xde\x06\x90\x9f\x74\x39\xe4\x09\x6d\x7b\xf5\xe8\x58\xf7\xe4\x4e\x79\xc2\x28\x10\x3b\x8c\x03\xfa\x3c\x6a\xe7\xe0\xde\xc2\x47\x82\x28\x21\x42\x98\x42\xc4\x3e\xcc\x98\xea\x36\x8c\x8d\xbb\xa5\xa6\x8b\x71\xad\x85\xef\x7f\x7a\x4b\xb6\x4b\x90\xe3\xb6\x71\x2a\x6c\x6f\x4f\x50\x77\x5a\xaa\xc7\x10\x5d\xaf\xbf\xa4\xae\x2e\xb7\xd6\x3c\x19\xa7\x5b\xe2\xa8\xe5\x36\x5a\x26\x5b\x61\xbc\xa4\x09\xb1\x17\x5d\xa2\xaa\x08\x38\xf7\x82\xce\xad\x3a\xe8\x3d\xb5\xdd\x4b\xbe\x66\xdb\xe2\x5e\x5b\xcb\xdd\x50\x0e\x1d\x15\x12\xb8\x95\x09\x5f\x54\x15\x83\xea\x7b\xdc\xee\xb7\x02\xc5\x19\xed\xbc\x5e\x51\x72\xb6\xc6\x87\xd3\x56\x82\x65\x67\xe4\xa2\xec\x14\x3b\xee\xde\xb8\x70\x93\x5c\x21\x3a\x39\x9c\x86\x35\x57\x63\x85\xf6\xeb\x2f\x27\x5d\x63\x54\x15\xd0\x37\x86\x9f\x69\x8e\x7a\x81\xc4\xeb\x85\xc0\xcc\x70\xc7\xa3\x80\x24\xfa\x0a\xd0\xb1\x9a\xd7\xa4\x40\xdf\x47\x1d\x0d\xfb\x2b\x8f\xe0\xc2\x8c\x64\x65\x12\x45\xf9\xcd\xcf\x20\xef\x2e\x00\x6f\x9f\x51\x29\xf5\x9e\xd5\xb4\xa0\x3a\x0e\x3c\x29\x4b\x57\xd5\x1f\x03\x0e\x5e\xf7\xca\x4f\x25\xdc\x67\x8f\xa0\xee\xdd\x59\xf8\xd6\xea\xcf\x0f\x2f\xca\x73\x36\xfe\x48\xf1\x9a\x88\xad\xc0\x66\x06\xbc\x32\x94\xe5\x97\x95\x34\xf1\xac\x54\xfd\xb4\xf7\xd4\x4d\xa4\xcb\xcd\x50\x14\x54\xdb\x62\x1d\x73\xea\xb1\x04\xb4\xd6\xf8\x55\xda\xc0\x1f\xa2\x37\x8f\x3f\xb0\x37\xf3\x9f\xff\xf5\x62\xe8\x3d\x3e\x3e\x16\xc5\xdb\xb4\x92\xf0\x52\x7a\xe5\x59\x1e\x75\xb8\x50\x51\xae\x3f\x81\x24\x52\xbe\xca\x5f\x7e\x2d\xa1\xbc\x7f\x28\xa1\xfc\x9f\xff\x2d\xa1\xbc\xbd\x2d\xa1\xbc\xbb\x2b\xb7\xf0\x67\xef\x0e\xba\x99\x07\xa6\xec\x82\x0b\xb5\xc4\xec\xda\xec\x29\x26\x41\xca\xdd\xaa\x8f\xda\x9c\x3c\xf4\x60\x84\xe0\xfa\xe5\x61\xaa\x52\x61\x99\xc6\xe4\x11\xc7\x16\xde\xcc\x06\xeb\x5d\xcf\xcd\xf1\xf9\x15\xa9\x4a\x26\x45\xbd\x7a\x42\x01\xd0\x3c\xa2\x17\x6f\x65\xa4\x38\xc5\xce\x59\xfe\x3a\xa9\xde\xe4\x59\x56\x00\x8f\x7b\xe5\x1b\x43\x3d\x85\x6b\xc5\x15\xd3\xd4\x24\xf0\x04\xf2\x79\xf1\x5d\xb7\x76\x50\x61\xa7\x0e\x5a\x9a\x17\x4a\x9b\x27\xf8\xe2\x2b\x49\xd3\x68\x1b\x19\xd6\xbd\x39\xb9\x18\xfa\x3c\x0f\x23\x05\x53\x65\x70\xf2\xec\x56\x66\x22\xec\xa1\x2f\xa2\x55\xe6\xf8\xc6\x4e\x59\x30\x52\x8a\x8c\x9f\xdc\x35\x0f\x3c\x72\xc4\x31\x0e\x5a\x8d\xad\xa1\x38\x7f\x52\x98\x4d\xc4\x2d\x4b\x70\x1b\x22\x85\xec\xdb\x1b\x31\xe2\xe9\xeb\xa7\xe0\xc9\x44\xbf\xc8\xc5\x70\x1e\x67\x88\x9d\xef\x16\x1b\x47\xf5\x84\x97\xe8\x70\x02\x27\xe9\xa9\x4d\xb5\x8e\xa2\xb6\xe8\x55\xdd\x69\x8b\x73\x97\xcd\x31\xc9\xe5\xe7\x44\xc8\xa4\x0f\x9f\x81\x74\x66\x5b\x14\xc5\x37\xdf\xc0\x3b\x19\xdd\x90\x73\x48\x43\x99\x4f\x16\xc5\x5f\x97\x57\x52\x3a\x1e\x16\xaa\x80\x9a\x49\xc9\xdc\xc7\x4c\x94\x3d\xf8\xb4\x99\xb6\xf0\x1f\xf2\x07\xf4\xa8\xf2\x7b\x2b\xc5\x50\x9e\xc7\x1d\x9d\xbd\x8b\x27\xa6\x3e\x7f\xdc\x3d\xb5\x70\x99\xc6\x0f\x2a\xce\xaf\x7c\x94\xd1\x8a\x94\x1e\xd3\x35\x9e\x8f\x00\x7f\x4a\xdc\x54\xce\x09\x8b\xac\x3a\xac\x5f\xbc\xf8\x41\xab\x98\x43\x72\x79\x2a\xe6\xa7\x15\xba\x34\xa6\x48\xad\xc6\xa7\xe5\x3d\x47\x9e\xf3\x56\x58\x7a\x35\x01\xdb\x24\x81\x71\x35\xbd\x5c\xed\x64\x3b\x15\xb4\x91\x87\x25\xc4\x74\x11\x32\x19\x71\xc3\x91\x5d\x06\x8c\xfc\xa1\x5c\x17\x1d\xfa\x5a\x6e\x8b\xe2\x7d\x7a\x60\x3a\x33\xd6\x3c\x99\xa4\x9b\xe3\x57\x61\x6a\x5c\x88\x4b\x4e\x34\x89\x07\x45\x91\x40\x96\x89\x0d\x55\x90\x0a\x5b\xe0\x47\x73\x2d\x2f\x16\x32\x90\x48\xf3\x8f\x4e\x85\xf3\x3a\x4c\xce\x4d\x2d\xa3\x31\x29\xa1\xe0\xe7\x1a\x87\x08\xef\x5c\xc1\xbf\xc5\x12\x73\x31\x86\xd7\x97\xb7\xff\xe7\x58\x4d\xf2\x65\x57\x14\x65\x59\x92\x22\xc5\x2f\xc5\xcd\xed\xb7\xdb\xbd\xbb\xdd\xc1\x2f\xc5\xcd\xcd\xed\x9a\xf3\xed\x0e\xb8\x41\x2c\x6e\x7e\xdd\xf0\x36\x5f\xad\xb7\xe9\x2f\x78\xbb\x83\xdf\xa7\xd5\xb3\x83\xd1\x8f\x98\x3f\xcb\xc6\xd7\xc5\xaf\xc4\xb5\x28\xde\x84\xd5\x3f\x06\x20\x08\xa4\xfd\xe7\xa8\x23\x02\xaa\x30\x49\xf3\xf1\xdc\x8e\xf9\x8d\xfc\xd9\x5d\x14\x32\xde\xfe\xff\x00\x00\x00\xff\xff\x19\xd3\x85\xd8\x92\x21\x00\x00")
 
 func runtimeHelpOptionsMdBytes() ([]byte, error) {
        return bindataRead(
@@ -1150,7 +1150,7 @@ func runtimePluginsAutocloseUtf8Utf8Lua() (*asset, error) {
        return a, nil
 }
 
-var _runtimePluginsFtoptionsFtoptionsLua = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\x31\x4f\xc3\x40\x0c\x85\xf7\xfc\x0a\xcb\x53\x23\xa1\x0e\x30\x67\x80\x85\xb1\x43\x25\x16\xc4\x70\x24\x76\x6b\x71\xb1\x4f\x39\x87\x2a\xff\x1e\x5d\xa2\x90\xa2\x8a\xa1\x37\xd9\xdf\xf9\xde\x7b\x3e\x61\x78\x25\x3f\x24\x17\xd3\x1d\xb2\xdb\x5c\x65\xac\xa1\x69\x40\x25\x82\x9f\x49\x2b\x00\x80\xe7\xae\xbb\x1d\x7b\x00\x1f\x46\xaa\x2b\xd2\xae\xaa\x78\xd4\xb6\x60\x30\x7d\x13\xba\x1c\x12\xe9\xee\x5b\xe8\x52\xcf\xef\x85\x41\xcd\xff\x73\xfb\xb5\x29\x67\x20\x1f\x87\xa5\x9d\x85\x4b\x11\xad\x0d\x11\xd8\xa1\x81\xa2\xb9\x7f\x19\x79\x7f\x24\x77\xd1\x53\x7e\x47\x96\x48\x3e\x25\xc2\x8f\x6a\x35\x2b\xa3\x0d\x60\x1f\xbe\xa8\xdc\x22\xd8\xb0\xb2\x93\xe1\x5f\xc3\xe3\x16\xca\xc3\x67\x76\xcb\x29\xb4\x54\xd6\x43\x63\xc6\x65\x01\x8a\x99\x36\xdd\x34\xf9\xd9\xf4\x5a\x75\x21\x8f\xb7\xe8\xe9\x1a\x4d\xa1\x8f\x5b\x8f\x2a\xfd\x1d\x59\x74\x8d\xa2\xdd\xfc\xe5\x3f\x01\x00\x00\xff\xff\xff\x1c\x11\x66\xbe\x01\x00\x00")
+var _runtimePluginsFtoptionsFtoptionsLua = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x51\xb1\x6a\xc3\x30\x10\xdd\xf5\x15\x87\xa6\x04\x4a\x86\x76\xf6\xd0\x2e\x1d\x33\x04\xba\x94\x0e\xaa\x7d\x17\x1f\x95\xef\x84\x75\x6e\xf0\xdf\x17\x29\x4e\x42\x29\x0e\xf4\xa6\xd3\x7b\x4f\xef\xe9\x21\x26\x78\x45\xdb\x27\x63\x95\x8d\x27\xd3\xba\x65\xbf\x85\xa6\x01\xe1\x08\xd6\xa3\x38\x00\x80\xe7\xae\xfb\x2b\x7b\x00\x1b\x27\xdc\x3a\x94\xce\x39\x9a\xa4\x2d\x30\xa8\xbc\x31\x9e\xf6\x09\x65\xf3\xcd\x78\xda\xd6\xfb\x4c\x20\x6a\x6b\x69\xd7\x98\x32\x23\xda\x34\x9e\x8f\xd5\xb8\x2c\x51\xdb\x10\x81\x0c\x1a\x28\x9e\xbb\x97\x89\x76\x07\x34\x63\x39\xe6\x77\x4f\x1c\xd1\xe6\x84\xfe\xc3\x5d\xc2\x8a\xb4\x01\x7f\x54\x0f\x3a\x56\x70\x41\x86\xf0\x85\x45\xef\x7f\x87\x1e\x6e\x0f\xb3\xf0\x99\x4d\x73\x0a\x2d\x96\x8a\x5e\x89\xfc\xb9\x04\xc6\x8c\x37\x6f\xe2\xdc\x5f\xdd\x97\x59\xa8\x34\x5b\xaf\x72\x97\x7c\xbc\xcb\x3e\xad\xb0\x73\x18\xe2\x0a\x25\x3c\xfc\xa3\x93\x5c\x2a\x49\x57\xbf\xef\x27\x00\x00\xff\xff\xe7\xc7\xa0\xb2\x0a\x02\x00\x00")
 
 func runtimePluginsFtoptionsFtoptionsLuaBytes() ([]byte, error) {
        return bindataRead(
index cb265ef31321fdbfebb60bf9eb2b96f42587dc45..02f61313113726b6776534b6c8296849bcd39a53 100644 (file)
@@ -211,6 +211,7 @@ func DefaultGlobalSettings() map[string]interface{} {
                "rmtrailingws":   false,
                "ruler":          true,
                "savecursor":     false,
+               "savehistory":    true,
                "saveundo":       false,
                "scrollmargin":   float64(3),
                "scrollspeed":    float64(2),
index bd7c909ea4c77a5f4979b5089a966c6f484cb777..1690f849986a357156c298c6ed84cfc21aad5dd1 100644 (file)
@@ -136,6 +136,11 @@ Here are the options that you can set:
 
        default value: `off`
 
+* `savehistory`: remember command history between closing and re-opening
+   micro.
+
+    default value: `on`
+
 * `saveundo`: when this option is on, undo is saved even after you close a file
    so if you close and reopen a file, you can keep undoing.