diff --git a/cmd/micro/autocomplete.go b/cmd/micro/autocomplete.go index 5620f3df..d0ee3e17 100644 --- a/cmd/micro/autocomplete.go +++ b/cmd/micro/autocomplete.go @@ -84,7 +84,8 @@ func CommandComplete(input string) (string, []string) { func HelpComplete(input string) (string, []string) { var suggestions []string - for topic, _ := range helpPages { + for _, file := range ListRuntimeFiles(RTHelp) { + topic := file.Name() if strings.HasPrefix(topic, input) { suggestions = append(suggestions, topic) } diff --git a/cmd/micro/bindings.go b/cmd/micro/bindings.go index da6328be..7e8b0c22 100644 --- a/cmd/micro/bindings.go +++ b/cmd/micro/bindings.go @@ -405,7 +405,6 @@ func DefaultBindings() map[string]string { "CtrlR": "ToggleRuler", "CtrlL": "JumpLine", "Delete": "Delete", - "Esc": "ClearStatus", "CtrlB": "ShellMode", "CtrlQ": "Quit", "CtrlE": "CommandMode", @@ -420,5 +419,13 @@ func DefaultBindings() map[string]string { "Alt-e": "EndOfLine", "Alt-p": "CursorUp", "Alt-n": "CursorDown", + + // Integration with file managers + "F1": "ToggleHelp", + "F2": "Save", + "F4": "Quit", + "F7": "Find", + "F10": "Quit", + "Esc": "Quit", } } diff --git a/cmd/micro/colorscheme.go b/cmd/micro/colorscheme.go index 30358b2f..a604338e 100644 --- a/cmd/micro/colorscheme.go +++ b/cmd/micro/colorscheme.go @@ -2,7 +2,6 @@ package main import ( "fmt" - "io/ioutil" "regexp" "strconv" "strings" @@ -16,66 +15,53 @@ type Colorscheme map[string]tcell.Style // The current colorscheme var colorscheme Colorscheme -var preInstalledColors = []string{"default", "simple", "solarized", "solarized-tc", "atom-dark-tc", "monokai", "gruvbox", "zenburn", "bubblegum"} - // ColorschemeExists checks if a given colorscheme exists func ColorschemeExists(colorschemeName string) bool { - files, _ := ioutil.ReadDir(configDir + "/colorschemes") - for _, f := range files { - if f.Name() == colorschemeName+".micro" { - return true - } - } - - for _, name := range preInstalledColors { - if name == colorschemeName { - return true - } - } - - return false + return FindRuntimeFile(RTColorscheme, colorschemeName) != nil } // InitColorscheme picks and initializes the colorscheme when micro starts func InitColorscheme() { + colorscheme = make(Colorscheme) + if screen != nil { + screen.SetStyle(tcell.StyleDefault. + Foreground(tcell.ColorDefault). + Background(tcell.ColorDefault)) + } + LoadDefaultColorscheme() } // LoadDefaultColorscheme loads the default colorscheme from $(configDir)/colorschemes func LoadDefaultColorscheme() { - LoadColorscheme(globalSettings["colorscheme"].(string), configDir+"/colorschemes") + LoadColorscheme(globalSettings["colorscheme"].(string)) } // LoadColorscheme loads the given colorscheme from a directory -func LoadColorscheme(colorschemeName, dir string) { - files, _ := ioutil.ReadDir(dir) - found := false - for _, f := range files { - if f.Name() == colorschemeName+".micro" { - text, err := ioutil.ReadFile(dir + "/" + f.Name()) - if err != nil { - fmt.Println("Error loading colorscheme:", err) - continue - } - colorscheme = ParseColorscheme(string(text)) - found = true - } - } - - for _, name := range preInstalledColors { - if name == colorschemeName { - data, err := Asset("runtime/colorschemes/" + name + ".micro") - if err != nil { - TermMessage("Unable to load pre-installed colorscheme " + name) - continue - } - colorscheme = ParseColorscheme(string(data)) - found = true - } - } - - if !found { +func LoadColorscheme(colorschemeName string) { + file := FindRuntimeFile(RTColorscheme, colorschemeName) + if file == nil { TermMessage(colorschemeName, "is not a valid colorscheme") + } else { + if data, err := file.Data(); err != nil { + fmt.Println("Error loading colorscheme:", err) + } else { + colorscheme = ParseColorscheme(string(data)) + + // Default style + defStyle = tcell.StyleDefault. + Foreground(tcell.ColorDefault). + Background(tcell.ColorDefault) + + // There may be another default style defined in the colorscheme + // In that case we should use that one + if style, ok := colorscheme["default"]; ok { + defStyle = style + } + if screen != nil { + screen.SetStyle(defStyle) + } + } } } diff --git a/cmd/micro/command.go b/cmd/micro/command.go index f5b7a15c..f0cfe9b3 100644 --- a/cmd/micro/command.go +++ b/cmd/micro/command.go @@ -94,7 +94,7 @@ func Help(args []string) { CurView().openHelp("help") } else { helpPage := args[0] - if _, ok := helpPages[helpPage]; ok { + if FindRuntimeFile(RTHelp, helpPage) != nil { CurView().openHelp(helpPage) } else { messenger.Error("Sorry, no help for ", helpPage) diff --git a/cmd/micro/help.go b/cmd/micro/help.go deleted file mode 100644 index caaad5b5..00000000 --- a/cmd/micro/help.go +++ /dev/null @@ -1,38 +0,0 @@ -package main - -import ( - "io/ioutil" -) - -type HelpPage interface { - HelpFile() ([]byte, error) -} - -var helpPages map[string]HelpPage = map[string]HelpPage{ - "help": assetHelpPage("help"), - "keybindings": assetHelpPage("keybindings"), - "plugins": assetHelpPage("plugins"), - "colors": assetHelpPage("colors"), - "options": assetHelpPage("options"), - "commands": assetHelpPage("commands"), - "tutorial": assetHelpPage("tutorial"), -} - -type assetHelpPage string - -func (file assetHelpPage) HelpFile() ([]byte, error) { - return Asset("runtime/help/" + string(file) + ".md") -} - -type fileHelpPage string - -func (file fileHelpPage) HelpFile() ([]byte, error) { - return ioutil.ReadFile(string(file)) -} - -func AddPluginHelp(name, file string) { - if _, exists := helpPages[name]; exists { - return - } - helpPages[name] = fileHelpPage(file) -} diff --git a/cmd/micro/highlighter.go b/cmd/micro/highlighter.go index 661a7e8a..413372d6 100644 --- a/cmd/micro/highlighter.go +++ b/cmd/micro/highlighter.go @@ -1,8 +1,6 @@ package main import ( - "io/ioutil" - "path/filepath" "regexp" "strings" @@ -30,150 +28,16 @@ type SyntaxRule struct { var syntaxFiles map[[2]*regexp.Regexp]FileTypeRules -// These syntax files are pre installed and embedded in the resulting binary by go-bindata -var preInstalledSynFiles = []string{ - "Dockerfile", - "apacheconf", - "arduino", - "asciidoc", - "asm", - "awk", - "c", - "caddyfile", - "cmake", - "coffeescript", - "colortest", - "conf", - "conky", - "csharp", - "css", - "cython", - "d", - "dart", - "dot", - "erb", - "fish", - "fortran", - "gdscript", - "gentoo-ebuild", - "gentoo-etc-portage", - "git-commit", - "git-config", - "git-rebase-todo", - "glsl", - "go", - "golo", - "groff", - "haml", - "haskell", - "html", - "ini", - "inputrc", - "java", - "javascript", - "json", - "keymap", - "kickstart", - "ledger", - "lilypond", - "lisp", - "lua", - "makefile", - "man", - "markdown", - "mpdconf", - "micro", - "nanorc", - "nginx", - "ocaml", - "pascal", - "patch", - "peg", - "perl", - "perl6", - "php", - "pkg-config", - "po", - "pov", - "privoxy-action", - "privoxy-config", - "privoxy-filter", - "puppet", - "python", - "r", - "reST", - "rpmspec", - "ruby", - "rust", - "scala", - "sed", - "sh", - "sls", - "sql", - "swift", - "systemd", - "tcl", - "tex", - "vala", - "vi", - "xml", - "xresources", - "yaml", - "yum", - "zsh", -} - // LoadSyntaxFiles loads the syntax files from the default directory (configDir) func LoadSyntaxFiles() { - // Load the user's custom syntax files, if there are any - LoadSyntaxFilesFromDir(configDir + "/syntax") - - // Load the pre-installed syntax files from inside the binary - for _, filetype := range preInstalledSynFiles { - data, err := Asset("runtime/syntax/" + filetype + ".micro") - if err != nil { - TermMessage("Unable to load pre-installed syntax file " + filetype) - continue - } - - LoadSyntaxFile(string(data), filetype+".micro") - } -} - -// LoadSyntaxFilesFromDir loads the syntax files from a specified directory -// To load the syntax files, we must fill the `syntaxFiles` map -// This involves finding the regex for syntax and if it exists, the regex -// for the header. Then we must get the text for the file and the filetype. -func LoadSyntaxFilesFromDir(dir string) { - colorscheme = make(Colorscheme) InitColorscheme() - - // Default style - defStyle = tcell.StyleDefault. - Foreground(tcell.ColorDefault). - Background(tcell.ColorDefault) - - // There may be another default style defined in the colorscheme - // In that case we should use that one - if style, ok := colorscheme["default"]; ok { - defStyle = style - } - if screen != nil { - screen.SetStyle(defStyle) - } - syntaxFiles = make(map[[2]*regexp.Regexp]FileTypeRules) - files, _ := ioutil.ReadDir(dir) - for _, f := range files { - if filepath.Ext(f.Name()) == ".micro" { - filename := dir + "/" + f.Name() - text, err := ioutil.ReadFile(filename) - - if err != nil { - TermMessage("Error loading syntax file " + filename + ": " + err.Error()) - return - } - LoadSyntaxFile(string(text), filename) + for _, f := range ListRuntimeFiles(RTSyntax) { + data, err := f.Data() + if err != nil { + TermMessage("Error loading syntax file " + f.Name() + ": " + err.Error()) + } else { + LoadSyntaxFile(string(data), f.Name()) } } } diff --git a/cmd/micro/micro.go b/cmd/micro/micro.go index 53e3e7b2..4930aef0 100644 --- a/cmd/micro/micro.go +++ b/cmd/micro/micro.go @@ -233,6 +233,9 @@ func main() { // 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() @@ -313,6 +316,11 @@ func main() { L.SetGlobal("JobSend", luar.New(L, JobSend)) L.SetGlobal("JobStop", luar.New(L, JobStop)) + // Extension Files + L.SetGlobal("ReadRuntimeFile", luar.New(L, PluginReadRuntimeFile)) + L.SetGlobal("ListRuntimeFiles", luar.New(L, PluginListRuntimeFiles)) + L.SetGlobal("AddRuntimeFile", luar.New(L, PluginAddRuntimeFile)) + LoadPlugins() jobs = make(chan JobFunction, 100) diff --git a/cmd/micro/plugin.go b/cmd/micro/plugin.go index 0c84ae62..e728c3dd 100644 --- a/cmd/micro/plugin.go +++ b/cmd/micro/plugin.go @@ -137,8 +137,6 @@ func LoadPlugins() { continue } loadedPlugins = append(loadedPlugins, pluginName) - } else if f.Name() == "help.md" { - AddPluginHelp(pluginName, fullPath) } } } diff --git a/cmd/micro/rtfiles.go b/cmd/micro/rtfiles.go new file mode 100644 index 00000000..3d0ea574 --- /dev/null +++ b/cmd/micro/rtfiles.go @@ -0,0 +1,166 @@ +package main + +import ( + "io/ioutil" + "os" + "path" + "path/filepath" +) + +const ( + RTColorscheme = "colorscheme" + RTSyntax = "syntax" + RTHelp = "help" +) + +// RuntimeFile allows the program to read runtime data like colorschemes or syntax files +type RuntimeFile interface { + // Name returns a name of the file without paths or extensions + Name() string + // Data returns the content of the file. + Data() ([]byte, error) +} + +// allFiles contains all available files, mapped by filetype +var allFiles map[string][]RuntimeFile + +// some file on filesystem +type realFile string + +// some asset file +type assetFile string + +// some file on filesystem but with a different name +type namedFile struct { + realFile + name string +} + +func (rf realFile) Name() string { + fn := filepath.Base(string(rf)) + return fn[:len(fn)-len(filepath.Ext(fn))] +} + +func (rf realFile) Data() ([]byte, error) { + return ioutil.ReadFile(string(rf)) +} + +func (af assetFile) Name() string { + fn := path.Base(string(af)) + return fn[:len(fn)-len(path.Ext(fn))] +} + +func (af assetFile) Data() ([]byte, error) { + return Asset(string(af)) +} + +func (nf namedFile) Name() string { + return nf.name +} + +// AddRuntimeFile registers a file for the given filetype +func AddRuntimeFile(fileType string, file RuntimeFile) { + if allFiles == nil { + allFiles = make(map[string][]RuntimeFile) + } + allFiles[fileType] = append(allFiles[fileType], file) +} + +// AddRuntimeFilesFromDirectory registers each file from the given directory for +// the filetype which matches the file-pattern +func AddRuntimeFilesFromDirectory(fileType, directory, pattern string) { + files, _ := ioutil.ReadDir(directory) + for _, f := range files { + if ok, _ := filepath.Match(pattern, f.Name()); !f.IsDir() && ok { + fullPath := filepath.Join(directory, f.Name()) + AddRuntimeFile(fileType, realFile(fullPath)) + } + } +} + +// AddRuntimeFilesFromAssets registers each file from the given asset-directory for +// the filetype which matches the file-pattern +func AddRuntimeFilesFromAssets(fileType, directory, pattern string) { + files, err := AssetDir(directory) + if err != nil { + return + } + for _, f := range files { + if ok, _ := path.Match(pattern, f); ok { + AddRuntimeFile(fileType, assetFile(path.Join(directory, f))) + } + } +} + +// FindRuntimeFile finds a runtime file of the given filetype and name +// will return nil if no file was found +func FindRuntimeFile(fileType, name string) RuntimeFile { + for _, f := range ListRuntimeFiles(fileType) { + if f.Name() == name { + return f + } + } + return nil +} + +// ListRuntimeFiles lists all known runtime files for the given filetype +func ListRuntimeFiles(fileType string) []RuntimeFile { + if files, ok := allFiles[fileType]; ok { + return files + } + return []RuntimeFile{} +} + +// InitRuntimeFiles initializes all assets file and the config directory +func InitRuntimeFiles() { + add := func(fileType, dir, pattern string) { + AddRuntimeFilesFromDirectory(fileType, filepath.Join(configDir, dir), pattern) + AddRuntimeFilesFromAssets(fileType, path.Join("runtime", dir), pattern) + } + + add(RTColorscheme, "colorschemes", "*.micro") + add(RTSyntax, "syntax", "*.micro") + add(RTHelp, "help", "*.md") +} + +// PluginReadRuntimeFile allows plugin scripts to read the content of a runtime file +func PluginReadRuntimeFile(fileType, name string) string { + if file := FindRuntimeFile(fileType, name); file != nil { + if data, err := file.Data(); err == nil { + return string(data) + } + } + return "" +} + +// PluginListRuntimeFiles allows plugins to lists all runtime files of the given type +func PluginListRuntimeFiles(fileType string) []string { + files := ListRuntimeFiles(fileType) + result := make([]string, len(files)) + for i, f := range files { + result[i] = f.Name() + } + return result +} + +// PluginAddRuntimeFile adds a file to the runtime files for a plugin +func PluginAddRuntimeFile(plugin, filetype, path string) { + fullpath := configDir + "/plugins/" + plugin + "/" + path + if _, err := os.Stat(fullpath); err == nil { + AddRuntimeFile(filetype, realFile(fullpath)) + } else { + fullpath = "runtime/plugins/" + plugin + "/" + path + AddRuntimeFile(filetype, assetFile(fullpath)) + } +} + +// PluginAddRuntimeFilesFromDirectory adds files from a directory to the runtime files for a plugin +func PluginAddRuntimeFilesFromDirectory(plugin, filetype, directory, pattern string) { + fullpath := filepath.Join(configDir, "plugins", plugin, directory) + if _, err := os.Stat(fullpath); err == nil { + AddRuntimeFilesFromDirectory(filetype, fullpath, pattern) + } else { + fullpath = path.Join("runtime", "plugins", plugin, directory) + AddRuntimeFilesFromAssets(filetype, fullpath, pattern) + } +} diff --git a/cmd/micro/runtime.go b/cmd/micro/runtime.go index 2ae39567..1a3c39d1 100644 --- a/cmd/micro/runtime.go +++ b/cmd/micro/runtime.go @@ -421,7 +421,7 @@ func runtimeHelpCommandsMd() (*asset, error) { return a, nil } -var _runtimeHelpHelpMd = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x7c\x54\xc1\x8e\xdc\x36\x0c\xbd\xeb\x2b\x08\xec\x21\xed\x60\x77\x3e\x60\x6f\x41\x91\x36\x39\x14\x68\x91\xa0\xe7\xa1\x2d\xda\x22\x56\x16\x5d\x89\xb6\x67\xfa\xf5\x05\x25\x7b\x3a\x2d\x9a\x3d\xd9\x20\xc5\x47\xf2\xf1\x91\x4f\xf0\x2b\xf7\x59\x20\x50\x9c\x41\xe9\xaa\xce\x35\x03\x17\x40\x50\xca\x13\x27\x8c\x2f\x1d\x16\xf2\xd5\x0f\xe4\x59\x25\x83\x06\x54\x40\x9e\x0a\xa8\x40\x47\x40\x58\x6e\xf6\xbb\x14\x02\x4c\x1e\x38\xe9\xc2\xca\x2b\x3d\x83\xdb\x02\x47\x02\x8c\x45\x40\xf1\x8d\xd3\x08\xe8\x57\x4c\x8a\x23\x81\x0c\xa0\x81\x60\x58\x62\x84\x1e\x67\xec\x38\xb2\x32\x15\x73\x4c\xe2\x29\xa7\x7b\x15\xe5\xec\xdc\xe9\xb7\x4c\xa5\xc0\x4f\x9a\xe3\xef\x96\xee\xcf\x85\xf5\xb9\x26\x34\xd3\x57\x33\x15\x5c\xe9\x7c\x72\xee\xcb\x00\x37\x59\x60\xc3\xa4\xd5\x4c\x56\x42\xac\xd9\xde\xe8\xd6\x71\xf2\x9c\xc6\x02\xf3\x1d\xf0\x53\xc5\xd1\xdb\x4c\x70\xa9\x7c\x3c\x3c\xbb\x9c\x9d\xfb\x4a\x54\xa3\x93\xd1\x50\xa8\x57\x96\x04\x83\x64\x98\x24\x13\x70\x1a\x24\x4f\x58\x8d\xd8\xc9\xa2\xe0\xa5\x5f\x26\x4a\xba\xdb\x92\xaf\x2c\x9f\x9d\x7b\x7a\x7a\x82\x8f\x7d\x4f\xa5\x18\x17\x35\xda\x3c\x07\xf5\x01\x8d\xfb\x6e\xe1\xa8\x2f\x9c\xda\x68\xca\xad\x28\x4d\x30\x2d\x7d\x80\xc8\x6f\x04\x7f\xf0\xf4\xa1\xc0\x0f\x18\x35\xc8\x32\x06\x88\xd6\x05\x5d\x95\x52\xe1\x95\x7e\x3c\x3b\xf7\xad\x0d\xc3\xf8\x79\xec\x51\x05\xb0\xe6\x86\x5e\xa6\xc9\xaa\x32\x9a\xff\x69\x9d\x53\xeb\xfe\x02\x83\xc4\x28\x1b\x79\xe8\x6e\xa6\x05\x99\xb9\x3f\xbb\x6f\xb7\xd9\x8a\xfe\x9f\x27\x49\x34\x98\x6b\xe3\x18\x41\x66\x4a\xa0\x81\x0b\xcc\x38\xd2\xd9\xb9\xcf\x94\x09\x30\x37\x06\x67\x29\x85\xbb\x48\xbb\xec\x0c\xb9\x34\x45\xd9\xc4\x7a\x4c\x90\x09\xfd\xab\x73\x27\xd0\x45\x25\x33\xc6\x57\xf8\x08\x5d\x66\x1a\xee\x16\xd8\x02\xf7\x01\x46\x5e\xa9\x00\x26\x90\x95\xf2\xca\xb4\x99\x72\x8e\x41\x8b\x06\xca\x8f\x59\xdc\xe9\x71\xaa\xaf\xf0\x4b\x8b\x6e\xfa\x8b\x5c\xf4\x10\xa4\xa7\x01\x97\xa8\xff\x92\x0a\x16\xd8\x28\x46\xfb\x06\xd9\x8c\xc9\x4c\xe6\xb4\x80\xc9\x9d\x0e\x42\x1f\x60\x0f\xc4\xa3\x9e\xe3\x45\xa5\x7b\xb3\x86\x35\xd0\x0d\xbc\xb8\x13\xc8\x6c\x3a\x79\x27\x78\x7f\x70\xe7\xa8\x5f\x8a\xca\xc4\x7f\x91\x3b\xc1\x1c\x97\x91\x2d\xf8\xd3\x75\x8e\xc8\xa9\x55\x38\x99\x9e\x3e\x94\xdd\x7b\x88\x68\x93\xfc\xd6\x2a\xd8\xbb\xe8\x33\xa1\x92\xe1\x66\x90\x2d\x1d\x60\xb5\xa3\x28\xf9\x11\xf5\x40\x6c\x8e\x3e\xd0\xd4\xa4\x53\x6e\x49\xf1\x0a\x81\xc7\x10\x79\x0c\x6a\x42\xa0\x34\x72\xa2\xef\x24\x72\x50\x53\x3d\xe0\x14\x90\x0c\xe8\x3d\x24\xda\x20\x62\x1a\x17\x1c\xa9\x9e\x17\x6b\xbe\x81\x39\xf7\xb3\x64\xa0\x2b\x4e\x73\xa4\x67\xf3\xed\x42\xdb\xa5\x34\xd7\x93\x72\xef\xa0\x1d\x00\x59\xa2\x7f\x6f\xcd\xf7\xc7\xb6\xe2\x5f\x20\x93\xcd\x88\x92\x87\x28\xd2\x6e\x55\x1d\x12\x5c\x0e\xdd\x5d\x5a\xaa\xc1\x6e\x5a\x47\x3d\xb6\x25\xb3\x83\x59\x82\x64\xad\x17\x81\xb0\x0f\xf7\x13\x81\xc9\xbb\xa6\xd2\x5e\x52\x9f\x49\xe9\xe8\xa0\x5e\xb9\x9d\x1b\x83\xb1\x3c\x2b\x66\x96\xa5\xbe\x1d\x78\x5c\x72\xbb\x1e\xc7\xec\x39\xb5\x11\x9c\xe1\xb3\x6c\xb4\x52\x7e\x76\x6c\x97\x86\x8a\xed\x5f\x5d\x86\x8a\xc2\xe9\xc5\xd3\xac\xe1\x3f\x47\x48\x77\xc9\xed\x8b\xb1\x6f\xde\x9c\x65\x65\x4f\x67\xf7\x77\x00\x00\x00\xff\xff\x45\xb5\xe2\x19\x0e\x06\x00\x00") +var _runtimeHelpHelpMd = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x7c\x55\xcf\x8e\xdc\xb6\x0f\xbe\xeb\x29\x08\xec\x21\xbf\xdf\x62\xd6\x0f\x90\x43\x80\xa0\x48\x9b\x3d\x04\x48\x90\xa0\x41\x6f\x43\xdb\x1c\x8b\x18\x59\x74\x25\xda\xde\xe9\xd3\x17\x94\xec\x99\xd9\xb4\xcd\x69\xc6\x94\xf8\xf1\xdf\xf7\x51\x0f\xf0\x89\xbb\x24\xe0\x29\x4c\xa0\xf4\xa2\xce\x55\x03\x67\x40\x50\x4a\x23\x47\x0c\x4f\x2d\x66\xea\xcb\x39\x50\xcf\x2a\x09\xd4\xa3\x02\xf2\x98\x41\x05\x5a\x02\xc2\x7c\xb1\xbf\x73\x26\xc0\xd8\x03\x47\x9d\x59\x79\xa1\x03\xb8\xd5\x73\x20\xc0\x90\x05\x14\xcf\x1c\x07\xc0\x7e\xc1\xa8\x38\x10\xc8\x09\xd4\x13\x9c\xe6\x10\xa0\xc3\x09\x5b\x0e\xac\x4c\xd9\x0e\x46\xe9\x29\xc5\x6b\x16\xb9\x71\xee\xf9\x04\x17\x99\x61\xc5\xa8\x16\x2d\x93\xe1\x86\x02\x71\xa6\x4b\xcb\xb1\xe7\x38\x64\x98\x12\xe5\x0c\xbf\x68\x0a\x1f\x4a\x36\x7a\x99\x08\x8e\xa5\xc8\xbb\x6b\xc7\xc6\xb9\xaf\x44\xc5\x3b\x5a\x6d\x99\x3a\x65\x89\x70\x92\x04\xa3\x24\x02\x8e\x27\x49\x23\x16\x23\xb6\x32\x2b\xf4\xd2\xcd\x23\x45\xdd\x6c\xb1\x2f\xad\x6b\x9c\x7b\x78\x78\x80\x2f\x33\x77\xe7\xa7\xac\x98\xd4\xb9\xcf\xd7\x1c\xbe\x58\xaa\x7f\xce\xac\x87\xe2\x60\xa6\xaf\x25\x7b\x5c\xa8\x81\xcf\x77\xb9\x9a\xd1\xbc\x2d\x61\xeb\x53\x27\xe3\x88\xb1\xcf\xce\xfc\xac\xf0\x0e\x63\x29\x7a\xf5\xdc\xf9\xeb\x31\x60\x22\xc0\x05\x39\x60\x1b\x08\xda\x4b\x6d\x80\x21\x28\xb6\x07\x90\x04\xed\xc5\x2d\x4c\x6b\x31\x79\xda\xe6\x2d\x13\x77\x70\x7c\x57\xbf\x76\xb0\x63\x03\xdf\x3d\x45\x78\x86\x35\xb1\x92\x9d\x37\x4d\x73\x84\x67\x18\x09\x63\x45\x76\x77\xad\xb5\xbb\xa5\xbf\xab\x47\xa5\x85\x92\x71\x47\x3d\x25\x6a\x9c\xfb\x24\x4b\xed\x6f\x37\xa7\x2c\x09\x30\xc9\x1c\x7b\x58\x59\x7d\x31\x8f\x62\x84\x29\x7c\x22\xc0\x94\x64\xb5\x01\x6d\x93\x2e\x7e\x12\x24\xe5\xce\xd3\x48\xd0\x0b\xe5\xf8\x46\x21\x88\x9c\x61\x10\xe9\x0f\xd7\x9e\x74\x1e\xe3\x40\xc0\x5a\xa1\x8f\xef\x20\x93\xbe\x72\xb6\x1a\x1a\xf7\xc7\x76\xbf\x12\x44\xb1\xdd\x59\x54\xe2\x5f\x3b\x78\xe7\x98\x4b\xfb\xec\xca\x3f\x18\x61\xa1\xdc\xad\x7d\xe6\x62\x94\xba\x0d\xf4\xbb\xa1\x8f\xd6\x82\x96\x74\x25\x8a\x90\xa7\xc0\x9a\x0f\x77\xa4\x7c\x07\x4b\x31\xc2\x89\x03\x45\x1c\xe9\x68\xf1\x0c\xf5\x07\xb3\x53\x01\x99\x28\x02\x42\xa4\xb5\x22\x6d\xbc\x7b\xdf\x75\xdb\xb8\x4b\x8e\x96\xcf\xae\x63\x8f\x26\xe4\x76\xe6\xa0\x4f\x1c\x6b\xaa\xf9\x92\x95\x46\x18\xe7\xce\x43\xe0\x33\xc1\xef\x3c\xbe\xc9\xf0\x3f\x0c\xea\x65\x1e\x3c\x04\x2b\x80\x5e\x94\x62\xe6\x85\xfe\xdf\x38\xf7\xad\x2a\xdb\x28\x3c\xbd\xe6\x2b\x96\xd8\x3b\x7b\x8a\x66\x6f\xd5\x71\xac\xaa\x3b\xc2\x49\x42\x90\x95\x7a\x23\x27\x56\xe6\x35\xee\x5b\x65\xf9\xbf\x5c\x89\xa2\xde\x8e\x56\x0e\xa1\x56\xad\x9e\x33\x4c\x38\x18\xab\x3e\x92\xf1\x3d\xd5\xa9\x4d\x92\x33\xdb\xd0\x6e\x9c\xce\x75\x3d\xed\xe4\x48\x84\xfd\x5b\xe7\x1e\x41\x67\x95\xc4\x18\xde\xc2\x7b\x68\x13\xd3\xe9\x6a\xd9\x04\x35\xf0\x42\x19\x30\x82\x2c\x94\x4c\x2f\xb6\x86\xf6\x05\x23\x46\xea\xfb\x28\xee\xf1\x7e\x9b\xbc\x85\xdf\xaa\x77\x5d\x66\x81\xb3\xee\xdb\xad\xa7\x13\xce\x41\x5f\xad\x28\xcc\xb0\x52\x08\xf6\xeb\x65\xb5\x4e\x26\xb2\x43\x73\x18\xdd\xe3\x55\x8e\x37\xd8\x1d\x71\xcf\xe7\xa6\x7e\x53\x94\x15\xac\x9e\x2e\xd0\x8b\x7b\x04\x99\x8c\xa1\x3f\x71\xde\x2e\xdc\x04\x34\x67\x95\x91\xff\x22\xf7\x08\x53\x98\x07\x36\xe7\x0f\x2f\x53\x40\x8e\x35\xc3\xd1\xf8\xf4\x26\x6f\xa7\x3b\x89\x56\x49\xe7\x9a\xc1\x56\x45\x97\x08\x95\x0c\x37\x81\xac\x71\x07\x2b\x15\x99\x42\xee\x50\x77\xc4\x7b\x99\x1a\x52\xbe\x44\xc5\x17\xf0\x3c\xf8\xc0\x83\x57\x23\x02\xc5\x81\x23\xfd\x47\x20\x07\x25\xd4\xbd\x6a\x4d\x44\xd8\xf7\x45\x2a\x01\xe3\x30\xe3\x40\xe5\xad\xb2\xe2\x2b\x98\x73\xbf\x4a\x02\x7a\xc1\x71\x0a\x74\x80\x5d\x5e\xd7\xf5\x38\x95\xf7\xe9\x5a\x41\x7d\x78\x64\x0e\xfd\xcf\x9e\x97\xed\xb2\xed\x81\x67\x48\x64\x33\xa2\xd8\x97\x95\x55\x1e\xbe\x32\x24\x38\xee\xbc\x3b\xd6\x50\x26\x72\x68\xa9\xc3\x2a\x32\xdb\xa0\xd9\x4b\xd2\xf2\x12\x11\x76\xfe\xfa\x34\x61\xec\x5d\x65\x69\x27\xb1\x4b\xa4\xb4\x57\x50\x9e\xcc\xad\x37\x06\x63\x71\x16\x4c\x2c\x73\xb9\x7b\xe2\x61\x4e\x75\x6f\xed\xb3\xe7\x58\x47\xd0\xc0\x47\x59\x6d\x73\x1f\x1c\x6b\xd9\xb2\xa6\xbf\x22\x86\x82\xc2\xf1\xa9\xa7\x49\xfd\x0f\x8f\x9f\x6e\x94\xdb\x84\xb1\x29\x6f\x4a\xb2\x70\x4f\x8d\xfb\x3b\x00\x00\xff\xff\x8f\x28\x12\xbf\x5b\x08\x00\x00") func runtimeHelpHelpMdBytes() ([]byte, error) { return bindataRead( @@ -441,7 +441,7 @@ func runtimeHelpHelpMd() (*asset, error) { return a, nil } -var _runtimeHelpKeybindingsMd = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x74\x58\x5b\x57\x1b\x39\x12\x7e\x4e\xfd\x0a\x1d\xe7\x65\xe6\x2c\x18\x7c\x05\xe6\x8d\x00\x1a\x72\x85\x70\x99\x4c\xf2\x64\xb9\x5b\x8d\xb5\x91\xa5\xa6\xa5\xc6\xf1\xee\xd9\xfd\xed\x7b\xaa\xd4\x17\xc9\x78\x73\x4e\x0a\x5c\xf5\xa9\x54\x2a\x55\xa9\x3e\xf3\x96\x7d\x94\xdb\xa5\x32\xb9\x32\x4f\x0e\xe0\x5a\x56\x92\x89\x4a\x32\xbf\x92\x2c\x97\x85\xa8\xb5\x67\x3f\x7b\x04\x53\x86\xfd\xd3\x59\xc3\x0a\x5b\xad\xd9\x66\xa5\xb2\x15\x53\x8e\x09\xed\x2c\x5b\xd9\x0d\x6c\x6d\xcd\x32\x61\x58\x25\x71\x05\x7a\x59\x33\x6f\xd9\xd6\xd6\x15\xd3\xea\xa7\x32\x4f\x43\x80\xc5\x62\x81\x3e\xe0\xdf\xf0\x66\xf0\x58\x0e\xfe\x60\xf1\xbf\xc1\x45\x5d\x39\x5b\x3d\x96\x83\x03\x78\x33\xb8\xb4\x1b\x93\x00\x1a\x33\xe9\x11\x70\xa7\x9e\x56\x3e\x46\x34\x80\xa0\x47\xc4\x27\x59\xf8\x7d\x2e\x48\x8f\x80\xfb\x95\x2a\x7c\x1c\xc7\xe0\x5e\x6a\x99\xf9\x26\x04\x32\xc7\x71\x34\xe6\x2e\x04\x02\xc4\xbb\x34\x80\x74\x83\x38\xd0\x06\xd0\xc7\x78\xae\x7d\x1a\xe6\xe0\x9b\xad\xf2\xce\xc1\xb9\xf6\xe9\x39\xc9\x9c\x2c\x4f\xf7\x68\x36\xd8\x8f\xea\x76\x8a\x50\xdd\x56\x17\xbe\xd2\x49\x28\x83\x7b\x2f\x2a\x7f\x53\x7c\x52\x46\x76\x88\x24\x9a\xc1\x95\xc9\x77\xec\xc9\x3e\xcd\x36\x0f\x76\x9f\xa7\x24\xee\x0e\xf9\xda\x63\x52\x27\xcd\x0d\x92\xbf\x0e\x91\x94\x4a\x83\xb8\x32\x79\xba\x53\xeb\x26\x8d\x29\xc5\xb4\x8e\xe2\x68\x08\x71\x65\xbc\xac\x92\x5a\x7b\x6f\x9c\xac\x7c\xd0\xd3\x4d\x97\x22\x93\x7b\x10\x41\x8f\x88\x77\x22\xfb\xe9\x62\x54\xa4\x49\xec\xe3\xb6\x56\x52\xfb\xb9\xf6\x87\x89\x8f\xc1\xa5\xd4\xd2\xcb\xdd\x7a\x39\x4c\x1c\xed\x03\x3d\x88\x65\xda\x7a\x4d\xac\x0f\x62\x79\xf0\xde\xe4\xd2\xf8\x70\x7e\x65\x4d\x97\x9f\x9b\xe4\x6c\x37\xa5\x34\x5c\xe9\xe8\x32\x13\xf3\xbd\x78\xe9\x4d\x3c\x31\x71\x15\x5d\xcc\x97\x57\xa6\x2f\xf2\x57\x7f\x27\xb7\xaf\xcc\xb7\x95\x7c\x51\xb6\x76\x1d\xe4\x47\x02\x79\x34\xb9\xed\x4c\xdf\x13\xd3\x9d\x8c\x4c\x17\xe9\xb3\x61\xcb\x6d\x67\xfa\x7b\xe7\x45\xe9\xa3\xf9\xb8\x6b\x49\xaa\xf4\x32\xb1\x5e\xd6\xa5\x56\x99\xf0\x32\xc1\xfc\x95\x60\x6e\x85\xf3\xbd\xed\x3c\x4d\x20\xe5\xff\x5c\xeb\xce\xfe\x90\xd8\xcf\xf3\x1c\x2f\x31\x69\xca\xfb\xe7\xa6\xc0\xdb\x24\xc5\x08\xaa\x09\x2d\xdc\x8a\x0a\x07\xb3\xdc\x5a\xaf\xed\x5a\xa6\x8f\x64\xdf\x18\x58\xfe\x69\xa1\xc4\x6d\x95\xac\xdc\xdb\x98\xc9\xfa\x9d\xc6\xbc\x15\x4f\x72\x5f\x6b\x37\xfa\x16\xb2\xaf\xb7\x3b\x7d\xbb\xcf\x9f\x49\x72\x1e\xec\xd3\x93\x96\xd7\x52\x97\x7d\x82\xf6\x00\xee\x6a\xdd\xf4\x2e\xbd\x7c\x09\xe2\x43\xbd\x2e\xbb\xab\x0b\x1d\x14\x47\xda\x68\x28\x45\x2e\xdb\x49\xd1\x85\x96\x02\xf3\xe0\xa3\x32\x7d\x97\xde\xee\x4a\x6a\xfd\xd9\xe6\xfd\xed\x7f\x4d\xec\x5f\x6b\x15\xe5\x70\xa7\x56\xd7\x6b\x61\xf2\x64\xf1\xb7\x04\x81\x77\x7b\x5f\xea\xc8\xc3\xe3\x9e\xc3\x7f\x16\x59\xd5\xf7\xc3\x87\xb4\x30\xb5\xd8\x76\x76\x78\x73\x74\xc4\xae\xd6\x22\x73\x87\xce\x6f\xb5\x8c\x29\x41\xf3\xde\x14\xf8\xcc\xbc\x1a\x38\x87\xcb\x56\x9d\x3c\x4e\x82\x1e\xfb\x9d\x71\x80\x06\x4c\xf0\xce\x3c\x41\x35\x56\x48\x4a\x0c\x50\x6b\x7a\x2d\x15\x02\xfc\x07\xa9\x05\xc0\xf7\x86\x84\xd4\x2e\xf0\x18\x11\x38\x8c\x63\xff\x60\xa2\xaa\xec\xc6\x21\x25\x59\xdb\x17\xc9\x36\xb6\xca\xd9\x72\x4b\x3f\x87\x80\x49\x60\x5a\x16\x9e\x09\x93\xb3\x0a\xcf\x11\x60\xe8\x24\xa3\x7d\x70\x25\x7e\x72\x18\x3b\xc1\xa4\xc9\x99\x2d\x48\xa9\x95\x91\x07\xa8\x84\x0c\x3d\xd5\x25\x01\x72\xbb\x31\xaf\xdd\xfc\x3f\x1f\xcb\xba\x28\x64\x35\xec\x0f\xb1\xb2\x3a\x67\x0e\xe7\x12\xdb\x28\xbf\x62\x42\xeb\x06\xeb\x24\xb9\x5d\x4b\xe3\x99\xa0\x77\x9a\x0e\xe6\xe8\xd5\x40\x6e\xa6\x09\x10\x38\xd7\x5b\x76\x27\x9b\x1b\xa3\x5c\x00\x3c\xe0\x6e\x2d\xad\x5b\x8b\x2d\x5b\x4a\xa4\x6d\xb6\x36\x39\xab\x1d\xe2\x30\x9e\xc5\x7f\x8f\x86\x99\x35\x85\x7a\x3a\x5a\xab\xac\xb2\x47\xed\x92\x21\x52\xb8\x05\x14\x4a\xcb\x21\xbb\x12\xd9\x0a\xdd\x22\x17\x0c\x1e\xbc\x65\xc2\x34\x61\x0d\x01\xb8\xad\x98\xfc\x25\xd6\xa5\x96\x07\x68\x23\x76\xb8\xc0\x84\x1f\x6e\x17\xa8\xa8\x4d\x6e\x29\x17\x41\xf9\x2f\x52\x56\x32\xb7\x07\x8c\x38\xa5\xad\x75\xce\xca\xda\x63\x50\x50\x58\xad\xed\x06\x43\x54\x26\x44\x99\x46\xc5\x28\xaa\x94\x68\xb6\xc3\x20\x1d\x0f\x38\x39\xc2\x54\xd8\x2d\x1e\xa2\xb4\xd9\x4a\x28\xc3\xb2\xd0\x6e\x8e\x6d\x56\xb2\xa5\xb6\x98\x55\x96\x9c\x4a\x15\x14\xe9\x46\x18\xcf\xb0\x3a\xc3\x65\x88\x17\x09\x78\xac\xe7\x5a\x79\xd6\xb2\x63\x3a\xbd\xf2\xc8\x88\x25\x73\xf6\x8f\x38\xd2\xf0\xb2\xe3\x7a\xea\x11\xf1\x22\x0f\xe8\x25\x68\xe3\x7b\xcb\xde\x29\x93\x8b\xa5\x96\xdd\xa5\xa3\xff\x65\xab\xec\x2f\x57\x2b\xe7\xb1\x54\xf6\xd1\xf8\xcc\x1a\x2f\x94\x71\x6c\x6d\x03\x08\xb3\x58\x5a\xe7\xd4\xae\x63\xf2\x17\x88\xfe\xb6\xef\xab\x03\xb6\xac\x3d\x33\xd6\x47\xf5\xb8\x1e\x32\xfa\xfa\x80\xdf\x07\x58\x51\x6b\xdd\x45\xb0\xb4\x7e\x85\x45\x10\xeb\x76\x37\x0b\x49\x80\xb6\xc9\xa1\xef\x6b\x88\x47\x02\xa4\x8f\x3f\xf4\x5c\x1e\x22\xe2\x0f\xd1\x1c\x82\x6e\xe2\x40\x42\xfa\x20\xa2\x77\xd0\x32\x7e\xe8\xb9\x3d\xf4\x2c\x1e\x22\xbe\x0e\xdd\x1b\x07\xed\xb3\x06\x3b\x6c\x1b\x52\x5e\x0d\x3d\xf9\x0a\xe6\x94\x8c\xc1\x1e\x7a\x0c\xaf\x88\x30\x04\x72\xf6\x45\x6e\x74\xff\x89\x68\x25\x74\x4c\xaf\x71\x0c\x17\x12\x09\x29\x74\x74\x0e\xb0\x8a\x48\x9c\x3b\x40\x02\x05\x2d\xc9\x82\x98\x4e\x01\x76\x06\x60\x33\x00\x92\x21\xb8\xa8\x31\x77\x44\x70\x20\xa1\x32\xcd\x3e\x4d\x58\x09\x53\x84\x9b\xda\xa7\x0a\x22\x38\xd0\x51\x19\x68\x49\x23\x84\x4b\xc0\xe4\x37\x37\xdb\xdd\xe9\xb5\xd0\x45\xa3\x6b\x7f\x0d\x17\x12\x25\xa8\x4f\x4c\x3f\xe8\x21\x1a\xe9\xd0\x0e\x6f\x88\x26\x31\x74\x33\x17\xa2\x11\x0a\xd8\x5f\x24\x30\xbe\x40\xaa\x20\xa2\x4f\xd0\x10\x25\xe8\x86\x6a\x67\x0d\x9f\xa2\x61\x0a\xdd\xd8\x0c\xdd\xda\x36\x84\x8f\xfa\x11\x3b\xa6\xab\x7e\x9a\x4b\xf1\xbb\xd0\xf4\xc1\x63\x09\x74\xe6\x50\x31\x54\x27\x8f\x65\xf3\xa3\xa9\x22\xbb\x31\xa1\xbc\xec\xc6\x34\x55\x1f\x2e\xfe\x55\x3e\xed\x9a\x12\xd6\x54\x44\x5b\x26\x94\xb2\xab\x5f\xca\x87\x14\xc1\x85\x30\x99\xd4\x70\x5b\x29\xe3\xe1\x56\xd4\x2e\x94\x96\x17\x4b\xe0\x23\xe0\x63\xe0\x13\xe0\x53\xe0\x33\xe0\x73\xe0\x27\xc0\x4f\x81\x9f\x01\x1f\x1d\x03\x1f\x8d\x80\x8f\xc6\xc0\x47\x13\xe0\xa3\x29\xf0\xd1\x0c\xf8\x68\x0e\x7c\x74\x02\x7c\x74\x0a\x7c\x74\x06\x7c\x7c\x0c\x7c\x8c\x7e\xc6\xc0\xc7\x13\xe0\xe3\x29\xf0\xf1\x0c\xf8\x78\x0e\x7c\x7c\x02\x7c\x7c\x0a\x7c\x7c\x06\x7c\x72\x0c\x7c\x32\x02\x3e\xc1\x0d\x27\xc0\x27\x53\xe0\x93\x19\xf0\xc9\x1c\xf8\xe4\x04\xf8\xe4\x14\xf8\xe4\x0c\xf8\xf4\x18\xf8\x74\x04\x7c\x3a\x06\x3e\xc5\xc8\xa6\xc0\xa7\x33\xe0\xd3\x39\xf0\xe9\x09\xf0\xe9\x29\xf0\xe9\x19\xf0\xd9\x31\xf0\xd9\x08\xf8\x6c\x0c\x7c\x36\x01\x3e\xc3\x23\xcc\x80\xcf\xe6\xc0\x67\x27\xc0\x67\xa7\xc0\x67\x67\xc0\xe7\xc7\xc0\xe7\x23\xe0\xf3\x31\xf0\xf9\x04\xf8\x7c\x4a\x84\x20\xf4\x18\x91\x73\x92\xef\x48\x5e\x90\xbc\x24\x79\x45\x92\x93\xfc\x93\xe4\x35\xc9\xf7\x24\x3f\x90\xfc\x48\xf2\x13\xc9\xcf\x24\xbf\x90\xbc\x21\x79\x4b\xf2\x2b\xc9\xbb\xb0\x2b\xc9\x07\x92\x8f\x24\xff\x22\xf9\x8d\xe4\xdf\x24\xbf\x93\xfc\x01\xed\x57\xf6\xfb\x67\x48\x48\x3e\x44\x5f\x0a\x42\xd0\xa2\x12\x3e\xb8\x34\xb9\xac\x5c\x66\xab\xf8\xf5\xc0\x12\xbf\x72\x19\xfe\x17\x25\x16\x0c\xd6\x52\xff\x35\x32\x14\xf4\x79\x9e\x2b\xec\x6b\xa1\xf5\xf6\xa0\x67\x56\x54\xbd\xb2\x99\xfd\xcb\x6d\x43\x20\x16\x38\xc7\x7e\xca\xed\x22\x19\x95\x41\x2d\x16\x60\xab\xf0\xeb\x63\xb9\x18\xb2\xcf\xc8\x2e\x98\xab\xcb\xd2\x56\x1e\x47\x0f\xb3\x65\xd8\x88\x2d\x0e\x17\x6c\x29\xfd\x46\x4a\x24\x52\xb9\x2a\x94\xac\x5c\x18\x9e\xb8\x7e\xd1\xf3\x86\x05\x38\xdb\xba\x6f\x38\x03\xb1\x9a\x4d\xa5\xbc\x97\x86\x09\x47\x56\xb1\x60\xbf\x65\x02\xf9\x93\xf0\x1e\x7d\x15\xb6\xa2\xb3\xb4\xf3\xf1\xf7\x21\x7b\x58\x29\xc7\x14\x8e\xbe\x6d\xcb\x32\xf6\x0d\xd2\xb6\x75\x9d\x0c\xc1\x74\x7f\xf9\x58\x30\x65\x9c\x97\x82\x98\x1d\x85\x14\x99\xe0\x37\xbf\x92\x5b\xfa\x43\x9b\x7c\xae\xd5\x8b\xd0\xd2\xf8\xdf\x87\xf0\xbf\x00\x00\x00\xff\xff\xd0\x02\x13\x28\x8e\x13\x00\x00") +var _runtimeHelpKeybindingsMd = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x74\x58\x59\x73\x1b\x39\x0e\x7e\x1e\xfc\x0a\x96\xf2\x32\x53\x6b\xcb\xd6\x69\x7b\xde\x1c\xdb\x1c\xe7\xb4\xe3\x63\x32\x99\x27\x51\xdd\x6c\x89\x1b\x8a\xec\x34\xd9\x56\xb4\x5b\xbb\xbf\x7d\x0b\x60\x1f\xa4\xac\x4d\x55\x60\x37\x00\x82\x20\x0e\xe2\xa3\xdf\xb0\x0f\x72\xb7\x54\x26\x57\x66\xe5\x00\x6e\x65\x25\x99\xa8\x24\xf3\x6b\xc9\x72\x59\x88\x5a\x7b\xf6\xbd\xd7\x60\xca\xb0\x7f\x3a\x6b\x58\x61\xab\x0d\xdb\xae\x55\xb6\x66\xca\x31\xa1\x9d\x65\x6b\xbb\x85\x9d\xad\x59\x26\x0c\xab\x24\xae\x40\x2b\x1b\xe6\x2d\xdb\xd9\xba\x62\x5a\x7d\x57\x66\x35\x04\x58\x2c\x16\x68\x03\xfe\x0d\xbf\x0c\x9e\xcb\xc1\xef\x2c\xfe\x37\xb8\xaa\x2b\x67\xab\xe7\x72\x70\x04\xbf\x0c\xae\xed\xd6\x24\x0a\x8d\x98\xf8\xa8\xf0\xa0\x56\x6b\x1f\x6b\x34\x0a\x81\x8f\x1a\x1f\x65\xe1\x0f\x99\x20\x3e\x2a\x3c\xae\x55\xe1\x63\x3f\x06\x8f\x52\xcb\xcc\x37\x2e\x90\x38\xf6\xa3\x11\x77\x2e\x90\x42\xbc\x4b\xa3\x90\x6e\x10\x3b\xda\x28\xf4\x3e\x5e\x6a\x9f\xba\x39\xf8\x6a\xab\xbc\x33\x70\xa9\x7d\x7a\x4e\x12\x27\xcb\xd3\x3d\x9a\x0d\x0e\x6b\x75\x3b\x45\x5a\xdd\x56\x57\xbe\xd2\x89\x2b\x83\x47\x2f\x2a\x7f\x57\x7c\x54\x46\x76\x1a\x89\x37\x83\x1b\x93\xef\xc9\x93\x7d\x9a\x6d\x9e\xec\x21\x4b\x89\xdf\x9d\xe6\x6b\x8b\x49\x9d\x34\x19\x24\x7b\x9d\x46\x52\x2a\x8d\xc6\x8d\xc9\xd3\x9d\x5a\x33\xa9\x4f\xa9\x4e\x6b\x28\xf6\x86\x34\x6e\x8c\x97\x55\x52\x6b\xef\x8c\x93\x95\x0f\x7c\xca\x74\x29\x32\x79\x40\x23\xf0\x51\xe3\xad\xc8\xbe\xbb\x58\x2b\xe2\x24\xf2\x71\x5b\x2b\xa9\xfc\x52\xfb\xe3\xc4\xc6\xe0\x5a\x6a\xe9\xe5\x7e\xbd\x1c\x27\x86\x0e\x29\x3d\x89\x65\xda\x7a\x8d\xaf\x4f\x62\x79\xf4\xce\xe4\xd2\xf8\x70\x7e\x65\x4d\x17\x9f\xbb\xe4\x6c\x77\xa5\x34\x5c\xe9\x28\x99\x89\xf8\x51\xbc\xf4\x22\x9e\x88\xb8\x8a\x12\xf3\xf9\x95\xe8\xb3\xfc\xd9\xe7\xe4\xfe\x95\xf8\xbe\x92\x2f\xca\xd6\xae\x53\xf9\x3b\x51\x79\x36\xb9\xed\x44\xdf\x12\xd1\x83\x8c\x44\x57\xe9\xb5\x61\xcb\x5d\x27\xfa\x6b\xef\x46\xe9\xbd\xf9\xb0\x2f\x49\xaa\xf4\x3a\x91\x5e\xd7\xa5\x56\x99\xf0\x32\xd1\xf9\x33\xd1\xb9\x17\xce\xf7\xb2\xcb\x34\x80\x14\xff\x4b\xad\x3b\xf9\x53\x22\xbf\xcc\x73\x4c\x62\xd2\x94\x8f\x3f\x9a\x02\x6f\x83\x14\x6b\x50\x4d\x68\xe1\xd6\x54\x38\x18\xe5\x56\x7a\x6b\x37\x32\xbd\x24\xfb\xc6\xc0\xf2\x4f\x0b\x25\x6e\xab\x64\xe5\xc1\xc6\x4c\xd6\xef\x35\xe6\xbd\x58\xc9\x43\xad\xdd\xf0\x5b\x95\x43\xbd\xdd\xf1\xdb\x7d\xfe\x48\x82\xf3\x64\x57\x2b\x2d\x6f\xa5\x2e\xfb\x00\x1d\x50\x78\xa8\x75\xd3\xbb\x74\xf3\x25\x1a\xef\xeb\x4d\xd9\xa5\x2e\x74\x50\xec\x69\xc3\xa1\x10\xb9\x6c\x2f\x44\x57\x5a\x0a\x8c\x83\x8f\xca\xf4\x6d\x9a\xdd\xb5\xd4\xfa\x93\xcd\xfb\xec\x7f\x49\xe4\x5f\x6a\x15\xc5\x70\xaf\x56\x37\x1b\x61\xf2\x64\xf1\xd7\x44\x03\x73\xfb\x58\xea\xc8\xc2\xf3\x81\xc3\x7f\x12\x59\xd5\xf7\xc3\xfb\xb4\x30\xb5\xd8\x75\x72\xf8\xe5\xe4\x84\xdd\x6c\x44\xe6\x8e\x9d\xdf\x69\x19\x43\x82\xe6\xbe\x29\xf0\x9a\x79\x35\x70\x8e\x97\x2d\x3b\xb9\x9c\x04\x5d\xf6\x7b\xe3\x00\x05\x18\xe0\xbd\x79\x82\x6c\xac\x90\x14\x18\x20\xd7\xf4\xdc\xa6\x10\xc8\xcf\x77\xc6\xcb\x55\x25\xf0\xe2\x62\x5b\xe5\xd7\xac\x50\x5a\xb2\x8d\x30\x62\x25\x2b\x74\x97\x8f\x70\xe1\x5e\x81\x70\xba\x27\xbb\x3b\x8b\x4f\xf1\xb3\xcb\x01\x3f\xc3\xcf\xee\xda\xe2\xa3\xd3\x44\x1c\xf2\xdf\x7e\xff\x07\x11\x0e\xc0\xb7\x06\x0b\xd5\x2e\xc0\x29\x11\xa0\x94\x63\xff\x60\xa2\xaa\xec\xd6\x21\x32\xda\xd8\x17\xc9\xb6\xb6\xca\xd9\x72\x47\x3f\x87\x80\xb9\x60\x5a\x16\x9e\x09\x93\xb3\x0a\xc3\x19\xd4\xd0\x48\x46\xc7\xc5\x95\xf8\xe5\x30\x84\xa4\x26\x4d\xce\x6c\x41\x4c\xad\x8c\x3c\x42\x26\x64\x68\xa9\x2e\x49\x21\xb7\x5b\xf3\xda\xcc\xff\xb3\xb1\xac\x8b\x42\x56\xc3\xfe\x10\x6b\xab\x73\xe6\x70\x3c\x86\x98\x0a\xad\x1b\x5d\x27\xc9\xec\x46\x1a\xcf\x04\x8d\x0b\x3a\x98\xa3\xcb\x0b\x21\xa2\x26\x85\x00\xfd\xde\xb0\x07\xd9\x14\x0e\xc5\x02\xe0\x09\x77\x6b\xd1\xe5\x46\xec\xd8\x52\x22\x7a\xb4\xb5\xc9\x59\xed\x50\x0f\xfd\x59\xfc\xf7\x64\x98\x59\x53\xa8\xd5\xc9\x46\x65\x95\x3d\x69\x97\x0c\x11\x49\x2e\x00\x53\x3c\x64\x37\x22\x5b\xa3\x59\x84\xa4\xc1\x82\xb7\x4c\x98\xc6\xad\x21\x00\xb7\x15\x93\x3f\xc5\xa6\xd4\xf2\x08\x65\x04\x52\x17\x18\xf0\xe3\xdd\x02\x19\xb5\xc9\x2d\xc5\x22\x30\xff\x45\xcc\x4a\xe6\xf6\x88\x11\xb4\xb5\xb5\xce\x59\x59\x7b\x74\x0a\x0a\xab\xb5\xdd\xa2\x8b\xca\x04\x2f\x53\xaf\xa8\xf0\xf6\xf0\x6e\x3b\x93\xd2\x29\x85\x03\x2c\x0c\xa7\xfd\xe2\x21\x64\x9d\xad\x85\x32\x2c\x0b\x5d\xef\xd8\x76\x2d\x5b\x84\x8d\x51\x65\xc9\xa9\x54\x41\x9e\x6e\x85\xf1\x0c\x9b\x24\x24\x43\xbc\x48\xc0\x63\xfd\xa8\x95\x67\x2d\x48\xa7\xd3\x2b\x8f\xc0\x5c\x32\x67\x7f\x8f\x3d\x0d\x03\x06\xd7\xb7\x6d\x71\x44\xd5\xdd\xfa\xf7\x86\xbd\x55\x26\x17\x4b\x2d\xbb\xa4\xa3\xfd\x65\xcb\xec\x93\xab\x95\xf3\x58\x2a\x87\x5e\x13\x99\x35\x5e\x28\xe3\xd8\xc6\x06\x25\x8c\x62\x69\x9d\x53\xfb\x86\xc9\x5e\x78\x6f\xec\xfa\xbe\x3a\x62\xcb\xda\x33\x63\x7d\x54\x8f\x9b\x21\xa3\x57\x0c\x3e\x4b\x58\x51\x6b\xdd\x79\xb0\xb4\x7e\x8d\x45\x10\xf3\xf6\x37\x0b\x41\x80\xf6\xae\x81\xfe\x7a\x81\x78\x32\x41\x3a\x83\xa0\x7f\x52\x40\xf4\xfe\x80\x68\x1c\x42\x37\xf8\x20\xc1\x9e\x10\xa1\x4c\x68\x1f\x1e\xd0\x3f\x31\xa0\x7f\x4c\x40\xf4\x6c\x80\xee\xaa\x85\xf6\x76\x85\x3d\xd0\x0f\x29\xbc\x87\x1e\x03\x06\x71\x8a\x09\xe1\x00\x4a\x87\x57\x78\x1c\x02\x46\xfc\x2c\xb7\xba\xff\x22\x74\x0b\x1d\xe0\x6c\x0c\xc3\x95\x44\x5c\x0c\x1d\xaa\x04\xac\x22\x22\x97\x0e\xf0\x2a\x85\x16\xeb\x41\x8c\xea\x00\x3b\x03\xb0\x19\x00\x31\x19\x5c\xd5\x18\x3b\xc2\x59\x90\x20\xaa\x66\x9f\xc6\xad\x04\xb0\xc2\x5d\xed\x53\x06\xe1\x2c\xe8\x10\x15\xb4\xd8\x15\x42\x12\x30\xf8\x4d\x66\xbb\x9c\xde\x0a\x5d\x34\xbc\xf6\xd7\x90\x90\x28\x40\x7d\x60\xfa\x71\x02\x11\xb2\x80\x16\x43\x40\x04\x08\xa0\x1b\xfd\x10\x4d\x72\xc0\xfe\x22\x82\xfe\x05\x6c\x07\x11\x8a\x83\x06\xaf\x41\x37\xdb\x3b\x69\xf8\x8a\x66\x3a\x74\xd3\x3b\x74\x6b\xdb\x10\x3e\xea\x47\xec\x98\xae\xfa\x69\x2e\xc5\xf7\x42\xd3\x07\xcf\x25\xd0\x99\x43\xc5\x50\x9d\x3c\x97\xcd\x8f\xa6\x8a\xec\xd6\x84\xf2\xb2\x5b\xd3\x54\x7d\x48\xfc\xab\x78\xda\x0d\x05\xac\xa9\x88\xb6\x4c\x28\x64\x37\x3f\x95\x0f\x21\x82\x2b\x61\x32\xa9\xe1\xbe\x52\xc6\xc3\xbd\xa8\x5d\x28\x2d\x2f\x96\xc0\x47\xc0\xc7\xc0\x27\xc0\xa7\xc0\x67\xc0\xe7\xc0\xcf\x80\x9f\x03\xbf\x00\x3e\x3a\x05\x3e\x1a\x01\x1f\x8d\x81\x8f\x26\xc0\x47\x53\xe0\xa3\x19\xf0\xd1\x1c\xf8\xe8\x0c\xf8\xe8\x1c\xf8\xe8\x02\xf8\xf8\x14\xf8\x18\xed\x8c\x81\x8f\x27\xc0\xc7\x53\xe0\xe3\x19\xf0\xf1\x1c\xf8\xf8\x0c\xf8\xf8\x1c\xf8\xf8\x02\xf8\xe4\x14\xf8\x64\x04\x7c\x82\x1b\x4e\x80\x4f\xa6\xc0\x27\x33\xe0\x93\x39\xf0\xc9\x19\xf0\xc9\x39\xf0\xc9\x05\xf0\xe9\x29\xf0\xe9\x08\xf8\x74\x0c\x7c\x8a\x9e\x4d\x81\x4f\x67\xc0\xa7\x73\xe0\xd3\x33\xe0\xd3\x73\xe0\xd3\x0b\xe0\xb3\x53\xe0\xb3\x11\xf0\xd9\x18\xf8\x6c\x02\x7c\x86\x47\x98\x01\x9f\xcd\x81\xcf\xce\x80\xcf\xce\x81\xcf\x2e\x80\xcf\x4f\x81\xcf\x47\xc0\xe7\x63\xe0\xf3\x09\xf0\xf9\x94\x00\x41\xe8\x31\x7a\x23\x10\x7d\x4b\xf4\x8a\xe8\x35\xd1\x1b\xa2\x9c\xe8\x1f\x44\x6f\x89\xbe\x23\xfa\x9e\xe8\x07\xa2\x1f\x89\x7e\x22\xfa\x99\xe8\x1d\xd1\x7b\xa2\x5f\x88\x3e\x84\x5d\x89\x3e\x11\x7d\x26\xfa\x27\xd1\xaf\x44\xff\x22\xfa\x8d\xe8\xdf\xd0\xfe\xe5\xe0\xf1\x07\x24\x6f\x0d\x88\xde\x26\xc1\x69\x51\x09\x1f\x4c\x9a\x5c\x56\x2e\xb3\x55\x7c\x7b\x60\x89\xdf\xb8\x0c\xff\x8b\x12\x0b\x06\x6b\xa9\x7f\xcd\x86\x82\xbe\xcc\x73\x85\x7d\x2d\xb4\xde\x1d\xf5\xc8\x8a\xaa\x57\x36\xb3\x7f\xb9\x6b\x00\xc4\x02\xe7\xd8\x77\xb9\x5b\x24\xa3\x32\xb0\xc5\x02\x6c\x15\x7e\x7d\x2e\x17\x43\xf6\x09\xd1\x05\x73\x75\x59\xda\xca\xe3\xe8\x61\xb6\x0c\x1b\xb1\xc5\xf1\x82\x2d\xa5\xdf\x4a\x89\x40\x2a\x57\x85\x92\x95\x0b\xc3\x13\xd7\x2f\x7a\xdc\xb0\x00\x67\x5b\xf3\x0d\x66\x20\x54\xb3\xad\x94\xf7\xd2\x30\xe1\x48\x2a\x16\xec\xd7\x4c\x20\x7e\x12\xde\xa3\xad\xc2\x56\x74\x96\x76\x3e\xfe\x36\x64\x4f\x6b\xe5\x98\xc2\xd1\xb7\x6b\x51\xc6\xa1\x41\xda\xb6\xae\x93\xc1\x99\xee\x0f\x30\x0b\xa6\x8c\xf3\x52\x10\xb2\x23\x97\x22\x11\xfc\xea\xd7\x72\x47\x7f\xef\x93\x3f\x6a\xf5\x22\xb4\x34\xfe\xb7\x21\xfc\x2f\x00\x00\xff\xff\xb8\xe0\xb7\x80\x15\x14\x00\x00") func runtimeHelpKeybindingsMdBytes() ([]byte, error) { return bindataRead( @@ -481,7 +481,7 @@ func runtimeHelpOptionsMd() (*asset, error) { return a, nil } -var _runtimeHelpPluginsMd = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x8c\x58\x5b\x8f\xdc\xb6\x92\x7e\xd7\xaf\x28\x4c\x1e\xd2\x1d\x74\x34\xd9\xd7\x06\xfc\x60\x7b\x13\x3b\xd9\xc4\x0e\x30\x93\x0d\x82\xc5\x02\x2c\x49\xa5\x16\x33\x14\xa9\xc3\x4b\xb7\xfb\x04\x39\xbf\xfd\xa0\x8a\xd4\xa5\xc7\x93\xe0\x18\x30\x46\x2d\x91\x75\xf9\x58\x97\xaf\xf8\x05\xfc\x6c\xd2\x49\xdb\x50\x55\x3f\xe9\xd6\x3b\x08\x69\x9a\x9c\x8f\x01\x5a\x4f\x18\xb5\x3d\xc1\x94\x17\xc0\x45\xc7\x01\x10\x82\x1e\x27\x43\xf0\x63\x42\x08\xd7\x10\x69\xac\xe1\xdb\x33\xf9\x6b\x59\x07\x03\x06\xc0\x6a\x44\x6d\x21\xb4\x5e\x4f\x11\x2e\x83\x6e\x07\xd0\x01\x7c\xb2\x80\x11\x42\x44\x1f\xd3\x54\xde\x87\xc1\x25\xd3\x41\x43\x30\x19\x6c\xa9\x03\x6d\xa1\x52\xff\xba\xaf\x5b\x67\x7b\x7d\xba\x1f\xd9\xac\xfb\x62\x44\xf9\xfb\x01\x47\xda\x3c\xd6\x26\xa1\xaa\xab\xea\x71\x20\x4f\x80\xfc\x1f\x6c\x1a\x1b\xf2\xe0\x7a\x68\xd1\x98\x06\xdb\x27\xe8\x93\x6d\xa3\x76\xec\x8a\x68\xbe\xba\x04\x2d\xda\xec\x29\xb1\xde\xab\x4b\xbe\x2a\x7e\x44\x27\xf6\xb6\xae\x23\x36\x3a\xea\x91\x02\xb8\x38\x90\x87\x38\xa0\x9d\xbd\xa8\xe1\x71\x20\xb0\x38\x32\x54\xa1\x1d\x68\x24\xd0\xa1\x52\xce\xbe\x16\x65\xbb\xb3\xa6\xcb\x5e\xd5\xf0\x9d\xf3\x40\x9f\x50\xc0\xc3\xc5\x96\x5b\x70\x48\x80\x64\x55\x10\x07\x82\x14\xc8\x43\xc0\x33\x85\x8a\x7f\x36\xa9\xef\xc9\xc3\xa5\xe0\x75\xac\x2a\xa5\x94\x49\x58\x2d\xc2\x9c\x7d\xc0\x33\x65\x95\x15\x00\x40\x5d\xd7\xf2\xd7\x53\x4c\xde\x42\x8f\x26\x50\x45\xb6\xe3\x9d\x82\x17\x28\x5e\xac\xe0\x8c\x5e\x63\x63\xd8\x76\x40\xf0\xd4\x93\x27\xdb\x12\xa3\xc0\xaa\x79\x91\x3c\x60\x56\xa4\x03\x34\xc4\x1e\xd3\x27\x6a\x53\xa4\x0e\x9c\xad\xab\xc7\x41\x07\x11\x60\x46\x17\x22\xa0\xb9\xe0\x35\xc8\xb6\x36\x79\x4f\x36\x8a\x9c\xc3\x33\xf8\x4f\x14\x73\x6c\xa9\xb7\xc9\xff\xaf\xa6\xcb\x6e\xaf\x00\x03\x5c\xc8\x98\xba\xaa\x5e\x1b\x03\x78\x46\x6d\xc4\x3c\x2c\x27\xc8\x87\x6c\x74\x88\x39\x5e\x58\xc5\x13\x5d\x1b\x6d\x3b\x6d\x4f\x01\x02\x15\x3c\x7a\xf9\x34\x90\x99\x72\x78\x04\xda\x44\x41\x89\x3c\x34\xc1\xcd\x00\x21\x34\xce\x19\xe2\xe3\x9d\xa8\xd5\xfd\x95\x7d\xbc\x0c\x54\x8e\x3d\x03\x51\xad\x21\xeb\xc9\xb8\x16\xd9\x8a\x02\x54\x9b\x7c\x70\x1e\x9c\x07\xeb\x22\x60\x1f\xcb\xbe\x15\xb7\xd6\x71\x08\x44\xaa\xab\xea\x83\x8b\x7c\xd0\x1c\x5d\x62\xda\x1c\xa9\x01\x5c\xdb\x26\xff\xf9\x76\xce\xad\x86\xc8\x2e\x42\xba\x1a\xbe\xef\x19\xc9\xea\x82\x36\x02\xae\xc1\xde\x50\xef\x3c\x3d\xd3\x3d\x9f\xd6\x81\x43\x0b\xd4\xe4\xa9\x04\x29\x07\xe8\xf7\x8c\x23\x1b\x88\x81\x72\xbc\x15\x28\x32\x36\xd4\x15\x4c\x34\x85\x05\x92\xe2\xe7\x46\xcb\x8a\xcd\xac\xac\x5a\xdd\x30\x09\x73\x42\xcd\xf6\x07\x3e\x60\x9b\xb3\x2a\x05\xea\x93\x59\x3d\x88\x0e\x9e\xac\xbb\x00\x36\x2e\x6d\x8a\x88\xe0\xba\xfa\xc4\x99\xc6\x41\xf3\x71\xa2\x39\xd7\xd6\xb5\x2c\x8b\x3a\xb6\xd6\x72\x6a\x71\x59\xa0\x4b\x0e\x66\x1d\xc0\x4d\xc4\x5e\xa1\xed\xc4\x38\x4b\x97\x6a\xfe\x34\x61\x08\x12\x5a\x9c\xde\x39\xa8\x8b\x79\xbd\xf3\x10\x28\x4a\x65\xe4\xb3\x37\xe0\xa6\x1c\x4e\x0d\x06\xc9\x03\x11\xd6\x6b\x43\xf1\x3a\xd1\xa1\xea\x37\x79\xcf\x38\xf2\x46\xd7\xf7\xa0\x22\x36\x21\xba\x30\x61\x4b\x41\x81\xb3\xe6\x2a\xc2\xdf\x39\xd9\x2c\x18\x8b\xac\xab\x04\x7b\x36\xb6\xae\xaa\xaf\xbf\xfe\xfa\xaf\x2a\xdd\x1a\xda\xec\xd3\x9c\xd2\x21\x87\x98\x2c\x5e\xf2\x28\x3a\xc9\x3f\x6d\x2b\xe7\x3b\x3e\x1d\x07\xd8\xb6\x14\x72\xba\x6a\x6b\xa5\xd0\xf8\x27\x49\x27\xd7\x83\x54\xe1\x1a\xde\xb3\x5a\x29\x11\x9c\x7c\xb0\xe3\xc5\xec\x26\x04\x7d\xb2\x18\x93\xa7\x20\x0e\x6f\x2c\xf1\x04\x27\x7d\x26\x0b\x29\xb0\xeb\xef\xdc\x97\xa1\x6c\x91\xee\xb1\x3f\x56\xd5\x57\xa0\x3e\x3e\xa8\xe3\x5a\x84\xf2\x01\xf2\xb6\x6c\xcf\xc7\x87\x6c\x80\x9c\x69\x2e\x25\xe6\xca\x15\x33\xa3\x69\xd9\x90\x7c\x4a\xbc\x3a\xe0\x48\x15\x86\xac\xea\xdd\xc7\x8f\x0f\x8b\xe0\x03\x04\x07\xaa\x43\x7f\xd1\x56\x1d\x40\x5d\xb4\xed\xdc\x25\xf0\xa3\xd1\x36\x7d\xe2\x87\xde\x13\x35\xa1\x53\x75\x5d\xef\xc5\x34\x3e\x27\x75\x9c\x5d\x76\x3d\xa0\x31\xa2\x87\x3f\x6c\xcc\xd1\xec\x22\xc9\x96\x36\xf9\x47\x6c\xd4\xb1\x80\xd9\xd1\xa7\xb9\x14\xcd\x85\x50\xf6\x96\xca\x25\xcf\x2c\x5c\xf6\x8e\x14\x02\xd9\x13\x79\x75\x04\x43\x31\xc8\x39\x05\xb2\x1d\xf0\x17\x3c\x31\x24\x6e\x6d\x0f\xce\xcf\xfd\x6b\xf2\x6e\x9c\x62\x10\x21\xef\x28\x7e\x94\xb0\xdc\x59\x1c\x09\x42\xf4\xda\x9e\xf6\xea\x58\x72\x39\xe3\x74\x46\x93\x68\x36\xcc\xd3\x3f\x12\x49\x3d\xcd\xf1\x2c\x62\x5e\x77\xdd\xe7\x62\x0e\x65\xa3\xb6\x91\x7c\x8f\x2d\xfd\xf1\x27\x4b\x0e\x6c\x2b\x4b\xca\xa7\x9d\xa5\xe4\xc2\xbe\xbc\xe5\x5e\x94\x37\xef\xd4\x66\xbb\x82\x91\x50\xa2\xf6\x9a\x43\x43\x5b\x78\xe7\x32\xfa\x0f\x8b\x27\x59\xe2\xac\x7d\x75\xe9\x65\xc5\x73\xe3\xe2\xc5\x25\x89\x2f\xda\x18\xb6\x20\x50\xae\x58\x65\xe5\xc9\xb8\x06\x8d\xb9\x1e\x20\x59\xc3\x19\xa0\x63\x09\xf1\x9c\xde\x9c\x98\x79\x69\x3d\x5b\xf4\x23\x7f\xf9\x1b\xb3\x0e\x73\xaf\xfe\xea\x8d\xfc\xfd\x3b\x33\xd9\xa2\xf5\x34\x44\x67\x0e\xa6\x75\x6d\x16\x26\xca\xdf\x68\xdb\xfd\x0f\x5d\x77\x4f\x74\x3d\x2c\x25\x77\x81\x82\x1b\x60\x00\xf5\x44\x57\xc5\x00\xa8\xbc\x40\xc9\xce\x9f\xf0\x89\xde\xba\x71\x44\xdb\xc9\x69\x1e\x56\x0e\x32\x1b\x5d\xaa\xb2\xe4\x6d\x5d\xd7\x6f\x97\x9f\x2c\x9b\xed\xcc\x91\xc6\xd8\xb4\x59\x52\x69\xdc\x2c\x6f\x2e\xbb\x8c\xb2\x14\x5e\x50\xb3\x02\x95\x6b\xd9\xdc\x10\x84\x92\xfc\x12\x08\xbe\x91\x82\xb7\xd5\x1a\x9d\xd0\x81\x0f\x6e\xd5\x5d\x6f\xad\x2f\xef\x76\xcf\x4c\xdf\xab\xe3\xad\x79\x6a\x5d\x2b\x48\x70\xbb\xcb\xa6\x6e\x60\xc8\xb8\xac\xa4\xe3\x36\x3b\xb6\x94\x45\x16\xbe\x47\xdb\x99\x05\xc2\x76\xec\xb6\x69\x95\xec\xf6\x70\x0b\x3a\x9b\x6d\x0f\x03\x19\x33\xef\x0d\xf2\x63\x11\x70\xc8\xa9\xc4\x87\x75\xce\x5d\xf7\x00\x17\xd4\xf1\xd1\xbd\x35\x2e\xe4\x37\x2f\x28\x11\x29\xe2\x76\x16\x9b\x99\xa8\xda\xc8\x52\xb2\xf5\x85\xb6\x2d\xfe\x95\x13\x2c\x0d\x9b\xe9\x67\x09\x3a\xee\xbe\x27\xef\x52\x11\xc9\x2a\xd4\xc6\x9e\x22\x55\xf2\x02\xa7\xc9\xb0\x60\xdd\x3f\x53\xcc\xa5\xd8\x27\x92\x46\x94\x93\x5b\x9a\x90\x8e\xb3\x3e\x16\x58\x48\x4a\xb5\x10\x54\xae\xe6\x25\x71\xa9\xd3\xd1\xf9\x7c\xf8\x3f\xb8\xe6\x81\xd9\xf6\x06\xf4\x03\x73\xdd\xd8\xb9\x14\xcb\x13\x79\xcf\x4f\xdf\x7e\x62\x15\x65\x09\x17\x48\xf4\x27\x09\xe6\x9b\x40\x11\x69\x61\x69\x20\xcf\x30\x5d\xa0\x79\x01\x0f\x35\xab\x55\xe5\x91\xbc\x57\xe2\xa5\xca\xca\x15\xcb\xe7\xa6\xb7\x92\xb9\xe8\x84\xf8\x3c\x1f\x3f\x24\x51\x1a\xda\x92\x94\x8d\x25\x33\xd1\x1d\x70\x9a\x72\xe1\x2c\xc0\xac\xd6\x70\xc5\xe7\x96\x2d\xf9\xa4\x66\x67\x95\x68\x17\x46\xe6\x4f\x69\x24\x1b\x6f\x14\x72\x7a\x15\x76\x33\x53\xd6\xcf\xe6\xa3\x05\x74\x2a\x81\xfe\x15\xa7\x6e\xfd\x76\xec\x0e\xd0\x61\xc4\x9b\xe2\x6b\x3b\x98\x5f\x70\x1c\x67\x99\x21\x76\x7a\xa1\xdf\xbf\xbb\x66\x36\x75\x3d\x4e\x37\xdd\x4a\x66\x61\x4f\x6c\x20\xf2\xfa\x2a\xcf\x12\x23\x5e\x21\x10\x8d\x60\xf4\x13\x53\x9d\x30\x72\x5d\x59\xfa\xf0\xc2\x66\x56\x68\x9b\x14\x21\xb8\x71\x69\x6b\xae\xf9\x9d\xda\x18\xaa\x85\xc3\x36\xd7\xcc\xcf\x96\x1d\x03\x9e\x09\x46\x6e\x3d\x23\xc5\xc1\x75\xa1\xbe\x19\x44\xe6\x92\x80\x99\x36\x66\x79\x55\x06\x54\x46\xdd\x42\x06\xf0\xe5\xd1\x12\x8d\xb9\x1d\xfd\x56\xd9\x47\x99\xd5\x64\x24\xdb\xab\xba\xfa\xad\x6c\x09\x44\xc5\xc2\x8d\xab\x93\x0b\x41\x6f\xe7\x9f\x17\x86\x1e\x9e\x72\x20\xba\x49\xb7\xb5\x4c\x76\x33\x7d\x77\xf6\x33\x23\x79\x4b\x2b\xa5\xf2\x05\x22\x2f\x24\x7d\x09\xde\x9c\xae\x15\xcf\x3a\xc9\xd6\xf0\x7d\x19\x3f\x3d\x71\x92\xf0\xe1\x9f\xc8\x92\x97\x9e\x15\xa2\x6e\x9f\x4a\x0a\x8b\x5b\x39\xa6\x47\x94\x97\x08\xcb\x60\x5d\xe1\xd9\x69\x91\x91\x7c\xe0\x9a\x37\x79\xd7\x18\x1a\xc3\x01\xb6\x6c\x59\xf7\x05\x47\xee\x25\xcf\x60\xe3\xe2\xb2\x57\x0c\x83\x2a\x43\x2f\x63\xf8\x43\x0a\x31\x8f\x36\x2f\xa3\xcc\xf4\x6f\xae\x43\x17\x67\xbf\x8c\x45\xf8\x22\x02\xf0\x84\x9a\x5b\xce\x2f\x61\x2e\x0c\x9b\x63\x3f\x2c\xe7\x2a\x33\xe3\x86\x30\x97\x76\x8f\x21\xb8\x56\xcb\x3c\x58\x88\x0f\x96\x06\xd2\x5c\x0b\xff\x5d\x2d\xab\xdf\xa4\x5e\xcd\xc3\xf0\xc2\xf4\x36\x42\xd5\x77\xda\xd0\xe3\x75\x22\xa6\xa5\x3f\x63\x1c\xf8\xef\x07\x6e\xb5\x3c\xd6\xcb\x19\x2f\x71\x51\x62\xf7\x85\xf0\x2b\x7a\x45\xe0\xca\x2d\x57\xae\x8d\x9e\x8e\xb7\xc4\xb3\xfe\x29\x13\xcd\xdd\x18\x4e\x5c\x3a\x6f\x88\xde\xed\xca\x6f\xbd\x77\xfe\x3f\x58\xf7\x1b\x85\x0f\xee\x67\x21\xa8\xbb\xcc\x53\xe7\x1a\x02\xbb\xdc\xf0\x72\x93\xbb\xdd\x75\xb3\xe1\x00\x83\x0e\xd1\xf9\xeb\xa3\x0c\x0f\x9f\x51\x16\x79\xbd\xa1\x2c\xb0\x5b\xb8\x58\x16\x5d\xe5\x49\x19\xca\xa4\x1c\x22\xda\x0e\x7d\x07\xb3\xf8\xdf\x97\xe0\xf9\x4b\x0b\xee\xee\x0e\xf0\x0d\x8b\xfa\x02\x5e\xa7\xe8\xe6\x29\x76\x69\x18\x4b\xc5\xad\xaa\x07\x49\x63\x99\xb9\xcb\xec\xe7\xc0\x10\x7a\x0b\x83\xbb\xcc\x94\xe4\x19\xad\x29\x8d\xe4\x96\xa2\x94\x3b\x9e\x4c\x46\x17\xde\x93\x3b\xd8\xaf\x3a\x0e\xbb\x87\xec\xa6\xbc\xd9\x57\xdc\xdc\xa4\x16\xbf\x2a\x0f\xc7\x34\x4d\xe4\x77\xf9\x0b\xfa\x28\x1f\xd0\xc7\xf9\x3d\x13\xbb\x72\xfb\x91\x01\xab\x43\x6a\x66\xa1\xff\x75\x28\xef\x0c\xd9\x5d\xd6\xb0\x7f\xf5\x4a\x1e\xe4\x1a\x69\xbd\x7a\x9a\xb1\xd8\x69\x3b\x25\xb1\x23\x5b\x8c\x42\x7b\x16\x82\xf7\x0a\xfe\xb8\x7b\x4f\xc6\xb8\xbb\x03\xdc\xfd\xea\xbc\xe9\xf8\xe1\x3b\x27\xbf\xdf\xa0\xbf\xfb\x73\xd9\xe9\x29\x24\xc3\xe6\xfe\xc1\xef\xd8\x4c\x2e\x0e\xfa\x70\xe6\xac\x9f\x50\xfb\xb0\xbb\x15\xbe\x87\x8e\xd9\xb4\xee\xb7\xe8\x9c\x99\x5d\xb1\x45\x9c\x01\xd2\x47\xf9\x5f\xe4\xd0\xaf\xb5\x0d\xe4\xe3\x2e\x2b\x3a\xc0\x39\xdf\x99\x01\x3b\xb6\xfe\x29\xd8\xe4\x45\xcf\x9c\xee\x9d\xdb\xa1\x3f\xf1\xbe\x25\x66\x8e\x73\xf6\xc8\x07\x59\xbf\xa5\xde\x77\x7d\xf6\xb5\x84\x45\x9d\x7f\x3e\xa3\xb7\xcb\xd7\x19\xd5\xbb\xfd\x3e\x5f\xd9\x7d\x01\xff\x4d\x3d\x32\x2e\xd3\x7c\x6f\xbb\xe9\x2e\x32\xaa\x97\x0f\x87\xa5\x93\x74\xb7\x3b\x64\xd6\x8d\xe4\xb9\x9a\x9c\x9c\x3a\xe4\xa0\x43\x8e\x67\xa1\x77\xd2\x3d\xf2\xa5\x03\xe7\x5b\xbe\x61\x93\xcb\x61\x1e\xa7\x75\x7c\x9f\x1a\xf0\x34\xb9\xc0\x04\xed\x0a\xff\x37\x90\xa7\xff\xdf\x0d\x31\x4e\xe1\x78\x7f\x7f\xd2\x71\x48\x0d\x1b\x7e\xff\xcf\x2b\x75\xba\xd3\x58\xae\x70\xa3\x27\xba\x1f\x31\x44\xf2\xf7\x3e\xd9\xa8\x97\x3b\xdc\xb0\xaf\xab\x7f\x07\x00\x00\xff\xff\x6d\x20\xae\xb7\x89\x16\x00\x00") +var _runtimeHelpPluginsMd = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x8c\x58\xdd\x8f\xdc\xb6\x11\x7f\xd7\x5f\x31\xb8\x3c\x78\x37\xd8\xe8\xd2\xd7\x03\xfc\x60\xbb\x89\x9d\x34\xb1\x83\xde\xa5\x41\x50\x14\xe0\x48\x1a\xad\x98\xa3\x48\x95\x1f\xbb\xde\x1a\xe9\xdf\x5e\xcc\x90\xfa\xd8\xf3\x25\xa8\x01\xe3\xb4\x12\x39\x33\xfc\xcd\xd7\x6f\xf8\x05\xfc\x64\xd2\x51\xdb\x50\x55\x3f\xea\xd6\x3b\x08\x69\x9a\x9c\x8f\x01\x5a\x4f\x18\xb5\x3d\xc2\x94\x17\xc0\x59\xc7\x01\x10\x82\x1e\x27\x43\xf0\x43\x42\x08\x97\x10\x69\xac\xe1\x9b\x13\xf9\x4b\x59\x07\x03\x06\xc0\x6a\x44\x6d\x21\xb4\x5e\x4f\x11\xce\x83\x6e\x07\xd0\x01\x7c\xb2\x80\x11\x42\x44\x1f\xd3\x54\xde\x87\xc1\x25\xd3\x41\x43\x30\x19\x6c\xa9\x03\x6d\xa1\x52\xff\xbd\xad\x5b\x67\x7b\x7d\xbc\x1d\xd9\xac\xdb\x62\x44\xf9\xfb\x1e\x47\xda\x3c\xd6\x26\xa1\xaa\xab\xea\x61\x20\x4f\x80\xfc\x1f\x6c\x1a\x1b\xf2\xe0\x7a\x68\xd1\x98\x06\xdb\x47\xe8\x93\x6d\xa3\x76\x7c\x14\xd1\x7c\x71\x09\x5a\xb4\xf9\xa4\xc4\x7a\x2f\x2e\xf9\xaa\x9c\x23\x3a\xb1\xb7\x75\x1d\xb1\xd1\x51\x8f\x14\xc0\xc5\x81\x3c\xc4\x01\xed\x7c\x8a\x1a\x1e\x06\x02\x8b\x23\x43\x15\xda\x81\x46\x02\x1d\x2a\xe5\xec\x2b\x51\xb6\x3b\x69\x3a\xef\x55\x0d\xdf\x3a\x0f\xf4\x11\x05\x3c\x5c\x6c\xb9\x06\x87\x04\x48\x56\x05\x71\x20\x48\x81\x3c\x04\x3c\x51\xa8\xf8\x67\x93\xfa\x9e\x3c\x9c\x0b\x5e\x77\x55\xa5\x94\x32\x09\xab\x45\x98\xb3\xf7\x78\xa2\xac\xb2\x02\x00\xa8\xeb\x5a\xfe\x7a\x8a\xc9\x5b\xe8\xd1\x04\xaa\xc8\x76\xbc\x53\xf0\x02\xc5\x8b\x15\x9c\xd0\x6b\x6c\x0c\xdb\x0e\x08\x9e\x7a\xf2\x64\x5b\x62\x14\x58\x35\x2f\x92\x07\xcc\x8a\x74\x80\x86\xf8\xc4\xf4\x91\xda\x14\xa9\x03\x67\xeb\xea\x61\xd0\x41\x04\x98\xd1\x85\x08\x68\xce\x78\x09\xb2\xad\x4d\xde\x93\x8d\x22\xe7\xf0\x04\xfe\x23\xc5\x1c\x5b\xea\x4d\xf2\xff\xd0\x74\xde\xed\x15\x60\x80\x33\x19\x53\x57\xd5\x2b\x63\x00\x4f\xa8\x8d\x98\x87\xc5\x83\xec\x64\xa3\x43\xcc\xf1\xc2\x2a\x1e\xe9\xd2\x68\xdb\x69\x7b\x0c\x10\xa8\xe0\xd1\xcb\xa7\x81\xcc\x94\xc3\x23\xd0\x26\x0a\x4a\xe4\xa1\x09\x6e\x06\x08\xa1\x71\xce\x10\xbb\x77\xa2\x56\xf7\x17\x3e\xe3\x79\xa0\xe2\xf6\x0c\x44\xb5\x86\xac\x27\xe3\x5a\x64\x2b\x0a\x50\x6d\xf2\xc1\x79\x70\x1e\xac\x8b\x80\x7d\x2c\xfb\x56\xdc\x5a\xc7\x21\x10\xa9\xae\xaa\xf7\x2e\xb2\xa3\x39\xba\xc4\xb4\x39\x52\x03\xb8\xb6\x4d\xfe\xf3\xed\x9c\x5b\x0d\x91\x5d\x84\x74\x35\x7c\xd7\x33\x92\xd5\x19\x6d\x04\x5c\x83\xbd\xa1\xde\x79\x7a\xa2\x7b\xf6\xd6\x81\x43\x0b\xd4\xe4\xa9\x04\x29\x07\xe8\x77\x8c\x23\x1b\x88\x81\x72\xbc\x15\x28\x32\x36\xd4\x15\x4c\x34\x85\x05\x92\x72\xce\x8d\x96\x15\x9b\x59\x59\xb5\x1e\xc3\x24\xcc\x09\x35\xdb\x1f\xd8\xc1\x36\x67\x55\x0a\xd4\x27\xb3\x9e\x20\x3a\x78\xb4\xee\x0c\xd8\xb8\xb4\x29\x22\x82\xeb\x7a\x26\xce\x34\x0e\x9a\x0f\x13\xcd\xb9\xb6\xae\x65\x59\xd4\xb1\xb5\x96\x53\x8b\xcb\x02\x9d\x73\x30\xeb\x00\x6e\x22\x3e\x15\xda\x4e\x8c\xb3\x74\xae\xe6\x4f\x13\x86\x20\xa1\xc5\xe9\x9d\x83\xba\x98\xd7\x3b\x0f\x81\xa2\x54\x46\xf6\xbd\x01\x37\xe5\x70\x6a\x30\x48\x1e\x88\xb0\x5e\x1b\x8a\x97\x89\x0e\x55\xbf\xc9\x7b\xc6\x91\x37\xba\xbe\x07\x15\xb1\x09\xd1\x85\x09\x5b\x0a\x0a\x9c\x35\x17\x11\xfe\xd6\xc9\x66\xc1\x58\x64\x5d\x24\xd8\xb3\xb1\x75\x55\x7d\xf5\xd5\x57\x7f\x54\xe9\xd6\xd0\xe6\x33\xcd\x29\x1d\x72\x88\xc9\xe2\x25\x8f\xa2\x93\xfc\xd3\xb6\x72\xbe\x63\xef\x38\xc0\xb6\xa5\x90\xd3\x55\x5b\x2b\x85\xc6\x3f\x4a\x3a\xb9\x1e\xa4\x0a\xd7\xf0\x8e\xd5\x4a\x89\xe0\xe4\x83\x1d\x2f\xe6\x63\x42\xd0\x47\x8b\x31\x79\x0a\x72\xe0\x8d\x25\x9e\xe0\xa8\x4f\x64\x21\x05\x3e\xfa\x5b\xf7\x22\x94\x2d\xd2\x3d\xf6\x77\x55\xf5\x25\xa8\x0f\xf7\xea\x6e\x2d\x42\xd9\x81\xbc\x2d\xdb\xf3\xe1\x3e\x1b\x20\x3e\xcd\xa5\xc4\x5c\xb8\x62\x66\x34\x2d\x1b\x92\xbd\xc4\xab\x03\x8e\x54\x61\xc8\xaa\xde\x7e\xf8\x70\xbf\x08\x3e\x40\x70\xa0\x3a\xf4\x67\x6d\xd5\x01\xd4\x59\xdb\xce\x9d\x03\x3f\x1a\x6d\xd3\x47\x7e\xe8\x3d\x51\x13\x3a\x55\xd7\xf5\x5e\x4c\x63\x3f\xa9\xbb\xf9\xc8\xae\x07\x34\x46\xf4\xf0\x87\x8d\x39\x9a\x8f\x48\xb2\xa5\x4d\xfe\x01\x1b\x75\x57\xc0\xec\xe8\xe3\x5c\x8a\xe6\x42\x28\x7b\x4b\xe5\x92\x67\x16\x2e\x7b\x47\x0a\x81\xec\x91\xbc\xba\x03\x43\x31\x88\x9f\x02\xd9\x0e\xf8\x0b\x1e\x19\x12\xb7\xb6\x07\xe7\xe7\xfe\x35\x79\x37\x4e\x31\x88\x90\xb7\x14\x3f\x48\x58\xee\x2c\x8e\x04\x21\x7a\x6d\x8f\x7b\x75\x57\x72\x39\xe3\x74\x42\x93\x68\x36\xcc\xd3\xbf\x13\x49\x3d\xcd\xf1\x2c\x62\x5e\x75\xdd\xe7\x62\x0e\x65\xa3\xb6\x91\x7c\x8f\x2d\x7d\xfa\x9d\x25\x07\xb6\x95\x25\x65\x6f\x67\x29\xb9\xb0\x2f\x6f\xb9\x17\xe5\xcd\x3b\xb5\xd9\xae\x60\x24\x94\xa8\xbd\xe4\xd0\xd0\x16\xde\xba\x8c\xfe\xfd\x72\x92\x2c\x71\xd6\xbe\x1e\xe9\x79\xc5\x73\xe3\xe2\xc5\x25\x89\xcf\xda\x18\xb6\x20\x50\xae\x58\x65\xe5\xd1\xb8\x06\x8d\xb9\x1c\x20\x59\xc3\x19\xa0\x63\x09\xf1\x9c\xde\x9c\x98\x79\x69\x3d\x5b\xf4\x03\x7f\xf9\x13\xb3\x0e\x73\xaf\xfe\xf2\xb5\xfc\xfd\x33\x33\xd9\xa2\xd5\x1b\xa2\x33\x07\xd3\xba\x36\x0b\x13\xe5\xaf\xb5\xed\xfe\x46\x97\xdd\x23\x5d\x0e\x4b\xc9\x5d\xa0\xe0\x06\x18\x40\x3d\xd2\x45\x31\x00\x2a\x2f\x50\xb2\xf3\x47\x7c\xa4\x37\x6e\x1c\xd1\x76\xe2\xcd\xc3\xca\x41\x66\xa3\x4b\x55\x96\xbc\xad\xeb\xfa\xcd\xf2\x93\x65\xb3\x9d\x39\xd2\x18\x9b\x36\x4b\x2a\x8d\x9b\xe5\xcd\x65\x97\x51\x96\xc2\x0b\x6a\x56\xa0\x72\x2d\x9b\x1b\x82\x50\x92\x9f\x03\xc1\xd7\x52\xf0\xb6\x5a\xa3\x13\x3a\xf0\xde\xad\xba\xeb\xad\xf5\xe5\xdd\xee\x89\xe9\x7b\x75\x77\x6d\x9e\x5a\xd7\x0a\x12\xdc\xee\xb2\xa9\x1b\x18\x32\x2e\x2b\xe9\xb8\xce\x8e\x2d\x65\x91\x85\xef\xd0\x76\x66\x81\xb0\x1d\xbb\x6d\x5a\x25\xbb\x75\x6e\x41\x67\xb3\xed\x7e\x20\x63\xe6\xbd\x41\x7e\x2c\x02\x0e\x39\x95\xd8\x59\xa7\xdc\x75\x0f\x70\x46\x1d\x1f\xdc\x1b\xe3\x42\x7e\xf3\x8c\x12\x91\x22\xc7\xce\x62\x33\x13\x55\x1b\x59\x4a\xb6\x3e\xd3\xb6\xe5\x7c\xc5\x83\xa5\x61\x33\xfd\x2c\x41\xc7\xdd\xf7\xe8\x5d\x2a\x22\x59\x85\xda\xd8\x53\xa4\x4a\x5e\xe0\x34\x19\x16\xac\xfb\x27\x8a\xb9\x14\xfb\x44\xd2\x88\x72\x72\x4b\x13\xd2\x71\xd6\xc7\x02\x0b\x49\xa9\x16\x82\xca\xd5\xbc\x24\x2e\x75\x3a\x3a\x9f\x9d\xff\xbd\x6b\xee\x99\x6d\x6f\x40\x3f\x30\xd7\x8d\x9d\x4b\xb1\x3c\x91\xf7\xfc\xf4\xcd\x47\x56\x51\x96\x70\x81\x44\x7f\x94\x60\xbe\x0a\x14\x91\x16\x96\x06\xf2\x04\xd3\x05\x9a\x67\xf0\x50\xb3\x5a\x55\x1e\xc9\x7b\x25\xa7\x54\x59\xb9\x62\xf9\xdc\xf4\x56\x32\x17\x9d\x10\x9f\xa7\xe3\x87\x24\x4a\x43\x5b\x92\xb2\xb1\x64\x26\xba\x03\x4e\x53\x2e\x9c\x05\x98\xd5\x1a\xae\xf8\xdc\xb2\x25\x9f\xd4\x7c\x58\x25\xda\x85\x91\xf9\x63\x1a\xc9\xc6\x2b\x85\x9c\x5e\x85\xdd\xcc\x94\xf5\xb3\xf9\x68\x01\x9d\x4a\xa0\x7f\xc9\xa9\x5b\xbf\x19\xbb\x03\x74\x18\xf1\xaa\xf8\xda\x0e\xe6\x17\x1c\xc7\x59\x66\x88\x9d\x5e\xe8\xf7\x6f\xae\x99\x4d\x5d\xdd\xe9\xa6\x6b\xc9\x2c\xec\x91\x0d\x44\x5e\x5f\xe5\x59\x62\xc4\x0b\x04\xa2\x11\x8c\x7e\x64\xaa\x13\x46\xae\x2b\x4b\x1f\x5e\xd8\xcc\x0a\x6d\x93\x22\x04\x37\x2e\x6d\xcd\x35\xbf\x51\x1b\x43\xb5\x70\xd8\xe6\x92\xf9\xd9\xb2\x63\xc0\x13\xc1\xc8\xad\x67\xa4\x38\xb8\x2e\xd4\x57\x83\xc8\x5c\x12\x30\xd3\xc6\x2c\xaf\xca\x80\xca\xa8\x5b\xc8\x00\x3e\x3f\x5a\xa2\x31\xd7\xa3\xdf\x2a\xfb\x4e\x66\x35\x19\xc9\xf6\xaa\xae\x7e\x2d\x5b\x02\x51\xb1\x70\x73\xd4\xc9\x85\xa0\xb7\xf3\xcf\x33\x43\x0f\x4f\x39\x10\xdd\xa4\xdb\x5a\x26\xbb\x99\xbe\x3b\xfb\x99\x91\xbc\xa5\x95\x52\xf9\x0c\x91\x17\x92\xbe\x04\x6f\x4e\xd7\x8a\x67\x9d\x64\x6b\xf8\xae\x8c\x9f\x9e\x38\x49\xd8\xf9\x47\xb2\xe4\xa5\x67\x85\xa8\xdb\xc7\x92\xc2\x72\xac\x1c\xd3\x23\xca\x4b\x84\x65\xb0\xae\xf0\xe4\xb4\xc8\x48\x3e\x70\xcd\x9b\xbc\x6b\x0c\x8d\xe1\x00\x5b\xb6\xac\xfb\x82\x23\xf7\x92\x27\xb0\x71\x71\xd9\x2b\x86\x41\x95\xa1\x97\x31\xfc\x3e\x85\x98\x47\x9b\xe7\x51\x66\xfa\x37\xd7\xa1\xb3\xb3\x2f\x62\x11\xbe\x88\x00\x3c\xa2\xe6\x96\xf3\x73\x98\x0b\xc3\xc6\xed\x87\xc5\xaf\x32\x33\x6e\x08\x73\x69\xf7\x18\x82\x6b\xb5\xcc\x83\x85\xf8\x60\x69\x20\xcd\xa5\xf0\xdf\xd5\xb2\xfa\x75\xea\xd5\x3c\x0c\x2f\x4c\x6f\x23\x54\x7d\xab\x0d\x3d\x5c\x26\x62\x5a\xfa\x13\xc6\x81\xff\xbe\xe7\x56\xcb\x63\xbd\xf8\x78\x89\x8b\x12\xbb\xcf\x84\x5f\xd1\x2b\x02\x57\x6e\xb9\x72\x6d\xf4\x74\x77\x4d\x3c\xeb\x1f\x33\xd1\xdc\x8d\xe1\xc8\xa5\xf3\x8a\xe8\x5d\xaf\xfc\xc6\x7b\xe7\xff\x8f\x75\xbf\x52\x78\xef\x7e\x12\x82\xba\xcb\x3c\x75\xae\x21\xb0\xcb\x0d\x2f\x37\xb9\xeb\x5d\x57\x1b\x0e\x30\xe8\x10\x9d\xbf\x3c\xc8\xf0\xf0\x19\x65\x91\xd7\x1b\xca\x02\xbb\x85\x8b\x65\xd1\x55\x9e\x94\xa1\x4c\xca\x21\xa2\xed\xd0\x77\x30\x8b\xff\x6d\x09\x9e\x3f\xb4\xe0\xe6\xe6\x00\x5f\xb3\xa8\x2f\xe0\x55\xc7\x59\x97\x93\x4e\xe6\xb5\x03\x84\x8b\x8d\xf8\x71\xfe\x25\xcc\xc6\x38\x9f\xef\x84\xc2\x7c\xbd\x54\xb2\xa0\x5a\xf2\x9d\x35\x8a\x73\x5e\x75\xdd\xdf\x93\x8d\x7a\x24\xf6\x7b\xe1\x68\x32\x43\xc2\x84\x71\x58\x8a\xee\xca\xdb\x78\x68\xeb\xf2\xa0\xe7\x52\x80\x47\x61\x7f\xae\xaf\xf2\xfc\x98\x47\xbc\x59\xe1\x55\x15\x3a\x94\xdc\x7a\xd1\xe5\xca\x5a\x04\xe1\xa6\x86\xe4\xb1\xf8\x4a\x44\x55\x3a\x95\x8a\x14\xa2\xca\xc9\x90\xab\x41\x99\x40\xe4\x18\xfc\xb1\x1e\x3b\x25\x38\x6c\xf3\xf9\x20\x22\x7d\xb2\xf1\xaa\x02\xaf\xd7\x58\x4f\x00\xb8\x61\x49\x37\x07\xb8\x61\xa3\xf8\x6f\x91\x7c\xb3\xcf\xb7\x57\x5f\xc0\xab\x14\xdd\x7c\x93\xb0\x34\xed\xa5\xeb\x55\xd5\xbd\x94\x52\xb9\xf7\x28\xf3\xb7\x03\x43\xe8\x2d\x0c\xee\x3c\xd3\xc2\x27\xd4\xb2\x34\xf3\x6b\x9a\x58\x0c\xcc\x03\xc1\x02\x7f\x66\x11\xbf\xe8\x38\xec\xee\x73\xa8\xc9\x9b\x7d\xc5\x04\x43\xfa\xe1\xcb\xf2\x70\x97\xa6\x89\xfc\x2e\x7f\x41\x1f\xe5\x03\xfa\x38\xbf\x67\x72\x5d\x6e\xa0\xb2\x97\xeb\x90\x9a\x59\xe8\x5f\x0e\xe5\x9d\x21\xbb\xcb\x1a\xf6\x2f\x5f\xca\x83\x5c\xe5\xad\xd7\x7f\x33\x16\x3b\x6d\xa7\x24\x76\x64\x8b\x51\xa8\xe7\x42\xb2\x5f\xc2\xa7\x9b\x77\x64\x8c\x63\x50\x7f\x71\xde\x74\xfc\xf0\xad\x93\xdf\xaf\xd1\xdf\xfc\xbe\xec\xf4\x14\x92\x61\x73\x3f\xf1\x3b\x36\x93\x1d\xaa\x0f\x27\x0e\xe7\x09\xb5\x0f\xbb\x6b\xe1\x7b\xe8\x78\xa2\xd1\xfd\x16\x9d\x13\x33\x5c\xb6\x88\x1d\x2f\x5c\x86\xff\x45\x2e\x3f\xb5\xb6\x81\x7c\xdc\x65\x45\x07\x38\xe5\x7b\x4b\xe0\x83\xad\x7f\x0a\x36\x79\xd1\x93\x43\xf7\xce\xed\xd0\x1f\x79\xdf\x92\xb7\x77\x73\x05\x93\x0f\xb2\x7e\x3b\xfe\xdc\xf4\xf9\xac\x25\x2c\xea\xfc\xf3\xc9\x88\xb1\x7c\x9d\x51\xbd\xd9\x2f\x81\xf7\x57\xea\x91\x71\x99\xe6\xbb\xf3\x4d\x6e\xc9\x75\x49\xf9\x70\x58\xba\x79\x77\xbd\x43\xee\x1b\x22\x79\xae\xe8\x47\xa7\x72\x6a\x28\xe4\x78\x16\x8a\x2d\x1d\x3c\x5f\xfc\x70\xcd\xcb\xb7\x9c\x72\x41\xff\x22\xc0\x5b\x1d\xdf\xa5\x06\x3c\x4d\x2e\x30\x49\xbe\xc0\x3f\x07\xf2\xf4\xaf\xdd\x10\xe3\x14\xee\x6e\x6f\x8f\x3a\x0e\xa9\x61\xc3\x6f\xff\x73\xa1\x4e\x77\x1a\xcb\x35\x7a\xf4\x44\xb7\x23\x86\x48\xfe\xd6\xe7\x5c\x9b\xaf\xd6\xf7\x75\xf5\xbf\x00\x00\x00\xff\xff\x77\xdf\x01\x95\x0d\x18\x00\x00") func runtimeHelpPluginsMdBytes() ([]byte, error) { return bindataRead( @@ -2401,7 +2401,7 @@ func runtimeSyntaxXresourcesMicro() (*asset, error) { return a, nil } -var _runtimeSyntaxYamlMicro = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x64\x51\x4d\x6f\xe3\x20\x14\xbc\xfb\x57\x90\xb7\xd9\x8d\xed\xc8\xd6\x5e\x37\x87\x8d\x72\x68\x7a\x69\x93\x43\x7b\x49\xf9\x90\xb0\x83\x5b\x24\x0c\xae\x21\x52\x69\xdf\x8f\xaf\x50\xa2\xd4\x6a\x41\x42\xc3\x63\x06\xe6\x31\x3e\xda\x20\xdf\x08\x44\xd9\x1b\x20\xc0\xea\x28\xd7\xbd\x99\x43\xf6\xa2\xe4\x51\x8d\x04\x44\x55\x55\x40\xe0\xf7\x61\x73\x7f\x07\x59\xd6\x3a\xe3\x46\x12\xe2\xa0\x48\x1a\x90\x0b\x24\xc5\x6c\x96\x37\xda\xca\x31\x62\xe3\x9c\xc1\xce\x38\x19\x50\xdb\x80\xbd\x1c\xd0\x9e\x8c\x41\x97\x90\x57\xaf\xe8\x55\x40\x1f\xc6\x82\xc0\xe5\xaa\xd6\x59\x1f\xa4\x0d\x84\x00\x6b\xf2\xc3\xcd\x03\x46\xe5\xf1\x80\x11\xf7\x3b\x74\x16\x77\x7b\xb4\x0e\x77\x68\x71\xbf\xdd\xa2\xeb\xba\x82\x35\x3f\xb4\x49\x1a\xc6\x93\xc2\x4e\x1a\xaf\x26\x0c\x1f\x64\x50\xbd\x4a\x94\x15\xa5\x2b\x3f\xc8\x56\xad\x38\x4f\x9d\xd2\xb4\x24\x34\x3d\x58\x52\xfc\x9f\x6a\x62\x52\x2b\xab\xab\x59\x7d\x54\x36\xe8\x4e\xa7\x8f\x99\x30\x28\x2b\xff\x70\xba\xa9\x9e\x64\xf5\xfe\xb7\xfa\xc7\x97\xdf\x0d\xd6\x3e\x8c\xda\x3e\x13\x80\x9c\xb1\x1a\xa9\x00\x5e\x94\x80\x8b\xcb\x6e\xc1\x8b\x72\xf1\xa5\xe9\xcf\x86\x73\x81\x93\x37\x8a\x5f\x39\x15\x1f\xbc\x2e\x8b\xf5\xfc\xda\xdd\xa0\x5a\x2d\x0d\xb9\xa6\x24\x58\x9d\x66\x42\xe7\xc0\x12\x78\xdc\xdc\x42\xf6\x19\x00\x00\xff\xff\x0f\x7d\xec\x67\xe8\x01\x00\x00") +var _runtimeSyntaxYamlMicro = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x64\x51\xc1\x6e\xe3\x20\x14\xbc\xfb\x2b\xc8\xdb\xec\xc6\x76\x84\xb5\xd7\xcd\x61\xa3\x1c\x9a\x5e\xda\xe4\xd0\x5e\x52\xc0\x12\x76\x70\x8b\x84\xc1\x35\x44\x2a\xed\xfb\xf8\x0a\x25\x4a\xad\x16\x24\x34\x3c\x66\x60\x86\xe7\xa3\x0d\xf2\x8d\x40\x94\xbd\x01\x02\xbc\x8a\x72\xdd\x9b\x39\x64\x2f\x4a\x1e\xd5\x48\xe0\xf7\x61\x73\x7f\x07\x59\xd6\x3a\xe3\x46\x12\xe2\xa0\x48\x1a\x90\xd7\x48\x8a\xd9\x2c\x6f\xb4\x95\x63\xc4\xc6\x39\x83\x9d\x71\x32\xa0\xb6\x01\x7b\x39\xa0\x3d\x19\x83\x2e\x21\xaf\x5e\xd1\xab\x80\x3e\x8c\x05\x81\xcb\x55\xad\xb3\x3e\x48\x1b\x08\x01\xde\xe4\x87\x9b\x07\x8c\xca\xe3\x01\x23\xee\x77\xe8\x2c\xee\xf6\x68\x1d\xee\xd0\xe2\x7e\xbb\x45\xd7\x75\x05\x6f\x7e\x68\x93\x34\x8c\x27\x85\x9d\x34\x5e\x4d\x18\x3e\xc8\xa0\x7a\x95\x28\x2b\xc6\x56\x7e\x90\xad\x5a\x09\x91\x22\xb2\xb4\x24\x34\x3d\x58\x32\xfc\x9f\x6a\xf5\xa4\x56\xd2\xab\x59\x7d\x54\x36\xe8\x4e\xa7\x1f\x99\x30\x18\x2f\xff\x08\xb6\xa1\x4f\x92\xbe\xff\xa5\xff\xc4\xf2\xbb\xc1\xca\x87\x51\xdb\x67\x02\x90\x73\x5e\x21\xab\x41\x14\x25\xe0\xe2\xb2\x5b\x88\xa2\x5c\x7c\x69\xfa\xb3\xe1\xbc\xc6\xc9\x1b\xc5\xaf\x9c\xd5\x1f\xa2\x2a\x8b\xf5\xfc\x9a\x6e\x50\xad\x96\x86\x10\xa8\x29\xa5\xc9\x36\xaf\xd2\x4c\xe8\xdc\xb0\x04\x1e\x37\xb7\x90\x7d\x06\x00\x00\xff\xff\x24\x6b\x6d\xd6\xe1\x01\x00\x00") func runtimeSyntaxYamlMicroBytes() ([]byte, error) { return bindataRead( diff --git a/cmd/micro/view.go b/cmd/micro/view.go index dff2b11b..efefd8d5 100644 --- a/cmd/micro/view.go +++ b/cmd/micro/view.go @@ -529,7 +529,7 @@ func (v *View) ClearAllGutterMessages() { // Opens the given help page in a new horizontal split func (v *View) openHelp(helpPage string) { - if data, err := helpPages[helpPage].HelpFile(); err != nil { + if data, err := FindRuntimeFile(RTHelp, helpPage).Data(); err != nil { TermMessage("Unable to load help text", helpPage, "\n", err) } else { helpBuffer := NewBuffer(data, helpPage+".md") diff --git a/runtime/help/help.md b/runtime/help/help.md index fe7cb48c..22792ee7 100644 --- a/runtime/help/help.md +++ b/runtime/help/help.md @@ -3,12 +3,26 @@ Micro is a terminal-based text editor that aims to be easy to use and intuitive, while also taking advantage of the full capabilities of modern terminals. -*Press CtrlQ to quit, and CtrlS to save.* - If you want to see all the keybindings press CtrlE and type `help keybindings`. See the next section for more information about documentation and help. +### Quick-start + +Press CtrlQ to quit, and CtrlS to save. Press CtrlE to start typing commands +and you can see which commands are available by pressing tab, or by +viewing the help topic `> help commands`. When I write `> ...` I mean press +CtrlE and then type whatever is there. + +Move the cursor around with the mouse or the arrow keys. + +If the colorscheme doesn't look good, you can change it with `> set colorscheme ...`. +You can press tab to see the available colorschemes, or see more information with +`> help colors`. + +Press CtrlW to move between splits, and type `> vsplit filename` or `> hsplit filename` +to open a new split. + ### Accessing more help Micro has a built-in help system much like Vim's (although less extensive). diff --git a/runtime/help/keybindings.md b/runtime/help/keybindings.md index 4afaceeb..7d9eed19 100644 --- a/runtime/help/keybindings.md +++ b/runtime/help/keybindings.md @@ -72,7 +72,15 @@ you can rebind them to your liking. "Alt-a": "StartOfLine", "Alt-e": "EndOfLine", "Alt-p": "CursorUp", - "Alt-n": "CursorDown" + "Alt-n": "CursorDown", + + // Integration with file managers + "F1": "ToggleHelp", + "F2": "Save", + "F4": "Quit", + "F7": "Find", + "F10": "Quit", + "Esc": "Quit", } ``` diff --git a/runtime/help/plugins.md b/runtime/help/plugins.md index 25f83ae3..7feb3c5b 100644 --- a/runtime/help/plugins.md +++ b/runtime/help/plugins.md @@ -4,8 +4,6 @@ Micro supports creating plugins with a simple Lua system. Every plugin has a main script which is run at startup which should be placed in `~/.config/micro/plugins/pluginName/pluginName.lua`. -If you want to add a help page for your plugin, place a markdown file in `~/.config/micro/plugins/pluginName/help.md`. - There are a number of callback functions which you can create in your plugin to run code at times other than startup. The naming scheme is `onAction(view)`. For example a function which is run every time the user saves @@ -111,6 +109,16 @@ The possible methods which you can call using the `messenger` variable are: If you want a standard prompt, just use `messenger.Prompt(prompt, "", 0)` +# Adding help files, syntax files, or colorschemes in your plugin + +You can use the `AddRuntimeFile(name, type, path string)` function to add various kinds of +files to your plugin. For example, if you'd like to add a help topic and to your plugin +called `test`, you would create the `test.md` file for example, and runt the function: + +```lua +AddRuntimeFile("test", "help", "test.md") +``` + # Autocomplete command arguments See this example to learn how to use `MakeCompletion` and `MakeCommand` diff --git a/runtime/syntax/yaml.micro b/runtime/syntax/yaml.micro index c48027b6..2184f68e 100644 --- a/runtime/syntax/yaml.micro +++ b/runtime/syntax/yaml.micro @@ -1,5 +1,5 @@ syntax "yaml" "\.ya?ml$" -header "^---" "%YAML" +header "%YAML" color type "(^| )!!(binary|bool|float|int|map|null|omap|seq|set|str) " color constant "\b(YES|yes|Y|y|ON|on|NO|no|N|n|OFF|off)\b"