From dce56a2b85f4248db43247deafd7598759ef8374 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Tue, 6 Sep 2016 19:27:57 -0400 Subject: [PATCH] Have HandleShellCommand return the stdout HandleShellCommand will now return the stdout as a string and it also takes an additional flag indicating whether it should wait before closing the shell and returning to the editor. --- cmd/micro/actions.go | 2 +- cmd/micro/command.go | 25 ++++++++++++++++++------- cmd/micro/runtime.go | 6 +++--- runtime/help/plugins.md | 6 ++++-- runtime/help/tutorial.md | 2 +- 5 files changed, 27 insertions(+), 14 deletions(-) diff --git a/cmd/micro/actions.go b/cmd/micro/actions.go index 00c4f041..3ce6fc08 100644 --- a/cmd/micro/actions.go +++ b/cmd/micro/actions.go @@ -1273,7 +1273,7 @@ func (v *View) ShellMode(usePlugin bool) bool { input, canceled := messenger.Prompt("$ ", "Shell", NoCompletion) if !canceled { // The true here is for openTerm to make the command interactive - HandleShellCommand(input, true) + HandleShellCommand(input, true, true) if usePlugin { return PostActionCall("ShellMode", v) } diff --git a/cmd/micro/command.go b/cmd/micro/command.go index a6cb7161..a47910a0 100644 --- a/cmd/micro/command.go +++ b/cmd/micro/command.go @@ -2,6 +2,7 @@ package main import ( "bytes" + "io" "io/ioutil" "os" "os/exec" @@ -225,7 +226,7 @@ func Bind(args []string) { // Run runs a shell command in the background func Run(args []string) { // Run a shell command in the background (openTerm is false) - HandleShellCommand(strings.Join(args, " "), false) + HandleShellCommand(strings.Join(args, " "), false, true) } // Quit closes the main view @@ -362,7 +363,7 @@ func RunShellCommand(input string) (string, error) { // HandleShellCommand runs the shell command // The openTerm argument specifies whether a terminal should be opened (for viewing output // or interacting with stdin) -func HandleShellCommand(input string, openTerm bool) { +func HandleShellCommand(input string, openTerm bool, waitToFinish bool) string { inputCmd := strings.Split(input, " ")[0] if !openTerm { // Simply run the command in the background and notify the user when it's done @@ -391,9 +392,10 @@ func HandleShellCommand(input string, openTerm bool) { args := strings.Split(input, " ")[1:] // Set up everything for the command + var outputBuf bytes.Buffer cmd := exec.Command(inputCmd, args...) cmd.Stdin = os.Stdin - cmd.Stdout = os.Stdout + cmd.Stdout = io.MultiWriter(os.Stdout, &outputBuf) cmd.Stderr = os.Stderr // This is a trap for Ctrl-C so that it doesn't kill micro @@ -406,16 +408,25 @@ func HandleShellCommand(input string, openTerm bool) { } }() - // Start the command cmd.Start() - cmd.Wait() + err := cmd.Wait() - // This is just so we don't return right away and let the user press enter to return - TermMessage("") + output := outputBuf.String() + if err != nil { + output = err.Error() + } + + if waitToFinish { + // This is just so we don't return right away and let the user press enter to return + TermMessage("") + } // Start the screen back up InitScreen() + + return output } + return "" } // HandleCommand handles input from the user diff --git a/cmd/micro/runtime.go b/cmd/micro/runtime.go index a90f231d..d4fd96e3 100644 --- a/cmd/micro/runtime.go +++ b/cmd/micro/runtime.go @@ -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\xdb\x8e\xe3\x36\xd2\xbe\xd7\x53\x14\x3a\x17\xb1\x03\x47\x9d\xff\xd6\xc0\x5c\xcc\xcc\x9f\x4c\x92\x4d\x66\x02\x74\x67\x83\x60\xb1\x00\x29\xa9\x64\x31\x4d\x91\x5a\x16\x69\x8f\x37\xc8\x3e\xfb\xa2\x8a\xd4\xc1\x3d\x9d\x60\x1b\x68\x58\x07\xd6\xf9\xf4\x95\x3e\x83\x9f\x6c\x3a\x19\x47\x55\xf5\xa3\x69\x83\x07\x4a\xd3\xe4\x43\x24\x68\x03\xea\x68\xdc\x09\xa6\x7c\x00\x2e\x26\x0e\xa0\x81\xcc\x38\x59\x84\x1f\x92\x06\xba\x52\xc4\xb1\x86\xaf\xcf\x18\xae\xe5\x1c\x0c\x9a\x40\x57\xa3\x36\x0e\xa8\x0d\x66\x8a\x70\x19\x4c\x3b\x80\x21\x08\xc9\x81\x8e\x40\x51\x87\x98\xa6\xf2\x9c\x06\x9f\x6c\x07\x0d\xc2\x64\x75\x8b\x1d\x18\x07\x95\xfa\xcf\x7d\xdd\x7a\xd7\x9b\xd3\xfd\xc8\x6a\xdd\x17\x25\xca\xef\x7b\x3d\xe2\xe6\xb2\xb6\x49\xab\xba\xaa\x1e\x07\x0c\x08\x9a\xff\xc1\xa5\xb1\xc1\x00\xbe\x87\x56\x5b\xdb\xe8\xf6\x09\xfa\xe4\xda\x68\x3c\x9b\x22\x92\xaf\x3e\x41\xab\x5d\xb6\x14\x59\xee\xd5\xa7\x50\x15\x3b\xa2\x17\x7d\x5b\xdf\x21\x2b\x1d\xcd\x88\x04\x3e\x0e\x18\x20\x0e\xda\xcd\x56\xd4\xf0\x38\x20\x38\x3d\xb2\xab\xa8\x1d\x70\x44\x30\x54\x29\xef\x5e\x8b\xb0\xdd\xd9\xe0\x65\xaf\x6a\xf8\xc6\x07\xc0\x8f\x5a\x9c\xa7\x17\x5d\x6e\x9d\x83\xe2\x48\x16\x05\x71\x40\x48\x84\x01\x48\x9f\x91\x2a\xbe\x6d\x52\xdf\x63\x80\x4b\xf1\xd7\xb1\xaa\x94\x52\x36\xe9\x6a\x61\xe6\xdd\x83\x3e\x63\x16\x59\x01\x00\xd4\x75\x2d\xbf\x01\x63\x0a\x0e\x7a\x6d\x09\x2b\x74\x1d\x53\x8a\xbf\x40\xf1\x61\x05\x67\x1d\x8c\x6e\x2c\xeb\x0e\x1a\x02\xf6\x18\xd0\xb5\xc8\x5e\x60\xd1\x7c\x48\x2e\x74\x16\x64\x08\x1a\x64\x8b\xf1\x23\xb6\x29\x62\x07\xde\xd5\xd5\xe3\x60\x48\x18\xd8\xd1\x53\x04\x6d\x2f\xfa\x4a\x42\xd6\xa6\x10\xd0\x45\xe1\x73\x78\xe6\xfe\x13\xc6\x9c\x5b\xea\x6d\x0a\x7f\x37\x78\xd9\xed\x15\x68\x82\x0b\x5a\x5b\x57\xd5\x6b\x6b\x41\x9f\xb5\xb1\xa2\x9e\x2e\x11\xe4\x20\x5b\x43\x31\xe7\x0b\x8b\x78\xc2\x6b\x63\x5c\x67\xdc\x89\x80\xb0\xf8\xa3\x97\x57\x03\xda\x29\xa7\x07\xe1\x26\x0b\x4a\xe6\x69\x4b\x7e\x76\x90\x86\xc6\x7b\x8b\x1c\xde\x09\x5b\xd3\x5f\xd9\xc6\xcb\x80\x25\xec\xd9\x11\xd5\x9a\xb2\x01\xad\x6f\x35\x6b\x51\x1c\xd5\xa6\x40\x3e\x80\x0f\xe0\x7c\x04\xdd\xc7\x42\xb7\xfa\xad\xf5\x9c\x02\x11\xeb\xaa\x7a\xef\x23\x07\x9a\xb3\x4b\x54\x9b\x33\x95\xc0\xb7\x6d\x0a\x9f\x92\x73\x6d\x35\x88\x6e\x61\xd2\xd5\xf0\x5d\xcf\x9e\xac\x2e\xda\x45\xd0\x6b\xb2\x37\xd8\xfb\x80\xcf\x64\xcf\xd1\x3a\x70\x6a\x81\x9a\x02\x96\x24\xe5\x04\xfd\x8e\xfd\xc8\x0a\x6a\xc2\x9c\x6f\xc5\x15\xd9\x37\xd8\x15\x9f\x18\xa4\xc5\x25\xc5\xce\x8d\x94\xd5\x37\xb3\xb0\x6a\x35\xc3\x26\x9d\x0b\x6a\xd6\x9f\x38\xc0\x2e\x57\x55\x22\xec\x93\x5d\x2d\x88\x1e\x9e\x9c\xbf\x80\x6e\x7c\xda\x34\x11\xf1\xeb\x6a\x13\x57\x1a\x27\xcd\x87\x09\xe7\x5a\x5b\xcf\x32\x2f\xec\x58\x5b\xc7\xa5\xc5\x6d\x01\x2f\x39\x99\x0d\x81\x9f\x90\xad\xd2\xae\x13\xe5\x1c\x5e\xaa\xf9\xd5\xa4\x89\x24\xb5\xb8\xbc\x73\x52\x17\xf5\x7a\x1f\x80\x30\x4a\x67\xe4\xd8\x5b\xf0\x53\x4e\xa7\x46\x93\xd4\x81\x30\xeb\x8d\xc5\x78\x9d\xf0\x50\xf5\x9b\xba\x67\x3f\x32\xa1\xef\x7b\x50\x51\x37\x14\x3d\x4d\xba\x45\x52\xe0\x9d\xbd\x0a\xf3\x77\x5e\x88\xc5\xc7\xc2\xeb\x2a\xc9\x9e\x95\xad\xab\xea\xcb\x2f\xbf\xfc\xb3\x4e\xb7\xa6\x36\xdb\x34\x97\x34\xe5\x14\x93\xc3\x4b\x1d\x45\x2f\xf5\x67\x5c\xe5\x43\xc7\xd1\xf1\xa0\xdb\x16\x29\x97\xab\x71\x4e\x1a\x4d\x78\x92\x72\xf2\x3d\x48\x17\xae\xe1\x5b\x16\x2b\x2d\x82\x8b\x0f\x76\x7c\x98\xcd\x04\x32\x27\xa7\x63\x0a\x48\x62\xf0\x46\x93\x80\x70\x32\x67\x74\x90\x88\x4d\x7f\xe7\x3f\xa7\x42\x22\xd3\x63\x7f\xac\xaa\x2f\x40\x7d\x78\x50\xc7\xb5\x09\xe5\x00\x32\x59\xd6\xe7\xc3\x43\x56\x40\x62\x9a\x5b\x89\xbd\x72\xc7\xcc\xde\x74\xac\x48\x8e\x12\x9f\x26\x3d\x62\xa5\x29\x8b\x7a\xf7\xe1\xc3\xc3\xc2\xf8\x00\xe4\x41\x75\x3a\x5c\x8c\x53\x07\x50\x17\xe3\x3a\x7f\x21\xbe\xb4\xc6\xa5\x8f\x7c\xd1\x07\xc4\x86\x3a\x55\xd7\xf5\x5e\x54\xe3\x38\xa9\xe3\x6c\xb2\xef\x41\x5b\x2b\x72\xf8\xc5\x46\x1d\xc3\x26\xa2\x90\xb4\x29\x3c\xea\x46\x1d\x8b\x33\x3b\xfc\x38\xb7\xa2\xb9\x11\x0a\x6d\xe9\x5c\x72\xcd\xcc\x85\x76\x44\x22\x74\x27\x0c\xea\x08\x16\x23\x49\x9c\x08\x5d\x07\xfc\x46\x9f\xd8\x25\x7e\x1d\x0f\x3e\xcc\xf3\x6b\x0a\x7e\x9c\x22\x09\x93\x77\x18\x3f\x48\x5a\xee\x9c\x1e\x11\x28\x06\xe3\x4e\x7b\x75\x2c\xb5\x9c\xfd\x74\xd6\x36\xe1\xac\x58\xc0\x7f\x25\x94\x7e\x9a\xf3\x59\xd8\xbc\xee\xba\x4f\xd9\x1c\x0a\xa1\x71\x11\x43\xaf\x5b\xfc\xfd\x0f\xe6\x4c\xac\x2b\x73\xca\xd1\xce\x5c\x72\x63\x5f\x9e\xf2\x2c\xca\xc4\x3b\xb5\x21\x57\x30\xa2\x96\xac\xbd\xe6\xd4\x30\x0e\xde\xf9\x7d\x2d\x3a\x3c\x2c\xa6\x64\x96\xb3\xf8\xd5\xa6\x97\x25\xcf\x93\x8b\x0f\x97\x2a\xbe\x18\x6b\x59\x05\xc2\xdc\xb2\xca\xc9\x93\xf5\x8d\xb6\xf6\x7a\x80\xe4\x2c\x97\x80\x89\x25\xc7\x73\x7d\x73\x65\xe6\xa3\x8b\x46\x3f\xf0\x9b\xbf\x50\xeb\x30\x0f\xeb\x2f\xde\xc8\xef\x5f\xa9\xc9\x1a\xad\xe1\x10\x99\x39\x9b\xd6\xb3\x99\x59\x96\xfe\xc6\xb8\xee\x6f\x78\xdd\x3d\xe1\xf5\xb0\x34\xdd\xc5\x17\x3c\x02\x09\xd4\x13\x5e\x15\x7b\x40\xe5\x03\x2a\x93\xfe\xa8\x9f\xf0\xad\x1f\x47\xed\x3a\x09\xe8\x61\x85\x21\xb3\xda\xa5\x31\x4b\xe9\xd6\x75\xfd\x76\xb9\x65\xe6\xac\x69\x4e\x36\xf6\x4e\x9b\x39\x95\xd9\xcd\xfc\xe6\xce\xcb\x7e\x96\xde\x0b\x6a\x16\xa0\x72\x3b\x9b\x67\x82\xa0\x92\x9f\x09\xe1\x2b\xe9\x79\x5b\xa9\xd1\x0b\x22\x78\xef\x57\xd9\x37\xda\x97\x67\xbb\x67\xaa\xef\xd5\xf1\x56\x3d\xb5\x9e\x15\x57\xf0\xc4\xcb\xaa\x6e\xdc\x50\x1c\xb3\x02\x8f\xdb\x0a\xd9\xc2\x16\x39\xf8\xad\x76\x9d\x5d\x7c\xd8\x8e\xdd\xb6\xb4\x92\xdb\xc6\xb7\xb8\x67\x43\xf6\x30\xa0\xb5\x33\x2d\xc9\xcd\xc2\xe0\x90\xcb\x89\xc3\x75\xce\x93\xf7\x05\x96\x42\x23\x56\x6e\x78\x7f\xef\x9b\x07\x86\xa2\x1b\x6d\x0e\x0c\x04\x63\xe7\x53\x2c\x57\x18\x02\x5f\x7d\xfd\xd1\xc4\xe5\x08\x77\x0f\x1d\x4e\x12\xe6\x1b\x17\x0a\x37\x5a\xba\xeb\x33\xf1\x4b\xd8\x4b\x82\xf2\xa8\x3e\x05\x9f\x5c\x57\x83\x9a\xc5\xaa\x72\x89\x21\x28\x99\x45\x2a\x0b\x57\xcc\x9f\x27\xc2\x8a\x74\xa2\x17\x54\xf0\x1c\x9b\x4b\x0a\x35\xb8\x9d\xe0\x1b\x4d\x66\x14\x38\xe8\x69\xca\x5d\xa5\x54\xfb\xaa\x0d\xb7\x43\x9e\x67\x92\x69\x6a\x36\x56\x89\x74\x81\x2b\xe1\x94\x46\x74\xf1\x46\x20\x27\x5e\x19\xfd\x33\x9e\xfb\x64\x79\x58\x9c\x8e\x25\x03\xbe\xe0\xa4\xae\xdf\x8e\xdd\x01\x3a\x1d\xf5\x4d\x63\x72\x1d\xcc\x0f\x38\xc0\x99\x27\xc5\xce\x2c\xd8\xf4\x37\xdf\xcc\xaa\xae\xe1\xf4\xd3\x2d\x67\x66\xf6\xc4\x0a\x6a\x3e\x5f\x65\xa0\x3d\xea\x2b\x10\xe2\x08\xd6\x3c\x31\x0e\xa0\x91\x2b\x6e\x19\x52\xcb\xa8\x5f\x5d\xdb\xa4\x08\xe4\xc7\xa5\xe7\xfb\xe6\x37\x6c\x23\x55\x0b\xc0\x6b\xae\x19\xbc\x2c\x14\x83\x3e\x23\x8c\xdc\x97\x47\x8c\x83\xef\xa8\xbe\x41\xe9\x73\xad\xe8\x8c\xa9\x32\xbf\x2a\x3b\x54\xf6\xc0\x32\x29\xf5\xcb\x7b\x97\xb6\xf6\x76\x2f\x5a\x79\x1f\x65\x91\x91\x7d\x65\xaf\xea\xea\xd7\x42\x42\x88\x45\xc3\x8d\xa9\x93\x27\x32\xdb\xe5\xe0\x85\x8d\x80\x57\x00\x88\x7e\x32\x6d\x2d\x6b\xcf\x8c\x6d\xbd\xfb\x44\x49\x26\x69\xa5\x89\xbc\x80\x72\x05\xc1\x2e\xc9\x9b\xc1\x6e\xc5\x8b\x40\x72\x35\x7c\x57\x76\xb3\x80\x5c\x24\x1c\xfc\x13\x3a\x0c\xd2\xcf\x29\x9a\xf6\x49\xea\xc9\xe7\x35\x2c\xe7\xf4\xa8\xe5\xa1\x86\x65\xeb\xac\xf4\xd9\x1b\xe1\x91\x02\x71\x33\x98\x82\x6f\x2c\x8e\x74\x80\x2d\x94\x34\x7d\xf1\x23\x77\xd9\x67\x6e\x8b\x21\xe1\x5e\xb1\x1b\x54\xd9\x08\xd9\x87\xdf\x27\x8a\x19\xf7\xbf\xec\x65\xc6\x46\x82\x14\x4d\x84\x8b\x77\x9f\xc7\xc2\x7c\x61\x01\xfa\xa4\x0d\x37\xe3\x9f\x69\x6e\x0c\x9b\xb0\x1f\x96\xb8\xca\x42\xb5\x41\x93\x65\x14\x6a\x22\xdf\x1a\x59\x96\x0a\x2a\xd0\xa5\xb3\x36\xd7\x02\x0e\x57\xcd\xea\x37\xa9\x57\xf3\xa6\xb8\xc0\xa0\x0d\x53\xf5\x8d\xb1\xf8\x78\x9d\x90\x31\xdb\x4f\x3a\x0e\xfc\xfb\x9e\x87\x10\xef\xbc\x12\xe3\x25\x2f\x4a\xee\xbe\x90\x7e\x45\xae\x30\x5c\x81\xd7\x0a\x44\x75\xc0\xe3\x2d\x2a\xab\x7f\xcc\x28\x6c\x37\xd2\x89\x5b\xe7\x0d\x0a\xba\x3d\xf9\x75\x08\x3e\xfc\x0f\xe7\x7e\x45\x7a\xef\x7f\x12\xf4\xb6\xcb\x20\x6e\xee\x21\xb0\xe3\x3c\x3d\x94\x79\x70\x4b\x75\x43\x70\x80\xc1\x50\xf4\xe1\xfa\x28\xc8\xfa\x93\x61\x2e\x8f\x37\xc3\x1c\x76\x0b\x4e\xc9\xac\xab\xbc\x46\x42\x59\x23\x29\x6a\xd7\xe9\xd0\xc1\xcc\xfe\xb7\x25\x79\xfe\x54\x83\xbb\xbb\x03\x7c\xc5\xac\x3e\x83\xd7\x29\xfa\x79\xc5\x5b\x06\xc6\xd2\x71\xab\xea\x41\xca\x58\x16\xd2\xb2\x18\x79\xb0\xa8\x83\x83\xc1\x5f\xe6\x61\xfd\x6c\xe0\x97\x41\xb2\x1d\xde\xcb\x07\x90\x0c\xd4\x16\x44\x90\x27\xd8\x2f\x26\x0e\xbb\x87\x6c\xa6\x3c\xd9\x57\x3c\xdc\xa4\x17\xbf\x2a\x17\xc7\x34\x4d\x18\x76\xf9\x8d\x0e\x51\x5e\xe8\x10\xe7\xe7\x0c\x79\xca\xa7\x81\xec\xb0\x9a\x52\x33\x33\xfd\xbf\x43\x79\x66\xd1\xed\xb2\x84\xfd\xab\x57\x72\x21\xdf\x58\xd6\xef\x32\xb3\x2f\x76\xc6\x4d\x49\xf4\xc8\x1a\x6b\xc1\x03\x0b\xf4\x79\x05\xbf\xdf\x7d\x8b\xd6\xfa\xbb\x03\xdc\xfd\xe2\x83\xed\xf8\xe2\x1b\x2f\xf7\x6f\x74\xb8\xfb\x63\xa1\x0c\x48\xc9\xb2\xba\xbf\xf3\x33\x56\x93\x9b\x83\x39\x9c\xb9\xea\x27\x6d\x02\xed\x6e\x99\xef\xa1\x63\xa4\x69\xfa\xad\x77\xce\x0c\x3b\x58\x23\xae\x00\x99\xa3\xfc\x17\x39\xf5\x6b\xe3\x08\x43\xdc\x65\x41\x07\x38\xe7\x0f\x4a\xc0\x86\xad\x3f\xc5\x37\xf9\xd0\x33\xa3\x7b\xef\x77\x3a\x9c\x98\x6e\xc9\x99\xe3\x5c\x3d\xf2\x42\xce\x6f\x41\xe9\x5d\x9f\x6d\x2d\x69\x51\xe7\xdb\x67\xc0\x6f\x79\x3b\x7b\xf5\x6e\xbf\xcf\xdf\xb3\x3e\x83\xff\xc7\x5e\xb3\x5f\xa6\xf9\xa3\xe6\x66\xba\xc8\x1e\x5b\x5e\x1c\x96\x49\xd2\xdd\x52\xc8\x22\x18\x31\x70\x37\x39\x79\x75\xc8\x49\xa7\x39\x9f\xad\x27\x54\x32\x3d\xf2\x46\xce\xf5\x96\x3f\x3f\xc9\x97\xd3\xcf\x09\x4e\x26\x0e\xa9\x81\x80\x93\x27\xc3\xd5\x08\xff\xe0\x3d\xfd\x9f\xbb\x21\xc6\x89\x8e\xf7\xf7\xf9\x00\x2b\x7e\xff\xef\x2b\x76\xa6\x33\xba\x7c\xdf\x8c\x01\xf1\x7e\xd4\x14\x31\xdc\x87\xe4\xa2\x59\x3e\x70\xd2\xbe\xae\xfe\x1b\x00\x00\xff\xff\xd5\x41\x38\xb2\xa6\x15\x00\x00") +var _runtimeHelpPluginsMd = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x8c\x58\xdb\x8e\xdc\x36\xd2\xbe\xd7\x53\x14\x26\x17\xe9\x0e\x3a\x9a\xfc\xb7\x0d\xf8\xc2\xf6\x9f\x38\xc9\x26\x76\x80\x99\x6c\x10\x2c\x16\x60\x49\x2a\xb5\x98\xa1\x48\x2d\x0f\xdd\xee\x0d\xb2\xcf\xbe\xa8\x22\x75\xe8\xf1\x24\x58\x03\xc6\xa8\x25\xb2\x0e\x1f\xeb\xf0\x15\x3f\x83\x9f\x4c\x3a\x69\x1b\xaa\xea\x47\xdd\x7a\x07\x21\x4d\x93\xf3\x31\x40\xeb\x09\xa3\xb6\x27\x98\xf2\x02\xb8\xe8\x38\x00\x42\xd0\xe3\x64\x08\x7e\x48\x08\xe1\x1a\x22\x8d\x35\x7c\x7d\x26\x7f\x2d\xeb\x60\xc0\x00\x58\x8d\xa8\x2d\x84\xd6\xeb\x29\xc2\x65\xd0\xed\x00\x3a\x80\x4f\x16\x30\x42\x88\xe8\x63\x9a\xca\xfb\x30\xb8\x64\x3a\x68\x08\x26\x83\x2d\x75\xa0\x2d\x54\xea\x3f\xf7\x75\xeb\x6c\xaf\x4f\xf7\x23\x9b\x75\x5f\x8c\x28\x7f\xdf\xe3\x48\x9b\xc7\xda\x24\x54\x75\x55\x3d\x0e\xe4\x09\x90\xff\x83\x4d\x63\x43\x1e\x5c\x0f\x2d\x1a\xd3\x60\xfb\x04\x7d\xb2\x6d\xd4\x8e\x5d\x11\xcd\x57\x97\xa0\x45\x9b\x3d\x25\xd6\x7b\x75\xc9\x57\xc5\x8f\xe8\xc4\xde\xd6\x75\xc4\x46\x47\x3d\x52\x00\x17\x07\xf2\x10\x07\xb4\xb3\x17\x35\x3c\x0e\x04\x16\x47\x86\x2a\xb4\x03\x8d\x04\x3a\x54\xca\xd9\xd7\xa2\x6c\x77\xd6\x74\xd9\xab\x1a\xbe\x71\x1e\xe8\x23\x0a\x78\xb8\xd8\x72\x0b\x0e\x09\x90\xac\x0a\xe2\x40\x90\x02\x79\x08\x78\xa6\x50\xf1\xcf\x26\xf5\x3d\x79\xb8\x14\xbc\x8e\x55\xa5\x94\x32\x09\xab\x45\x98\xb3\x0f\x78\xa6\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\xd1\x6b\x6c\x0c\xdb\x0e\x08\x9e\x7a\xf2\x64\x5b\x62\x14\x58\x35\x2f\x92\x07\xcc\x8a\x74\x80\x86\xd8\x63\xfa\x48\x6d\x8a\xd4\x81\xb3\x75\xf5\x38\xe8\x20\x02\xcc\xe8\x42\x04\x34\x17\xbc\x06\xd9\xd6\x26\xef\xc9\x46\x91\x73\x78\x06\xff\x89\x62\x8e\x2d\xf5\x36\xf9\xbf\x6b\xba\xec\xf6\x0a\x30\xc0\x85\x8c\xa9\xab\xea\xb5\x31\x80\x67\xd4\x46\xcc\xc3\x72\x82\x7c\xc8\x46\x87\x98\xe3\x85\x55\x3c\xd1\xb5\xd1\xb6\xd3\xf6\x14\x20\x50\xc1\xa3\x97\x4f\x03\x99\x29\x87\x47\xa0\x4d\x14\x94\xc8\x43\x13\xdc\x0c\x10\x42\xe3\x9c\x21\x3e\xde\x89\x5a\xdd\x5f\xd9\xc7\xcb\x40\xe5\xd8\x33\x10\xd5\x1a\xb2\x9e\x8c\x6b\x91\xad\x28\x40\xb5\xc9\x07\xe7\xc1\x79\xb0\x2e\x02\xf6\xb1\xec\x5b\x71\x6b\x1d\x87\x40\xa4\xba\xaa\xde\xbb\xc8\x07\xcd\xd1\x25\xa6\xcd\x91\x1a\xc0\xb5\x6d\xf2\x9f\x6e\xe7\xdc\x6a\x88\xec\x22\xa4\xab\xe1\xbb\x9e\x91\xac\x2e\x68\x23\xe0\x1a\xec\x0d\xf5\xce\xd3\x33\xdd\xf3\x69\x1d\x38\xb4\x40\x4d\x9e\x4a\x90\x72\x80\x7e\xc7\x38\xb2\x81\x18\x28\xc7\x5b\x81\x22\x63\x43\x5d\xc1\x44\x53\x58\x20\x29\x7e\x6e\xb4\xac\xd8\xcc\xca\xaa\xd5\x0d\x93\x30\x27\xd4\x6c\x7f\xe0\x03\xb6\x39\xab\x52\xa0\x3e\x99\xd5\x83\xe8\xe0\xc9\xba\x0b\x60\xe3\xd2\xa6\x88\x08\xae\xab\x4f\x9c\x69\x1c\x34\x1f\x26\x9a\x73\x6d\x5d\xcb\xb2\xa8\x63\x6b\x2d\xa7\x16\x97\x05\xba\xe4\x60\xd6\x01\xdc\x44\xec\x15\xda\x4e\x8c\xb3\x74\xa9\xe6\x4f\x13\x86\x20\xa1\xc5\xe9\x9d\x83\xba\x98\xd7\x3b\x0f\x81\xa2\x54\x46\x3e\x7b\x03\x6e\xca\xe1\xd4\x60\x90\x3c\x10\x61\xbd\x36\x14\xaf\x13\x1d\xaa\x7e\x93\xf7\x8c\x23\x6f\x74\x7d\x0f\x2a\x62\x13\xa2\x0b\x13\xb6\x14\x14\x38\x6b\xae\x22\xfc\x9d\x93\xcd\x82\xb1\xc8\xba\x4a\xb0\x67\x63\xeb\xaa\xfa\xf2\xcb\x2f\xff\xac\xd2\xad\xa1\xcd\x3e\xcd\x29\x1d\x72\x88\xc9\xe2\x25\x8f\xa2\x93\xfc\xd3\xb6\x72\xbe\xe3\xd3\x71\x80\x6d\x4b\x21\xa7\xab\xb6\x56\x0a\x8d\x7f\x92\x74\x72\x3d\x48\x15\xae\xe1\x5b\x56\x2b\x25\x82\x93\x0f\x76\xbc\x98\xdd\x84\xa0\x4f\x16\x63\xf2\x14\xc4\xe1\x8d\x25\x9e\xe0\xa4\xcf\x64\x21\x05\x76\xfd\x9d\xfb\x3c\x94\x2d\xd2\x3d\xf6\xc7\xaa\xfa\x02\xd4\x87\x07\x75\x5c\x8b\x50\x3e\x40\xde\x96\xed\xf9\xf0\x90\x0d\x90\x33\xcd\xa5\xc4\x5c\xb9\x62\x66\x34\x2d\x1b\x92\x4f\x89\x57\x07\x1c\xa9\xc2\x90\x55\xbd\xfb\xf0\xe1\x61\x11\x7c\x80\xe0\x40\x75\xe8\x2f\xda\xaa\x03\xa8\x8b\xb6\x9d\xbb\x04\x7e\x34\xda\xa6\x8f\xfc\xd0\x7b\xa2\x26\x74\xaa\xae\xeb\xbd\x98\xc6\xe7\xa4\x8e\xb3\xcb\xae\x07\x34\x46\xf4\xf0\x87\x8d\x39\x9a\x5d\x24\xd9\xd2\x26\xff\x88\x8d\x3a\x16\x30\x3b\xfa\x38\x97\xa2\xb9\x10\xca\xde\x52\xb9\xe4\x99\x85\xcb\xde\x91\x42\x20\x7b\x22\xaf\x8e\x60\x28\x06\x39\xa7\x40\xb6\x03\xfe\x82\x27\x86\xc4\xad\xed\xc1\xf9\xb9\x7f\x4d\xde\x8d\x53\x0c\x22\xe4\x1d\xc5\x0f\x12\x96\x3b\x8b\x23\x41\x88\x5e\xdb\xd3\x5e\x1d\x4b\x2e\x67\x9c\xce\x68\x12\xcd\x86\x79\xfa\x57\x22\xa9\xa7\x39\x9e\x45\xcc\xeb\xae\xfb\x54\xcc\xa1\x6c\xd4\x36\x92\xef\xb1\xa5\xdf\xff\x60\xc9\x81\x6d\x65\x49\xf9\xb4\xb3\x94\x5c\xd8\x97\xb7\xdc\x8b\xf2\xe6\x9d\xda\x6c\x57\x30\x12\x4a\xd4\x5e\x73\x68\x68\x0b\xef\xdc\xbe\x16\x1b\x1e\x16\x57\xb2\xc8\x59\xfd\xea\xd3\xcb\x9a\xe7\xce\xc5\x8b\x4b\x16\x5f\xb4\x31\x6c\x42\xa0\x5c\xb2\xca\xca\x93\x71\x0d\x1a\x73\x3d\x40\xb2\x86\x53\x40\xc7\x12\xe3\x39\xbf\x39\x33\xf3\xd2\xc5\xa2\x1f\xf8\xcb\x5f\x98\x75\x98\x9b\xf5\x17\x6f\xe4\xef\x5f\x99\xc9\x16\xad\xc7\x21\x3a\x73\x34\xad\x6b\xb3\xb0\xac\xfd\x8d\xb6\xdd\xdf\xe8\xba\x7b\xa2\xeb\x61\x29\xba\x0b\x16\xdc\x02\x03\xa8\x27\xba\x2a\x46\x40\xe5\x05\x2a\x6f\xfd\x11\x9f\xe8\xad\x1b\x47\xb4\x9d\x1c\xe8\x61\xa5\x21\xb3\xd9\xa5\x30\x4b\xea\xd6\x75\xfd\x76\xf9\xc9\xc2\xd9\xd2\x1c\x6c\x8c\x4e\x9b\x25\x95\xde\xcd\xf2\xe6\xca\xcb\x38\x4b\xed\x05\x35\x2b\x50\xb9\x9c\xcd\x3d\x41\x58\xc9\xcf\x81\xe0\x2b\xa9\x79\x5b\xad\xd1\x09\x23\x78\xef\x56\xdd\x37\xd6\x97\x77\xbb\x67\xa6\xef\xd5\xf1\xd6\x3c\xb5\xae\x15\x28\xb8\xe3\x65\x53\x37\x30\x14\x60\x56\xe2\x71\x9b\x21\x5b\xda\x22\x0b\xbf\x45\xdb\x99\x05\xc3\x76\xec\xb6\xa9\x95\xec\xf6\x7c\x0b\x3c\x9b\x6d\x0f\x03\x19\x33\xef\x0d\xf2\x63\x11\x70\xc8\xe9\xc4\xc7\x75\xce\x9d\xf7\x00\x17\xd4\xf1\xd1\xbd\x35\x2e\xe4\x37\x2f\x28\x11\x29\xe2\x77\x16\x9b\xd9\xa8\xda\xc8\x52\xb2\xf5\x85\xd6\x2d\xfe\x95\x23\x2c\x4d\x9b\x29\x68\x89\x3b\xee\xc0\x27\xef\x52\x11\xc9\x2a\xd4\xc6\x9e\x22\x55\x52\x03\xa7\xc9\xb0\x60\xdd\x3f\x53\xcc\xe5\xd8\x27\x92\x66\x94\x13\x5c\x1a\x91\x8e\xb3\x3e\x16\x58\x88\x4a\xb5\x90\x54\xae\xe8\x25\x77\xa9\xd3\xd1\x95\xb0\xff\xde\x35\x0f\xcc\xb8\x37\xa0\x1f\x98\xef\xc6\xce\xa5\x58\x9e\xc8\x7b\x7e\xfa\xfa\x23\xab\x28\x4b\xb8\x48\xa2\x3f\x49\x34\xdf\x44\x8a\x48\x0b\x4b\x13\x79\x86\xe9\x02\xcd\x0b\x78\xa8\x59\xad\x2a\x8f\xe4\xbd\x12\x2f\x55\x56\xae\x58\x3e\x37\xbe\x95\xd0\x45\x27\xe4\xe7\xf9\x08\x22\x99\xd2\xd0\x96\xa8\x6c\x2c\x99\xc9\xee\x80\xd3\x94\x8b\x67\x01\x66\xb5\x86\xab\x3e\xb7\x6d\x49\x28\x35\x3b\xab\x44\xbb\xb0\x32\x7f\x4a\x23\xd9\x78\xa3\x90\xf3\xab\x30\x9c\x99\xb6\x7e\x32\x23\x2d\xa0\x53\x09\xf4\x2f\x38\x77\xeb\xb7\x63\x77\x80\x0e\x23\xde\xd4\x5f\xdb\xc1\xfc\x82\xe3\x38\xcb\x0c\xb1\xd3\x0b\x05\xff\xcd\x35\xb3\xa9\xeb\x71\xba\xe9\x56\x32\x0b\x7b\x62\x03\x91\xd7\x57\x79\x9e\x18\xf1\x0a\x81\x68\x04\xa3\x9f\x98\xee\x84\x91\x0b\xcb\xd2\x8b\x17\x46\xb3\x42\xdb\xa4\x08\xc1\x8d\x4b\x6b\x73\xcd\x6f\xd4\xc6\x50\x2d\x3c\xb6\xb9\x66\x8e\xb6\xec\x18\xf0\x4c\x30\x72\xfb\x19\x29\x0e\xae\x0b\xf5\xcd\x30\x32\x97\x04\xcc\xd4\x31\xcb\xab\x32\xa0\x32\xee\x16\x42\x80\x2f\x8f\x97\x68\xcc\xed\xf8\xb7\xca\x3e\xca\xbc\x26\x63\xd9\x5e\xd5\xd5\xaf\x65\x4b\x20\x2a\x16\x6e\x5c\x9d\x5c\x08\x7a\x3b\x03\xbd\x30\xf8\xf0\xa4\x03\xd1\x4d\xba\xad\x65\xba\x9b\x29\xbc\xb3\x9f\x18\xc9\x5b\x5a\xa9\x95\x2f\x90\x79\x21\xea\x4b\xf0\xe6\x74\xad\x78\xde\x49\xb6\x86\xef\xca\x08\xea\x89\x93\x84\x0f\xff\x44\x96\xbc\xb4\xad\x10\x75\xfb\x54\x52\x58\xdc\xca\x31\x3d\xa2\xbc\x44\x58\x86\xeb\x0a\xcf\x4e\x8b\x8c\xe4\x03\xd7\xbc\xc9\xbb\xc6\xd0\x18\x0e\xb0\x65\xcc\xba\x2f\x38\x72\x33\x79\x06\x1b\x17\x97\xbd\x62\x18\x54\x19\x7c\x19\xc3\xef\x53\x88\x79\xbc\x79\x19\x65\xa6\x80\x73\x1d\xba\x38\xfb\x79\x2c\xc2\x17\x11\x80\x27\xd4\xdc\x73\x7e\x0e\x73\x61\xd8\x1c\xfb\x61\x39\x57\x99\x1b\x37\xa4\xb9\x74\x7c\x0c\xc1\xb5\x5a\x66\xc2\x42\x7e\xb0\x34\x90\xe6\x5a\x38\xf0\x6a\x59\xfd\x26\xf5\x6a\x1e\x88\x17\xb6\xb7\x11\xaa\xbe\xd1\x86\x1e\xaf\x13\x31\x35\xfd\x09\xe3\xc0\x7f\xdf\x73\xaf\xe5\xd1\x5e\xce\x78\x89\x8b\x12\xbb\x2f\x84\x5f\xd1\x2b\x02\x57\x7e\xb9\xf2\x6d\xf4\x74\xbc\x25\x9f\xf5\x8f\x99\x6c\xee\xc6\x70\xe2\xd2\x79\x43\xf6\x6e\x57\x7e\xed\xbd\xf3\xff\xc3\xba\x5f\x29\xbc\x77\x3f\x09\x49\xdd\x65\xae\x3a\xd7\x10\xd8\xe5\x86\x97\x9b\xdc\xed\xae\x9b\x0d\x07\x18\x74\x88\xce\x5f\x1f\x65\x80\xf8\x84\xb3\xc8\xeb\x0d\x67\x81\xdd\x42\xc7\xb2\xe8\x2a\x4f\xcb\x50\xa6\xe5\x10\xd1\x76\xe8\x3b\x98\xc5\xff\xb6\x04\xcf\x9f\x5a\x70\x77\x77\x80\xaf\x58\xd4\x67\xf0\x3a\x45\x37\x4f\xb2\x4b\xc3\x58\x2a\x6e\x55\x3d\x48\x1a\xcb\xdc\x5d\xe6\x3f\x07\x86\xd0\x5b\x18\xdc\x65\xe6\x24\xcf\x78\x4d\x69\x24\x5b\x8e\xb2\xdc\xf3\x64\x3e\xba\x10\x9f\xdc\xc1\x7e\xd1\x71\xd8\x3d\x64\x37\xe5\xcd\xbe\xe2\xe6\x26\xb5\xf8\x55\x79\x38\xa6\x69\x22\xbf\xcb\x5f\xd0\x47\xf9\x80\x3e\xce\xef\x99\xd9\x95\x1b\x90\x0c\x58\x1d\x52\x33\x0b\xfd\xbf\x43\x79\x67\xc8\xee\xb2\x86\xfd\xab\x57\xf2\x20\x57\x49\xeb\xf5\xd3\x8c\xc5\x4e\xdb\x29\x89\x1d\xd9\x62\x14\xda\xb3\x30\xbc\x57\xf0\xfb\xdd\xb7\x64\x8c\xbb\x3b\xc0\xdd\x2f\xce\x9b\x8e\x1f\xbe\x71\xf2\xfb\x0d\xfa\xbb\x3f\x96\x9d\x9e\x42\x32\x6c\xee\xef\xfc\x8e\xcd\xe4\xe2\xa0\x0f\x67\xce\xfa\x09\xb5\x0f\xbb\x5b\xe1\x7b\xe8\x98\x50\xeb\x7e\x8b\xce\x99\xd9\x15\x5b\xc4\x19\x20\x7d\x94\xff\x45\x0e\xfd\x5a\xdb\x40\x3e\xee\xb2\xa2\x03\x9c\xf3\xbd\x19\xb0\x63\xeb\x9f\x82\x4d\x5e\xf4\xcc\xe9\xde\xb9\x1d\xfa\x13\xef\x5b\x62\xe6\x38\x67\x8f\x7c\x90\xf5\x5b\xee\x7d\xd7\x67\x5f\x4b\x58\xd4\xf9\xe7\x33\x7e\xbb\x7c\x9d\x51\xbd\xdb\xef\xf3\xb5\xdd\x67\xf0\xff\xd4\x23\xe3\x32\xcd\x77\xb7\x9b\xee\x22\xe3\x7a\xf9\x70\x58\x3a\x49\x77\xbb\x43\xe6\xdd\x48\x9e\xab\xc9\xc9\xa9\x43\x0e\x3a\xe4\x78\x16\x7a\x27\xdd\x23\x5f\x3c\x70\xbe\xe5\x5b\x36\xb9\x20\xfe\x3c\xc0\x49\xc7\x21\x35\xe0\x69\x72\x81\x09\xda\x15\xfe\x31\x90\xa7\x7f\xee\x86\x18\xa7\x70\xbc\xbf\xcf\x0b\xd8\xf0\xfb\x7f\x5f\xa9\xd3\x9d\xc6\x72\x8d\x1b\x3d\xd1\xfd\x88\x21\x92\xbf\xf7\xc9\x46\xbd\xdc\xe3\x86\x7d\x5d\xfd\x37\x00\x00\xff\xff\xd7\xa8\x50\xd7\x8d\x16\x00\x00") func runtimeHelpPluginsMdBytes() ([]byte, error) { return bindataRead( @@ -501,7 +501,7 @@ func runtimeHelpPluginsMd() (*asset, error) { return a, nil } -var _runtimeHelpTutorialMd = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x7c\x57\x4f\x6f\xdc\xc6\x0f\xbd\xcf\xa7\x20\xd6\x87\x78\x7f\x50\x14\x20\xc8\xc9\x40\x02\x24\xc6\x2f\x8d\x91\x16\x28\x12\x23\x40\x6f\x1a\x49\xd4\x6a\xba\xa3\x19\x61\xfe\xac\xa2\x16\xe9\x67\x2f\x48\x4a\xf2\xae\xed\xe6\x10\x64\x25\xcd\x90\x8f\xe4\xe3\x23\x7d\x05\xf7\x39\xf9\x60\xb4\x55\xea\xbe\x37\x11\x4c\x04\x0d\x75\x30\xd8\x81\x71\x29\x78\x48\x1e\x06\xd3\x04\xff\x22\x42\xe3\x5d\x67\x0e\x39\xe8\x64\xbc\x83\x38\xc7\x84\x03\xa4\x5e\x27\x98\x8c\xb5\x70\x30\x27\x84\xe8\x07\x54\xd1\x0c\xa3\x45\xc0\xef\x9a\xfe\x8f\x10\x7b\x3f\x19\x77\x80\xde\x4f\x64\x6f\xb5\x83\x10\x31\x25\xe3\x0e\xb1\x80\x80\xb5\x71\x2d\x1c\x71\x8e\x85\xd2\xae\x85\x1c\x11\x2a\xe3\x4c\x2a\x6d\xd6\xd5\xe5\x35\x06\x44\xaf\x66\x9f\x03\x58\x73\x34\xee\x50\x2a\xf5\xc9\x8f\xd8\x65\x6b\x67\x7a\xff\xc2\x5a\xe8\xc8\x64\xa2\xb0\x72\xa4\x2f\xa5\x52\x57\x57\x57\xf0\x75\xf1\xaa\xd4\x9d\x13\x5b\x85\x58\x5a\xe1\x80\x26\x6c\xc9\x07\x6c\xc1\x38\xa8\xfe\x79\x55\x8a\xf3\x57\x7c\xfa\xd5\x7a\xae\xfc\x33\x7a\x57\x15\xa0\xa1\x33\x16\x15\xa7\xc2\x44\x68\x02\xea\x84\xe4\x19\xa1\x33\x21\x26\x48\x66\x40\x72\x01\x21\x2f\x1e\x4b\xb8\x4b\x92\x6c\xb2\xc1\xf7\x61\xea\x4d\xd3\x43\xef\x6d\x1b\x95\xb6\x96\xef\x3f\x40\xe2\x50\xd0\x04\x38\x69\x9b\x31\x96\x70\xef\xa1\xe9\xb5\x3b\x20\x68\x07\x7e\xa4\xa2\x70\x1c\xd0\x68\x07\x68\x52\x8f\x41\x2d\x07\xc8\x12\x5f\xa3\x70\xe8\xa1\xba\x0c\x81\xfd\x17\xe0\xc3\x76\x3f\xcd\x23\x82\x49\x74\xbe\x35\x01\x9b\x64\x67\x35\xf5\x84\x32\x47\x2a\xa5\x04\xa1\xd4\x57\x2a\xf5\x0c\x63\xc0\x18\xe1\x36\x05\xfb\x7f\xaa\xcb\xc1\x4b\xc1\x86\x81\x60\x0f\xbe\xc5\x42\x02\x20\xab\xe4\x7b\xc1\x2b\xa0\x2a\xb8\x16\x58\xaa\xcb\x29\x07\x2c\xe0\x4e\x18\xc5\x1c\x78\x07\x4f\xcf\x27\x0f\xc6\xb5\xa6\xd1\x09\xc5\x35\x41\x62\xef\xfb\x12\xee\x7b\x5c\xe3\x66\x2b\x49\x1f\x11\xb0\xeb\xb0\x49\x60\x86\x01\x5b\xa3\x13\xda\x99\x01\xf1\x01\x6d\xa3\x87\x1a\x21\xea\x13\x55\xcd\x3f\x97\x21\xc5\x15\x8a\x5e\xf8\x7e\x56\x19\x31\x11\x93\x69\x8e\x80\x27\x74\xa0\xbb\x84\x4b\x1e\xad\x8f\xb8\x65\xea\x8f\x25\xb3\xec\xed\x21\xa4\x08\xd6\x37\x9a\x48\x2b\xe5\x1f\x50\xbb\xf8\x1f\x5e\xbc\xb3\x33\xf4\xfa\x44\x54\x5b\x0b\x4a\x8e\xb8\xf3\xa4\x58\xf4\xa1\xce\x5d\xb7\x40\x20\x3f\xfc\xa1\x84\x8f\x3e\xac\x1d\x59\x80\xe9\xf8\xb3\xd8\x9a\x3c\xc4\xd1\x9a\x14\xc1\x8f\xe8\xa4\x52\xf4\x55\xaa\xc5\xf9\x67\x8c\x90\x74\x1d\xcd\x5f\x08\xaf\xab\x82\x1d\xad\xcf\x1b\x38\x55\x23\xbc\x5e\x61\x34\x39\x04\x74\x69\x81\x53\xc2\x7b\x0a\x5c\x5a\x97\x2f\x38\x9f\x38\xe5\xd2\xa1\xe2\x61\xe5\x2b\xd7\x40\x3d\xc7\xd2\x12\x3e\xf9\x09\x4f\x18\x1e\xb8\x1e\x13\x97\xe0\x99\x94\x2e\xb4\x7a\xde\xce\x73\x09\x99\xb4\x93\xbc\x57\x4b\x6c\xcc\x35\x8e\x8a\xe3\x33\x0e\xbe\xe4\x7a\x66\x0b\x51\x32\xf5\x06\x3c\xb5\xda\x64\x22\x2e\x90\x7c\xb6\x2d\x8c\x59\x0c\x75\xde\x5a\x51\x3f\x52\x92\x4b\x20\x37\x4a\x55\x55\x45\x3f\xd5\xdf\x0a\x00\x60\xf7\xbf\x32\xd4\xbb\x1b\x90\x27\x7e\xb3\xe0\xd8\xdd\xc0\x6b\x7e\xf9\xa3\x50\x8f\xde\xbf\x51\x3f\xc8\x8c\x52\xbf\x3d\xe4\x96\x92\xf1\x24\x0c\x89\x81\x70\x30\xfc\x95\x70\x3a\x35\x3d\x1f\x3e\x58\x5f\x43\x45\x10\xaa\x52\xa9\xbb\x25\x23\x1c\x8d\x35\x47\xae\xca\xd1\xf9\x09\x06\x1f\x10\x74\xed\x73\x82\x55\xa6\xf4\x49\x1b\xab\x6b\x8b\x6b\x09\x0a\x88\x88\x92\xfc\xe5\x0d\x41\x18\x4d\x03\xd7\xd5\x3b\xe8\xd1\x8e\xeb\xc9\x6a\xbf\xc8\xf2\x67\x9c\x69\x06\x88\x32\x9f\x3d\xc0\xe4\xc3\x91\x50\x0f\x79\x01\x1a\xf5\x80\x30\xe9\x19\x74\x5c\xad\x94\xc0\xfd\xb5\x8d\x88\xd4\xe3\x20\x52\xc5\xbd\xf2\x44\xc2\x57\xe3\xe7\x8c\x50\xea\x8c\x12\x1b\x23\x2e\xe2\xe7\x21\x55\x91\xd2\x7c\xe1\x94\x06\x6c\xfd\xd3\xa2\xab\xcb\xa2\x5f\xfa\x7a\x5a\x74\x36\xb7\xbb\x81\x1d\x59\xdb\xad\xd5\xfc\x86\x61\x06\x99\xa4\x8f\xd5\x63\x1b\x95\x20\x92\x6c\x96\xa1\x02\xf5\xbc\xc8\x33\xc7\xfc\x6e\x3b\x08\xba\xa1\x2c\x55\xab\x24\x17\xaa\x5e\xe8\xb9\x25\x99\x82\x18\x48\x29\x27\x93\x24\xcb\xab\x7c\x4f\xde\xbd\x48\x4f\xf5\xf1\x32\x2a\x75\x96\x41\xe6\x87\x71\x9d\x0f\x83\xac\x0a\xc2\x95\xe3\x43\x49\x0b\x49\xa8\x10\x90\x03\xa1\xd8\x6a\x84\xda\x67\xd7\x72\x5f\xa9\x89\x24\x50\x70\xcb\x40\xde\x38\xb6\x71\x0b\xaa\x33\x9b\x95\xb0\xea\x11\xc9\xce\x0f\xac\x44\xbb\xbd\xd8\x63\x38\xde\x5f\xb3\xde\x18\xef\x10\x5b\x89\x61\xf4\x13\x06\xd2\x62\x11\xb4\x6d\x52\x47\x18\x83\x3f\x99\x16\x1f\x34\x88\x46\x15\x23\xda\x56\x16\xc9\x08\xdc\xf2\x32\xb0\xa8\xf3\x63\x1a\x56\x34\xad\x4c\x94\xf1\xcf\xdb\x80\xcd\xb2\x4c\xc0\xba\x4c\x84\xec\xd4\xd4\xe3\x5a\xe1\x98\x74\x48\xb2\x0d\x98\x08\x18\x23\xba\x64\x58\xeb\x34\x78\x87\x2f\xf9\xee\x68\xf3\xc1\x38\xea\x61\xda\x82\x68\xfb\x12\xb5\x97\xf5\xeb\x29\x54\xf1\x58\xcf\x34\x48\x88\x3d\xb4\x3f\x2c\x5d\xe0\xbb\xe5\x9a\x92\xad\x86\xb6\x43\xc9\x27\x99\x5a\x3b\x41\x0a\xc9\xca\x83\xdf\xb1\xc9\x09\xa1\x3a\x78\xc2\x5e\x81\xbf\x9c\x06\xbc\x69\x28\x9a\x58\xee\x61\xca\x9d\x7f\x94\x3c\xfc\xe2\xd7\x9e\x5c\x99\xdf\x2e\xb3\xb7\x9e\xa9\xcd\xd2\xca\xf2\xcb\x56\xdb\x42\x92\x2e\xb3\x59\xab\x2e\x3b\x26\x11\x1c\x7c\xc8\xee\x7a\xcf\x3d\x27\xd3\xa6\xce\x1d\xbc\x85\xdb\x1c\xbe\x19\x9c\xae\xf7\xe5\x87\xdc\xc1\xcb\x97\xb4\x40\x3c\x1a\x5e\x7c\xc7\x74\xf4\x74\xf3\xd1\x58\xbc\x9f\x47\xbc\xde\xc3\xdb\xb7\xb0\x3b\xf8\x1d\xe1\x70\x9b\x62\x7f\xd2\xae\xb5\xf8\xb5\x47\x6b\x6f\xa5\x83\xae\x77\x92\x0b\xd8\x41\x59\x92\x8d\xf2\x77\x9d\xfa\x02\x52\xc8\xb8\x27\x87\xf4\x63\x19\xfc\x2d\x37\x1b\x1d\x3e\x9b\xe7\xba\x39\x1e\x02\x75\x06\x3b\x41\xd7\x2a\xfa\xa7\x3e\x18\xd7\x7e\xc6\xf9\x7a\x11\x90\x02\x76\x1c\x3e\xc7\xb9\xdb\x8b\x8a\xbc\xb7\x09\x83\xd3\xc9\x9c\xd0\xce\xe7\xf3\xe9\x80\x09\x82\x69\xa9\xc0\x4c\x86\xc5\x58\x05\xd6\xb8\x65\x5b\x13\x35\xa3\xd9\x6c\x1c\x35\xb4\x7a\xa6\xef\xb9\x4a\x3f\x91\xb4\x33\x44\xab\xb0\xfd\x44\x22\x84\xb8\xdb\xb2\xcb\xdd\x70\xfe\x77\x86\xf4\x40\x8e\x28\xf3\x45\x00\x2d\x97\x9e\xef\xff\xf5\xe3\xbe\x54\xff\x06\x00\x00\xff\xff\x73\x97\x05\x6a\xec\x0c\x00\x00") +var _runtimeHelpTutorialMd = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x7c\x57\x4f\x6f\xdc\xc6\x0f\xbd\xcf\xa7\x20\xd6\x87\x78\x7f\x50\x14\x20\xc8\xc9\x40\x02\x24\xc6\x2f\x8d\x91\x16\x28\x12\x23\x40\x6f\x1a\x49\xd4\x6a\xba\xa3\x19\x61\xfe\xac\xa2\x16\xe9\x67\x2f\x48\x4a\xf2\xae\xed\xe6\x90\xd8\x92\x66\xc8\x47\xf2\xf1\x91\xbe\x82\xfb\x9c\x7c\x30\xda\x2a\x75\xdf\x9b\x08\x26\x82\x86\x3a\x18\xec\xc0\xb8\x14\x3c\x24\x0f\x83\x69\x82\x7f\x11\xa1\xf1\xae\x33\x87\x1c\x74\x32\xde\x41\x9c\x63\xc2\x01\x52\xaf\x13\x4c\xc6\x5a\x38\x98\x13\x42\xf4\x03\xaa\x68\x86\xd1\x22\xe0\x77\x4d\x3f\x23\xc4\xde\x4f\xc6\x1d\xa0\xf7\x13\xd9\x5b\xed\x20\x44\x4c\xc9\xb8\x43\x2c\x20\x60\x6d\x5c\x0b\x47\x9c\x63\xa1\xb4\x6b\x21\x47\x84\xca\x38\x93\x4a\x9b\x75\x75\x79\x8d\x01\xd1\xab\xd9\xe7\x00\xd6\x1c\x8d\x3b\x94\x4a\x7d\xf2\x23\x76\xd9\xda\x99\xde\xbf\xb0\x16\x3a\x32\x99\x28\xac\x1c\xe9\x4b\xa9\xd4\xd5\xd5\x15\x7c\x5d\xbc\x2a\x75\xe7\xc4\x56\x21\x96\x56\x38\xa0\x09\x5b\xf2\x01\x5b\x30\x0e\xaa\x7f\x5e\x95\xe2\xfc\x15\x9f\x7e\xb5\x9e\x2b\xff\x8c\xde\x55\x05\x68\xe8\x8c\x45\xc5\xa9\x30\x11\x9a\x80\x3a\x21\x79\x46\xe8\x4c\x88\x09\x92\x19\x90\x5c\x40\xc8\x8b\xc7\x12\xee\x92\x24\x9b\x6c\xf0\x7d\x98\x7a\xd3\xf4\xd0\x7b\xdb\x46\xa5\xad\xe5\xfb\x0f\x90\x38\x14\x34\x01\x4e\xda\x66\x8c\x25\xdc\x7b\x68\x7a\xed\x0e\x08\xda\x81\x1f\xa9\x28\x1c\x07\x34\xda\x01\x9a\xd4\x63\x50\xcb\x01\xb2\xc4\xd7\x28\x1c\x7a\xa8\x2e\x43\x60\xff\x05\xf8\xb0\xdd\x4f\xf3\x88\x60\x12\x9d\x6f\x4d\xc0\x26\xd9\x59\x4d\x3d\xa1\xcc\x91\x4a\x29\x41\x28\xf5\x95\x4a\x3d\xc3\x18\x30\x46\xb8\x4d\xc1\xfe\x9f\xea\x72\xf0\x52\xb0\x61\x20\xd8\x83\x6f\xb1\x90\x00\xc8\x2a\xf9\x5e\xf0\x0a\xa8\x0a\xae\x05\x96\xea\x72\xca\x01\x0b\xb8\x13\x46\x31\x07\xde\xc1\xd3\xf3\xc9\x83\x71\xad\x69\x74\x42\x71\x4d\x90\xd8\xfb\xbe\x84\xfb\x1e\xd7\xb8\xd9\x4a\xd2\x47\x04\xec\x3a\x6c\x12\x98\x61\xc0\xd6\xe8\x84\x76\x66\x40\x7c\x40\xdb\xe8\xa1\x46\x88\xfa\x44\x55\xf3\xcf\x65\x48\x71\x85\xa2\x17\xbe\x9f\x55\x46\x4c\xc4\x64\x9a\x23\xe0\x09\x1d\xe8\x2e\xe1\x92\x47\xeb\x23\x6e\x99\xfa\x63\xc9\x2c\x7b\x7b\x08\x29\x82\xf5\x8d\x26\xd2\x4a\xf9\x07\xd4\x2e\xfe\x87\x17\xef\xec\x0c\xbd\x3e\x11\xd5\xd6\x82\x92\x23\xee\x3c\x29\x16\x7d\xa8\x73\xd7\x2d\x10\xc8\x0f\x7f\x28\xe1\xa3\x0f\x6b\x47\x16\x60\x3a\xfe\x2c\xb6\x26\x0f\x71\xb4\x26\x45\xf0\x23\x3a\xa9\x14\x7d\x95\x6a\x71\xfe\x19\x23\x24\x5d\x47\xf3\x17\xc2\xeb\xaa\x60\x47\xeb\xf3\x06\x4e\xd5\x08\xaf\x57\x18\x4d\x0e\x01\x5d\x5a\xe0\x94\xf0\x9e\x02\x97\xd6\xe5\x0b\xce\x27\x4e\xb9\x74\xa8\x78\x58\xf9\xca\x35\x50\xcf\xb1\xb4\x84\x4f\x7e\xc2\x13\x86\x07\xae\xc7\xc4\x25\x78\x26\xa5\x0b\xad\x9e\xb7\xf3\x5c\x42\x26\xed\x24\xef\xd5\x12\x1b\x73\x8d\xa3\xe2\xf8\x8c\x83\x2f\xb9\x9e\xd9\x42\x94\x4c\xbd\x01\x4f\xad\x36\x99\x88\x0b\x24\x9f\x6d\x0b\x63\x16\x43\x9d\xb7\x56\xd4\x8f\x94\xe4\x12\xc8\x8d\x52\x55\x55\xd1\xaf\xea\x6f\x05\x00\xb0\xfb\x5f\x19\xea\xdd\x0d\xc8\x13\xbf\x59\x70\xec\x6e\xe0\x35\xbf\xfc\x51\xa8\x47\xef\xdf\xa8\x1f\x64\x46\xa9\xdf\x1e\x72\x4b\xc9\x78\x12\x86\xc4\x40\x38\x18\xfe\x4a\x38\x9d\x9a\x9e\x0f\x1f\xac\xaf\xa1\x22\x08\x55\xa9\xd4\xdd\x92\x11\x8e\xc6\x9a\x23\x57\xe5\xe8\xfc\x04\x83\x0f\x08\xba\xf6\x39\xc1\x2a\x53\xfa\xa4\x8d\xd5\xb5\xc5\xb5\x04\x05\x44\x44\x49\xfe\xf2\x86\x20\x8c\xa6\x81\xeb\xea\x1d\xf4\x68\xc7\xf5\x64\xb5\x5f\x64\xf9\x33\xce\x34\x03\x44\x99\xcf\x1e\x60\xf2\xe1\x48\xa8\x87\xbc\x00\x8d\x7a\x40\x98\xf4\x0c\x3a\xae\x56\x4a\xe0\xfe\xda\x46\x44\xea\x71\x10\xa9\xe2\x5e\x79\x22\xe1\xab\xf1\x73\x46\x28\x75\x46\x89\x8d\x11\x17\xf1\xf3\x90\xaa\x48\x69\xbe\x70\x4a\x03\xb6\xfe\x69\xd1\xd5\x65\xd1\x2f\x7d\x3d\x2d\x3a\x9b\xdb\xdd\xc0\x8e\xac\xed\xd6\x6a\x7e\xc3\x30\x83\x4c\xd2\xc7\xea\xb1\x8d\x4a\x10\x49\x36\xcb\x50\x81\x7a\x5e\xe4\x99\x63\x7e\xb7\x1d\x04\xdd\x50\x96\xaa\x55\x92\x0b\x55\x2f\xf4\xdc\x92\x4c\x41\x0c\xa4\x94\x93\x49\x92\xe5\x55\xbe\x27\xef\x5e\xa4\xa7\xfa\x78\x19\x95\x3a\xcb\x20\xf3\xc3\xb8\xce\x87\x41\x56\x05\xe1\xca\xf1\xa1\xa4\x85\x24\x54\x08\xc8\x81\x50\x6c\x35\x42\xed\xb3\x6b\xb9\xaf\xd4\x44\x12\x28\xb8\x65\x20\x6f\x1c\xdb\xb8\x05\xd5\x99\xcd\x4a\x58\xf5\x88\x64\xe7\x07\x56\xa2\xdd\x5e\xec\x31\x1c\xef\xaf\x59\x6f\x8c\x77\x88\xad\xc4\x30\xfa\x09\x03\x69\xb1\x08\xda\x36\xa9\x23\x8c\xc1\x9f\x4c\x8b\x0f\x1a\x44\xa3\x8a\x11\x6d\x2b\x8b\x64\x04\x6e\x79\x19\x58\xd4\xf9\x31\x0d\x2b\x9a\x56\x26\xca\xf8\xe7\x6d\xc0\x66\x59\x26\x60\x5d\x26\x42\x76\x6a\xea\x71\xad\x70\x4c\x3a\x24\xd9\x06\x4c\x04\x8c\x11\x5d\x32\xac\x75\x1a\xbc\xc3\x97\x7c\x77\xb4\xf9\x60\x1c\xf5\x30\x6d\x41\xb4\x7d\x89\xda\xcb\xfa\xf5\x14\xaa\x78\xac\x67\x1a\x24\xc4\x1e\xda\x1f\x96\x2e\xf0\xdd\x72\x4d\xc9\x56\x43\xdb\xa1\xe4\x93\x4c\xad\x9d\x20\x85\x64\xe5\xc1\xef\xd8\xe4\x84\x50\x1d\x3c\x61\xaf\xc0\x5f\x4e\x03\xde\x34\x14\x4d\x2c\xf7\x30\xe5\xce\x3f\x4a\x1e\x7e\xf1\x6b\x4f\xae\xcc\x6f\x97\xd9\x5b\xcf\xd4\x66\x69\x65\xf9\x65\xab\x6d\x21\x49\x97\xd9\xac\x55\x97\x1d\x93\x08\x0e\x3e\x64\x77\xbd\xe7\x9e\x93\x69\x53\xe7\x0e\xde\xc2\x6d\x0e\xdf\x0c\x4e\xd7\xfb\xf2\x43\xee\xe0\xe5\x4b\x5a\x20\x1e\x0d\x2f\xbe\x63\x3a\x7a\xba\xf9\x68\x2c\xde\xcf\x23\x5e\xef\xe1\xed\x5b\xd8\x1d\xfc\x8e\x70\xb8\x4d\xb1\x3f\x69\xd7\x5a\xfc\xda\xa3\xb5\xb7\xd2\x41\xd7\x3b\xc9\x05\xec\xa0\x2c\xc9\x46\xf9\xbb\x4e\x7d\x01\x29\x64\x94\xff\xf7\xe4\xf6\x6c\x5d\x0c\x19\x97\x45\xa0\xe5\xe6\xa3\xcb\x67\xf3\x5d\x37\xc7\x43\xa0\x4e\x61\xa7\xe8\x5a\x45\xff\xd4\x07\xe3\xda\xcf\x38\x5f\x2f\x82\x52\xc0\x8e\xd3\xc1\x71\xef\xf6\xa2\x2a\xef\x6d\xc2\xe0\x74\x32\x27\xb4\xf3\xf9\xbc\x3a\x60\x82\x60\x5a\x2a\x38\x93\x63\x31\x56\x81\x35\x6e\xd9\xde\x44\xdd\x68\x56\x1b\x47\x0d\xae\x9e\xd1\x01\xae\xda\x4f\x24\xee\x0c\xd1\x2a\x74\x3f\x91\x0c\x21\xf2\xb6\xfc\x72\x77\x9c\xff\xdd\x21\x3d\x91\x23\xca\xbc\x11\x40\xcb\xa5\xe7\xf5\x60\xfd\xb8\x2f\xd5\xbf\x01\x00\x00\xff\xff\x39\xa2\x6d\x83\xfc\x0c\x00\x00") func runtimeHelpTutorialMdBytes() ([]byte, error) { return bindataRead( @@ -921,7 +921,7 @@ func runtimeSyntaxCsharpMicro() (*asset, error) { return a, nil } -var _runtimeSyntaxCssMicro = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x74\x59\x4f\x93\xe3\xb6\xf1\xbd\xef\xa7\xd0\x4f\x3f\x57\x76\x66\x2b\x58\xdf\xc7\x71\x72\x88\x93\x2a\x1f\x52\x3e\x24\x87\xad\xb2\xd6\x55\x2d\xb2\x29\x62\x05\x02\x30\x00\x4a\xa3\x5d\x38\x9f\x3d\xd5\xdd\x00\x05\x4a\x9a\x0b\xf5\xde\x03\x08\x82\x0d\xf4\x1f\x50\xf1\x62\x13\xbc\x6e\xb6\x5d\x8c\xdb\xcd\x76\xf7\xf1\xa9\x8b\x31\xc7\x2e\xc6\xe7\xef\xb6\xef\xde\xfd\xff\xe6\xef\x06\x62\xc4\xb8\x01\xdb\x6f\x7e\xfe\x29\xbe\xeb\x9c\x71\x61\x13\x13\x24\x9c\xd0\xa6\xcd\x93\x7e\xde\x6c\x3f\x6e\x8b\x6e\x5d\x98\xc0\x50\x73\x48\x3f\x6e\x77\xdf\xb6\x1b\xb4\xfd\x8f\xdb\xdd\x1f\x3c\x56\x17\xe3\xa6\x73\xd3\x04\xb6\xaf\x03\xa5\x8b\xc7\xcd\xf6\x09\x8c\x3e\x58\xd5\x39\x9b\xd0\xa6\x2c\x4c\x27\x9c\xa2\x60\x7a\x92\xda\x43\x44\xa3\x2d\x96\xe6\x88\x66\xc8\x60\x4c\x06\xab\x27\x48\xda\xd9\x2b\x52\x3d\x1a\xb8\xb4\x5c\x07\xec\x6e\xfb\xcc\xe1\xf6\xb6\x41\x1b\xa3\x26\xd7\x63\xa3\xe9\x84\xd2\x4f\x75\x6e\xa6\xc9\x2d\x2d\x16\xa6\xb6\xa3\x37\x70\x51\x6c\x98\x46\x4c\x7a\xd2\xf6\xa0\x86\xd9\x96\xc7\x7b\x8f\x10\xc0\x76\x98\xe1\xab\x9e\xe6\x34\xe6\x3d\x74\xc7\x01\x3a\x54\x27\x1d\xf5\x5e\x1b\x9d\x2e\xac\x1d\x82\x9b\x6d\xdf\x40\x05\x29\x41\x37\x92\x31\x5a\x75\x6f\xd0\xf6\x32\xeb\x46\xed\x8c\xf6\x2b\x4e\xe6\x6e\x05\x3d\xc1\x61\x75\x87\x0b\xfa\xa0\x6d\xab\x78\x17\x35\xcf\xba\xd1\x02\x7a\x84\xd5\xf3\xa3\xfe\x4a\xe3\xc8\xe2\xa8\x38\xea\x21\xe5\xbd\x73\xc7\x09\xc2\x51\x19\xd8\xa3\x69\x28\x9e\x5a\x2a\xd6\xda\xbb\xd0\x63\x28\x3f\x6a\xef\x52\x72\xd3\x9a\xd5\xd9\xaf\x34\x83\x43\x52\x01\x7a\x3d\xc7\x9b\x96\xa0\x0f\xe3\x1b\x4d\x31\x5d\x0c\xde\x68\x67\xdd\xd3\x32\x54\x6d\xb6\x3d\x84\x4b\xe5\x9d\x33\x06\x7c\xc4\x86\x5f\x67\x52\x6c\xd8\x10\xe5\xe6\x14\x31\xad\xb5\x6a\xb3\x56\x8b\x46\x77\x37\xb7\x46\x37\x87\x5b\x6d\x35\x37\x7a\xe3\x16\xaf\x27\xc3\xca\xea\xfd\x58\x59\x8d\xb0\xb6\x09\xdb\x69\x45\xd6\x23\x8a\xb4\x1a\x52\xa4\xd5\x98\xd1\x43\xa7\xed\x61\xa1\x6d\xf7\xe4\x7c\x03\xd7\xa3\x93\xf0\x60\x0d\x49\x7e\xb4\x80\xa4\xdf\x8e\xbd\x9e\x48\x25\x65\xff\xbc\xaa\x1e\x3b\x57\x7c\x77\x1f\x10\x8e\x2c\xc6\x11\x7a\x77\x16\xa8\xbf\xca\xc4\x5f\x55\xb4\xe0\x05\xcc\xde\x07\x8c\x31\xf3\x1d\x0a\x86\x44\x5b\x93\xf1\x1e\x07\x17\xb0\x10\x6d\xa3\xee\x31\x77\xe0\x79\xfc\x42\x02\x26\xb9\xaa\x6b\x54\x12\x2e\xaf\x2e\x38\x8e\xe0\x31\x77\x23\x68\x1b\x73\x67\x10\x42\x66\x77\xa5\x8b\xf2\x90\x46\x41\x61\x36\x98\xcb\x7d\x74\x55\xda\x26\x0c\xde\x99\x25\x58\x25\x0c\x91\xda\xe6\xa9\x46\xa7\x42\x28\x90\x55\x7c\x00\x5f\x61\x1d\xb1\x62\xb5\x8c\xbe\x28\x62\xe2\x56\x11\xb3\x8a\xb2\x3c\x2d\x7a\xb0\x15\xd7\x0e\x12\xbc\xe9\x57\xdb\x99\xc6\x98\x69\xbe\x4a\xdb\x2e\x70\xae\x58\x94\x80\xe4\x22\x95\x31\xa6\xfe\x33\x16\x73\x13\x2a\xc6\xee\xe6\x10\x5d\xc8\xd7\xf8\xdd\xeb\x48\x81\x36\xf7\x6e\xd2\x16\xda\xb4\x80\x06\x4f\x62\x71\x9c\x7c\xba\xa8\x0e\x8d\x89\x59\xac\x94\x07\x83\xaf\x7c\xa1\xfe\x3a\x0a\xbc\x8e\xca\x74\x30\xee\x2c\xe8\x10\x2a\x8a\x63\xd0\xf6\x28\xf8\x1c\xc0\xe7\xc1\x38\x48\x72\x55\x3d\x0e\x3c\x34\x61\x37\x0c\xf4\x22\x42\x02\x35\x20\x05\xf9\xc1\x38\x57\x83\xaf\x60\x47\xee\x92\x2e\xb9\x3c\xcd\x9d\xd5\x10\xdc\x24\x48\xdb\xe4\xf2\xe0\x6c\xe2\x8b\x1a\x60\xd2\xe6\x52\x30\x42\x9a\x03\x92\xb5\x92\xb6\x87\x28\xea\x11\x83\xa5\x2d\xcc\xc4\x80\x3d\xcc\x1c\x83\x4e\x18\x02\x6d\x48\x96\x39\x3e\x2f\x48\x41\xff\x65\x8e\xe5\x01\x31\x05\x4c\xdd\x58\x09\xad\xbc\xc0\x8b\x4d\x23\xb2\x9d\x88\x9e\x20\x68\xa8\x93\x2a\x44\x01\xd9\xd5\x42\xc2\x75\x27\xd5\x81\xbf\x51\x10\x62\x52\x10\x35\xd8\xb5\x6e\xf4\x81\xdf\xe9\xa6\xbb\x9d\x27\x0c\xba\x5b\x8b\x4b\x2a\x62\xf5\x8c\x1c\xb9\x06\xe7\x92\x75\x09\x55\xdd\x14\x8b\xe0\x9d\xd1\xdd\x25\x1f\xcc\xc5\x8f\x94\xd8\xd0\x26\x71\x9a\x13\x86\xa4\x3b\x30\xf9\x10\x74\xcf\x17\x05\x01\xa1\xa0\x39\x39\x55\x37\xfa\x55\xe1\x95\xba\xd2\xe0\xce\xa5\x55\xba\xb6\x58\xa1\xed\x57\x9c\x9c\xaf\xe5\x5c\x19\x89\xb2\x34\x85\x3a\x7c\x70\xe7\xeb\x00\x44\xda\x2e\xed\xad\x09\x27\x6f\x28\x75\xae\x18\xbf\x49\xbc\xd1\x56\xaf\xb3\xa8\xfc\x0e\x23\xd8\x03\x15\x27\x9e\x8a\x93\x59\x5c\x67\x14\xcb\x8e\x17\x3f\xa2\xe5\xfb\x47\x08\xd0\x91\x0b\x5d\x35\xa3\x27\x9d\xb8\x25\xde\xa9\x06\x62\xba\x17\xb5\xc5\xfb\xae\x5f\x9d\xc5\x22\xc6\x5c\xb2\xe7\x75\xa9\x72\xcd\x9d\xb6\xc7\x40\x7b\xbc\xf2\xe8\xcc\x2c\x1d\xac\x4e\x1a\x8c\x32\x98\x68\x7e\x6b\xaa\xb8\x4a\xbc\x15\xd9\x85\x75\x2c\x21\x34\x93\x27\xe8\xe1\xb2\x14\x9e\x95\x4b\xe9\x59\x19\x57\x9a\x9c\x7b\xcb\x28\x35\xe3\x19\xb2\x15\x59\x50\xfc\x9b\xeb\x1f\x49\x34\x0c\x79\x8b\x31\x2a\x56\x95\x02\x89\x32\x8d\xd1\xb1\x3a\xdc\x15\x96\x72\xa2\x11\x96\x5d\xdf\x68\x54\x31\xe7\x09\x02\xd5\x6a\xf2\x53\x4b\xa6\xc2\x78\xa6\x05\x4b\x86\x2f\x84\x92\x31\x95\x5d\x18\xca\x0f\x6f\xb6\x02\x8f\xd6\x75\x47\x37\xa7\xe5\xf6\x95\xb8\x8c\x43\xea\xa4\x97\xbb\x3c\x90\x41\x6c\xa5\x11\x0f\x1c\xe8\x2b\xa5\x18\x54\x31\xef\xde\x09\xc2\xef\x33\x62\x13\x79\xab\x62\x9c\xcc\x8e\x49\xf4\x88\xfd\x95\xb1\x9d\x26\x88\x47\xbe\xa8\x52\x2f\x36\x58\xaa\xdf\x56\x28\x65\x58\x2b\x95\x2a\xac\x95\xa4\x08\x5b\x29\x52\x83\xb5\x92\xa4\x37\x56\x38\x4b\x0b\x72\x13\x2f\x4e\xe9\x2a\x2b\xc7\xf0\x3a\x95\x52\x50\x33\x5e\x56\x92\x59\x3b\x15\x0e\xcf\x8c\xca\xca\xbe\xd6\xed\x42\x50\x3c\x87\x50\x99\x86\xb6\x4b\xb3\xb6\x8b\xf8\xda\x9e\x02\x26\x27\x4f\xe2\x9f\x9a\x98\x0a\xe3\xea\xa2\xe0\xe0\x8a\xa7\x59\x38\xa9\xde\x9d\x05\xf0\xfa\x13\x90\x35\x27\x34\xfb\xec\xf6\x5f\xb0\x4b\x6a\xd0\xa9\xc2\xe5\x8d\xe4\x01\x25\x75\x17\x52\xb2\x77\x61\xb4\xcd\x0a\x94\x6d\x50\x73\xa0\x2c\xa4\x0b\x7e\x04\x1b\xb3\x9b\x13\x27\xf2\xf2\x5b\xbc\xaa\xb2\xf2\x1e\x95\xca\xa6\xa8\x4c\xec\x40\x79\x8f\x83\x75\x05\xb5\x57\xa5\xec\xfe\x0b\x7b\xbd\xc2\x4b\xf6\xd0\xf7\xe4\xd3\xe5\xb7\xfa\x54\xa5\x6c\x95\x4a\xc4\x32\x95\x91\x5b\x79\x5a\x7e\xba\xa8\xb6\x6c\x6c\x84\x62\x90\x46\x29\x05\xa4\x87\x39\x96\xeb\x72\x17\xe1\x7a\x03\x86\xe8\xc9\x55\x4e\x2b\x5c\xf7\x96\xd7\x94\xbe\xf9\xaa\x02\x58\x9a\x04\x9d\x42\xfb\x99\x23\x26\x95\x8a\x41\x81\xed\x46\x17\x16\x72\x30\x58\x70\xaf\x63\xe2\x93\xa8\xd0\x3a\x64\x5d\x57\x2a\x83\x97\xbc\x29\x07\xb7\xdf\x67\x47\xf9\x3e\xe0\x81\x0b\xd0\x00\xe2\xee\x01\x79\x13\x07\x8c\x8c\xeb\x5e\x60\x58\xde\x23\xe8\x6e\xb4\x54\x56\x8b\xed\x96\xad\x57\x81\xf2\x4e\xd3\x48\xf3\xfe\x52\x22\x37\xc3\x09\xc3\x01\x05\x2e\xf3\x0a\xb3\xe5\x9a\x27\x76\xc1\x19\xa3\xf6\x38\xc2\x49\xbb\x50\x39\xc5\xd7\x32\x44\xab\x94\x88\x79\x2f\xa9\xbd\x71\xdd\xf1\xcd\x06\xde\xbc\x6f\x36\xca\x76\x7e\xd4\x2c\xdb\xe7\x41\x8b\xb6\xbc\xc9\xdf\x6c\x79\xeb\x81\xa5\xf5\xcd\x27\xf2\x0e\x7d\xa0\x8b\xc1\x1f\x34\xd0\xbe\x6d\xe5\xea\x01\x0f\xb4\x07\x36\x5a\xb5\xdc\xcd\x79\xdd\x7a\x3f\xe7\x1b\x2f\x7b\xd4\xf4\xc0\x4e\xeb\xa6\x37\x1f\xfa\xa6\xa5\x56\xce\xfc\xa8\xe1\xde\x56\xad\x93\xb7\x3a\xc7\x6a\x3e\xc7\x95\x83\x7a\x1a\x03\xc6\xd1\x99\xbe\xaa\xe2\xde\x42\xea\xe6\x63\x42\xa9\x89\x9b\xc8\x67\xa2\xa7\x72\x81\xaf\x0a\x62\x01\x23\x02\xc5\x45\x21\x5c\x0e\x83\x29\xac\xad\xd5\x28\x4b\xb2\xdf\x27\xcc\x54\xc9\xc7\x48\x3f\x34\x5b\x0a\x94\x31\x05\x77\xc4\xf2\xa3\x96\xcf\x68\x55\xe8\x81\x0e\xc2\x7c\x14\x68\x95\x10\xe0\xd2\x0a\x9d\x0b\x96\xa6\x72\x55\x4a\x1c\x2e\x0a\x59\xba\x03\xdf\xd2\x2f\x8e\x5e\x55\xf8\xa4\x13\x06\xae\xf6\xaa\x52\x43\x7f\xa1\x12\xb8\x13\xec\x0d\x2a\x03\x17\x37\x27\x22\x92\x14\x13\xbe\xa6\xe2\xc9\x57\xa8\xc0\x98\x96\x72\xbd\xc9\xbc\x73\xd3\x9e\xd6\x7d\xf6\xb2\x8c\x2c\x5e\x3f\x01\xdc\xf2\x92\x5e\x6e\x55\xde\x74\xb7\x62\x3c\x6a\x7f\x2f\x72\x6e\x61\x15\x27\x3f\xf2\xb1\x72\xc5\xda\x27\x2c\xda\x12\xc6\xd6\x72\x33\x98\xb6\x3d\xad\x13\xe3\x52\x82\x0a\x69\x8b\x63\x11\x6a\xbe\x63\x56\x3e\x6c\x08\xf6\xd0\xe1\xf5\xdb\x55\xa3\xa5\xa0\xa7\x2b\x27\x7f\x67\x92\x02\xd8\x38\xb8\x50\xda\x66\x2a\xba\xd9\x8b\xd6\xf3\xe5\x04\x4a\xbe\xd0\xf4\xaf\x48\xed\xdd\x6b\xc3\x4a\x3a\xb9\x0a\xe5\x15\x89\x97\x11\x17\x58\xbe\xd7\xb6\x42\xfd\x38\xdb\x68\x3e\x38\x8f\x21\xad\xfa\xdd\x7e\x5f\x9d\xad\xee\x5c\x8f\x6a\xaf\x7b\x9d\xe7\xc8\x35\xa9\xc1\x2e\xe5\x7a\xf0\x2b\x1b\xaa\xf9\xd6\x7a\x72\xba\x43\xb5\x07\xc3\xb9\x50\xd8\xf2\x78\xa1\xe5\x20\x2e\x44\x72\xae\x60\xc9\xb9\x15\xa7\x0a\x8b\x37\x0a\x39\xd1\x09\x8c\x5a\xf8\xe7\x3c\xea\x84\xb2\x16\xf9\xac\x7b\x3a\x87\x89\x0f\x9c\xb5\x31\x74\xa6\xa2\x01\xcf\x2e\xf4\xe5\x24\xc1\xb0\x2e\x15\x13\x5e\x03\xba\x94\x34\xcb\xb0\xa4\x59\xc6\xbc\x25\x18\x95\x20\xc4\x38\x8d\xc1\xcd\x87\x31\x9f\x83\xe6\x33\x0b\x97\x8a\x5f\x79\xb7\xbd\x3e\xbf\x3c\xfe\x80\xff\x52\xbe\xdf\xff\xfa\xc3\x6f\xbb\x6f\x9f\x6b\x1f\x2a\x42\x34\x98\xcd\xf6\xff\xf4\xe4\x5d\x48\x60\x53\x6d\xd2\xb4\x75\xf5\xa0\x31\x6c\xb6\x2f\x20\x65\xcb\xcb\xe0\xba\x39\xe6\x97\x91\xb6\x6b\x7e\x31\xda\x1e\xf3\x0b\xd9\x3f\x61\x5f\xa9\xbc\xc9\x4b\x79\x8b\xef\xee\x9e\xf4\xb4\xfb\x96\x77\x7f\xe4\xdd\x53\xde\x3d\xe7\xdd\x0f\xf9\x25\xef\x3e\xe7\xff\xe6\xbf\xe4\xbf\xe6\x3f\x3f\xf3\x7f\x0b\xff\xe6\xc8\x57\xff\x56\xe8\x9c\xa5\xda\x26\x6d\xb6\xdb\xa7\xdd\xee\x63\xfe\xf5\xb7\xed\xe7\xe7\x0f\xdb\xed\x5d\xf3\xfb\xd2\xfc\xfe\xf3\xf3\x87\xf7\x77\x8f\xdd\xde\x29\xef\xe5\x4f\x11\x37\x51\x2c\x8d\x9b\x3f\x6d\xfe\xf3\xcb\x4f\xbf\x5c\x9f\xca\xf2\xf2\xf7\xc7\xf7\xbb\x0f\xf5\x0f\x90\x0f\xbb\xef\xeb\x58\xc9\xf5\x6e\xb3\x7d\xa2\x1b\xf3\xa7\x4f\x9f\xf2\x3f\x7f\xfe\xf4\xaf\x7f\x3c\xbf\xfc\x6d\xfb\xee\x7f\x01\x00\x00\xff\xff\x42\xaa\x65\xae\x8c\x19\x00\x00") +var _runtimeSyntaxCssMicro = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x74\x59\x51\xb3\xdb\xb6\xd1\x7d\xf7\xaf\x50\x14\xcf\xe7\x7b\xfd\x15\x49\x5f\x7b\xd3\xd4\xee\x24\xed\x4c\x1e\x3a\x79\x48\xa7\xe3\x69\xe4\x74\x56\xe4\x52\x44\x04\x02\x0c\x00\x5e\x49\x36\xd2\xdf\xde\xd9\x5d\x80\x04\x25\xdd\x17\xf2\x9c\x03\x10\x04\x16\x58\xec\x82\x0c\x17\x1b\xe1\xbc\xd9\x36\x21\x6c\x37\xdb\xdd\x57\x0f\x4d\x08\x29\x34\x21\x3c\xbe\xde\xbe\x7a\xf5\xe5\xe6\x3b\x03\x21\x60\xd8\x80\x6d\x37\x3f\x7c\x1f\x5e\x35\xce\x38\xbf\x09\x11\x22\x0e\x68\xe3\xe6\x41\x3f\x6e\xb6\x5f\x6d\xb3\x6e\x9d\x1f\xc0\x50\xb1\x8f\xdf\x6e\x77\x9f\xb7\x1b\xb4\xed\xb7\xdb\xdd\xef\xdc\x56\x13\xc2\xa6\x71\xc3\x00\xb6\x2d\x0d\xc5\xcb\x88\x9b\xed\x03\x18\x7d\xb0\xaa\x71\x36\xa2\x8d\x49\x98\x8e\x38\x04\xc1\xf4\x26\xb5\x87\x80\x46\x5b\xcc\xc5\x01\x4d\x97\xc0\x98\x04\x56\x0f\x10\xb5\xb3\x0b\x52\x2d\x1a\xb8\xd4\x5c\x7b\x6c\xae\xeb\x4c\xfe\xfa\xb1\x4e\x1b\xa3\x06\xd7\x62\xa5\xe9\x88\x52\x4f\x35\x6e\xa2\xce\xcd\x25\x16\x86\xba\xe2\x68\xe0\xa2\xd8\x30\x95\x18\xf5\xa0\xed\x41\x75\x93\xcd\xaf\x1f\x47\x04\x0f\xb6\xc1\x04\x9f\xf4\x30\xc5\x3e\xed\xa1\x39\x76\xd0\xa0\x7a\xd6\x41\xef\xb5\xd1\xf1\xc2\xda\xc1\xbb\xc9\xb6\x15\x54\x10\x23\x34\x3d\x19\xa3\x56\xf7\x06\x6d\x2b\xbd\xae\xd4\xc6\xe8\x71\xc5\xc9\xdc\xb5\xa0\x07\x38\xac\x9e\x70\x5e\x1f\xb4\xad\x95\xd1\x05\xcd\xbd\xae\x34\x8f\x23\xc2\xea\xfd\x41\x7f\xa2\x76\x64\x72\x54\xe8\x75\x17\xd3\xde\xb9\xe3\x00\xfe\xa8\x0c\xec\xd1\x54\x14\x9f\x6b\x2a\xd6\xda\x3b\xdf\xa2\xcf\x37\xb5\x77\x31\xba\x61\xcd\x4a\xef\x57\x9a\xc1\x2e\x2a\x0f\xad\x9e\xc2\x55\x89\xd7\x87\xfe\x85\xa2\x10\x2f\x06\xaf\xb4\x93\x6e\x69\x1a\x8a\x36\xd9\x16\xfc\xa5\xf0\xc6\x19\x03\x63\xc0\x8a\x2f\x3d\xc9\x36\xac\x88\x72\x53\x0c\x18\xd7\x5a\xb1\x59\xad\x05\xa3\x9b\xab\x47\x83\x9b\xfc\xb5\xb6\xea\x1b\x8d\xb8\xc6\xeb\xce\xb0\xb2\x1a\x1f\x2b\xab\x16\xd6\x36\x61\x3b\xad\xc8\xba\x45\x91\x56\x4d\x8a\xb4\x6a\x33\x8c\xd0\x68\x7b\x98\x69\x5d\x3d\xba\xb1\x82\xeb\xd6\x49\xb8\x33\x87\x24\xdf\x9b\x40\xd2\xaf\xdb\x5e\x77\xa4\x90\xbc\x7e\xce\xaa\xc5\xc6\x65\xdf\xdd\x7b\x84\x23\x8b\xa1\x87\xd6\x9d\x04\xea\x4f\xd2\xf1\xb3\x0a\x16\x46\x01\xd3\x38\x7a\x0c\x21\xf1\x13\x0a\xba\x48\x4b\x93\xf1\x1e\x3b\xe7\x31\x13\x6d\x83\x6e\x31\x35\x30\x72\xfb\x99\x78\x8c\x72\x55\xcb\xae\x24\x5c\x86\x2e\x38\xf4\x30\x62\x6a\x7a\xd0\x36\xa4\xc6\x20\xf8\xc4\xee\x4a\x17\x35\x42\xec\x05\xf9\xc9\x60\xca\xcf\xd1\x55\x69\x1b\xd1\x8f\xce\xcc\x9b\x55\x44\x1f\xa8\x6c\x1a\xca\xee\x94\x09\x6d\x64\x05\x1f\x60\x2c\xb0\xb4\x58\xb0\x9a\x5b\x9f\x15\x31\x71\xad\x88\x59\x45\x99\xdf\x16\x46\xb0\x05\x97\x0a\xb2\x79\xd3\x5d\xdb\x89\xda\x98\xa8\xbf\x4a\xdb\xc6\x73\xac\x98\x15\x8f\xe4\x22\x85\x31\xa6\xfa\x13\x66\x73\x13\xca\xc6\x6e\x26\x1f\x9c\x4f\xcb\xfe\xdd\xea\x40\x1b\x6d\x6a\xdd\xa0\x2d\xd4\x61\x01\x0d\x3e\x8b\xc5\x71\x18\xe3\x45\x35\x68\x4c\x48\x62\xa5\xd4\x19\x3c\xf3\x85\xea\xeb\x20\x70\x69\x95\x69\x67\xdc\x49\xd0\xc1\x17\x14\x7a\xaf\xed\x51\xf0\xc9\xc3\x98\x3a\xe3\x20\xca\x55\xb5\xd8\x71\xd3\x84\x5d\xd7\xd1\x40\x84\x78\x2a\x40\xda\xe4\x3b\xe3\x5c\xd9\x7c\x05\x3b\x72\x97\x78\x49\xf9\x6d\xee\xa4\x3a\xef\x06\x41\xda\x46\x97\x3a\x67\x23\x5f\x54\x07\x83\x36\x97\x8c\x11\xe2\xe4\x91\xac\x15\xb5\x3d\x04\x51\x8f\xe8\x2d\x2d\x61\x26\x06\xec\x61\xe2\x3d\xe8\x19\xbd\xa7\x05\xc9\x32\xef\xcf\x33\x52\xd0\xfe\x3a\x85\xfc\x82\x10\x3d\xc6\xa6\x2f\x84\x66\x5e\xe0\xc5\xc6\x1e\xd9\x4e\x44\x9f\xc1\x6b\x28\x9d\xca\x44\x01\xd9\xd5\x42\xc4\x75\x25\xd5\xc0\x78\xa5\x20\x84\xa8\x20\x68\xb0\x6b\xdd\xe8\x03\x8f\xe9\xaa\xba\x9d\x06\xf4\xba\x59\x8b\x73\x28\x62\xf5\x84\xbc\x73\x75\xce\x45\xeb\x22\xaa\xb2\x28\x66\x61\x74\x46\x37\x97\x74\x30\x97\xb1\xa7\xc0\x86\x36\x8a\xd3\x3c\xa3\x8f\xba\x01\x93\x0e\x5e\xb7\x7c\x51\xe0\x11\x32\x9a\xa2\x53\x65\xa1\x2f\x0a\xcf\xd4\x42\xbd\x3b\xe5\x52\xa9\x5a\x63\x85\xb6\x5d\x71\x72\xbe\x9a\x73\x66\x24\xca\x5c\xe4\x4b\xf3\xde\x9d\x96\x06\x88\xd4\x55\xea\x47\x23\x0e\xa3\xa1\xd0\xb9\x62\x3c\x92\x70\xa5\xad\x86\x33\xab\x3c\x86\x1e\xec\x81\x92\x93\x91\x92\x93\x49\x5c\xa7\x17\xcb\xf6\x97\xb1\x47\xcb\xcf\xf7\xe0\xa1\x21\x17\x5a\x34\xa3\x07\x1d\xb9\x24\xdc\xa8\x06\x42\xbc\x15\xb5\xc5\xdb\xaa\x9f\x9c\xc5\x2c\x86\x94\xa3\xe7\x32\x55\xa9\xc4\x4e\xdb\xa2\xa7\x35\x5e\x78\x70\x66\x92\x0a\x56\x47\x0d\x46\x19\x8c\xd4\xbf\x35\x55\x9c\x25\x5e\x8b\xec\xc2\x3a\xe4\x2d\x34\x91\x27\xe8\xee\x32\x27\x9e\x85\x4b\xea\x59\x18\x67\x9a\x1c\x7b\x73\x2b\x25\xe2\x19\xb2\x15\x59\x50\xfc\x9b\xf3\x1f\x09\x34\x0c\x79\x89\x31\xca\x56\x95\x04\x89\x22\x8d\xd1\xa1\x38\xdc\x02\x73\x3a\x51\x09\xf3\xaa\xaf\x34\xca\x98\xd3\x00\x9e\x72\x35\xb9\x95\x94\x29\x33\xee\x69\xc6\x12\xe1\x33\xa1\x60\x4c\x69\x17\xfa\x7c\xe3\xc5\x96\xe1\xd1\xba\xe6\xe8\xa6\x38\x3f\xbe\x12\xe7\x76\x48\x1d\xf4\xfc\xd4\x08\x64\x10\x5b\x68\xc0\x03\x6f\xf4\x85\xd2\x1e\x54\x30\xaf\xde\x01\xfc\x6f\x13\x62\xb5\xf3\x16\xc5\x38\xe9\x1d\x93\x30\x22\xb6\x0b\x63\x3b\x0d\x10\x8e\x7c\x51\x39\x5f\xac\xb0\x64\xbf\xb5\x90\xd3\xb0\x5a\xca\x59\x58\x2d\x49\x12\xb6\x52\x24\x07\xab\x25\x09\x6f\xac\x70\x94\x16\xe4\x06\x9e\x9c\x5c\x55\x66\x8e\xe1\xd2\x95\x9c\x50\x33\x9e\x67\x92\x59\xdd\x15\xde\x9e\x19\xe5\x99\x3d\x97\xe5\x42\x50\x3c\x87\x50\xee\x86\xb6\x73\xb1\xb6\xb3\x78\xae\x4f\x01\x83\x93\x37\xf1\xad\x04\xa6\xcc\x38\xbb\xc8\xd8\xbb\xec\x69\x16\x9e\x55\xeb\x4e\x02\x78\xfe\x09\xc8\x9c\x13\x9a\xc6\xe4\xf6\xbf\x62\x13\x55\xa7\x63\x81\xf3\x88\xe4\x05\x39\x74\x67\x92\xa3\x77\x66\xb4\xcc\x32\x94\x65\x50\x62\xa0\x4c\xa4\xf3\x63\x0f\x36\x24\x37\x45\x0e\xe4\xf9\x9e\xbd\xaa\xb0\x3c\x8e\x42\x65\x51\x14\x26\x76\xa0\xb8\xc7\x9b\x75\x01\xa5\x56\xa1\xec\xfe\x33\x3b\x2f\xf0\x92\x46\x68\x5b\xf2\xe9\x7c\x2f\x3e\x55\x28\x5b\xa5\x10\xb1\x4c\x61\xe4\x56\x23\x4d\x3f\x5d\x54\x9d\x36\x56\x42\x36\x48\xa5\xe4\x04\x72\x84\x29\xe4\xeb\xfc\x14\xe1\xf2\x00\xfa\x30\x92\xab\x3c\xaf\x70\x59\x5b\xa3\xa6\xf0\xcd\x57\xe5\xc1\x52\x27\xe8\x14\xda\x4e\xbc\x63\x52\xaa\xe8\x15\xd8\xa6\x77\x7e\x26\x07\x83\x19\xb7\x3a\x44\x3e\x89\x0a\x2d\x4d\x96\x79\xa5\x34\x78\x8e\x9b\x72\x70\xfb\x6d\x72\x14\xef\x3d\x1e\x38\x01\xf5\x20\xee\xee\x91\x17\xb1\xc7\xc0\xb8\xac\x05\x86\x79\x1c\x5e\x37\xbd\xa5\xb4\x5a\x6c\x37\x2f\xbd\x02\xd4\xe8\x34\xb5\x34\xed\x2f\x79\xe7\x66\x38\xa0\x3f\xa0\xc0\xb9\x5f\x7e\xb2\x9c\xf3\x84\xc6\x3b\x63\xd4\x1e\x7b\x78\xd6\xce\x17\x4e\xfb\x6b\x6e\xa2\x56\xf2\x8e\x79\x2b\xa9\xbd\x71\xcd\xf1\xc5\x02\x5e\xbc\x2f\x16\xca\x72\xbe\x57\x2c\xcb\xe7\x4e\x89\xb6\xbc\xc8\x5f\x2c\x79\xe9\x85\xb9\xf4\xc5\x37\xf2\x0a\xbd\xa3\x8b\xc1\xef\x14\xd0\xba\xad\xe5\xe2\x01\x77\xb4\x3b\x36\x5a\x95\xdc\xf4\x79\x5d\x7a\xdb\xe7\x2b\x2f\xbb\x57\x74\xc7\x4e\xeb\xa2\x17\x5f\xfa\xa2\xa5\x56\xce\x7c\xaf\xe0\xd6\x56\xb5\x93\xd7\x3a\xef\xd5\x7c\x8e\xcb\x07\xf5\xd8\x7b\x0c\xbd\x33\x6d\x51\xc5\xbd\x85\x94\xc5\xc7\x84\x42\x13\x17\x91\xcf\x84\x91\xd2\x05\xbe\x2a\x08\x19\xf4\x08\xb4\x2f\x0a\xe1\x74\x18\x4c\x66\x75\xae\x46\x51\x92\xfd\x3e\x62\xa2\x4c\x3e\x04\xba\x51\x6f\x69\xa3\x0c\xd1\xbb\x23\xe6\x9b\x9a\x3f\xa3\x15\xa1\x05\x3a\x08\xf3\x51\xa0\x56\xbc\x87\x4b\x2d\x34\xce\x5b\xea\xca\xa2\xe4\x7d\x38\x2b\x64\xe9\x06\xc6\x9a\xfe\xea\x68\xa8\xc2\x07\x1d\xd1\x73\xb6\x57\x94\xb2\xf5\x67\x2a\x1b\x77\x84\xbd\x41\x65\xe0\xe2\xa6\x48\x44\x82\x62\xc4\x73\xcc\x9e\xbc\x40\x05\xc6\xd4\x94\xf3\x4d\xe6\x8d\x1b\xf6\x34\xef\xd3\x28\xd3\xc8\xe2\xf2\x09\xe0\x9a\xe7\xf0\x72\xad\xf2\xa2\xbb\x16\xc3\x51\x8f\xb7\x22\xc7\x16\x56\x71\x18\x7b\x3e\x56\xae\x58\xfd\x86\x59\x9b\xb7\xb1\xb5\x5c\x35\xa6\x6d\x4b\xf3\xc4\x38\xa7\xa0\x42\xea\xe4\x58\x84\x12\xef\x98\xe5\x0f\x1b\x82\x47\x68\x70\xf9\x76\x55\x69\xd1\xeb\x61\xe1\xe4\xef\x4c\xa2\x07\x1b\x3a\xe7\x73\xd9\x44\x49\x37\x7b\xd1\xba\xbf\x1c\x40\xc9\x17\xaa\xfa\x05\xa9\xbd\x3b\x57\x2c\x87\x93\x45\xc8\x43\x24\x9e\x5b\x9c\x61\xfe\x5e\x5b\x0b\xe5\xe3\x6c\xa5\x8d\xde\x8d\xe8\xe3\xaa\xde\xf5\xf7\xd5\xc9\xea\xc6\xb5\xa8\xf6\xba\xd5\x69\x0a\x9c\x93\x1a\x6c\x62\x2a\x07\xbf\xbc\xa0\xaa\x6f\xad\xcf\x4e\x37\xa8\xf6\x60\x38\x16\x0a\x9b\x5f\x2f\x34\x1f\xc4\x85\x48\xcc\x15\x2c\x31\xb7\xe0\x58\x60\xf6\x46\x21\xcf\x74\x02\xa3\x12\xbe\x9d\x7a\x1d\x51\xe6\x22\x9d\x74\x4b\xe7\x30\xf1\x81\x93\x36\x86\xce\x54\xd4\xe0\xc9\xf9\x36\x9f\x24\x18\x96\xa9\x62\xc2\x73\x40\x97\x1c\x66\x19\xe6\x30\xcb\x98\x97\x04\xa3\xbc\x09\x31\x8e\xbd\x77\xd3\xa1\x4f\x27\xaf\xf9\xcc\xc2\xa9\xe2\x27\x5e\x6d\xe7\xc7\xa7\xfb\x1f\xf0\x9f\xf2\xf7\xfb\x9f\xbf\xf9\x65\xf7\xf9\x63\xa9\x43\x49\x88\x06\xb3\xd9\x7e\xa1\x87\xd1\xf9\x08\x36\x96\x22\x4d\x4b\x57\x77\x1a\xfd\x66\xfb\x04\x92\xb6\x3c\x75\xae\x99\x42\x7a\xea\x69\xb9\xa6\x27\xa3\xed\x31\x3d\x91\xfd\x23\xb6\x85\xca\x48\x9e\xf2\x28\x5e\xdf\xbc\xe9\x61\xf7\x39\xed\x7e\x4f\xbb\x87\xb4\x7b\x4c\xbb\x6f\xd2\x53\xda\x7d\x4c\xff\x4d\x7f\x4e\x7f\x49\x7f\x78\xe4\x7f\x0b\x3f\x7d\xf7\xd3\x4f\x9b\x7f\x81\x07\xbd\x37\x18\x6e\xbb\xc3\xff\x29\x76\xaf\x77\x9f\xdf\xfd\xfc\x47\xf5\xa7\xbf\xaa\x7f\xff\xe7\x8b\xf7\x5f\xbe\x7e\xfb\x4e\x7d\xfc\xff\xdd\xef\xef\x96\x26\xbe\x5b\xff\x9f\x58\x7e\x74\x6c\xdf\xcb\x68\xd3\xfb\x41\x9f\xb5\x4d\xef\xf1\x1c\xd1\xb6\xf2\x24\x6f\xbb\xe5\x99\xc6\x59\x4a\xac\xe2\x66\xbb\x7d\xd8\xed\xbe\x4a\x3f\xff\xb2\xfd\xf8\xf8\x76\xbb\xbd\x29\x7e\x93\x8b\xdf\x7c\x7c\x7c\xfb\xe6\x66\xcc\xdb\x1b\xe5\x8d\xfc\x91\x71\x03\x75\x28\x6c\xfe\x6f\xf3\xcf\x1f\xbf\xff\x71\x79\x2b\xcb\xf3\xbf\x97\xaf\x77\x6f\xcb\xdf\x97\xb7\xbb\xaf\x4b\x5b\xd1\xb5\x6e\xb3\x7d\xa0\x07\xd3\x87\x0f\x1f\xd2\xdf\x7f\xf8\xf0\x8f\xbf\x3d\x3e\xbd\xdb\xbe\xfa\x5f\x00\x00\x00\xff\xff\x34\x05\x25\x14\x09\x1a\x00\x00") func runtimeSyntaxCssMicroBytes() ([]byte, error) { return bindataRead( diff --git a/runtime/help/plugins.md b/runtime/help/plugins.md index 68fed73a..f365c58e 100644 --- a/runtime/help/plugins.md +++ b/runtime/help/plugins.md @@ -73,8 +73,10 @@ as Go's GOOS variable, so `darwin`, `windows`, `linux`, `freebsd`...) * `HandleCommand(cmd string)`: runs the given command -* `HandleShellCommand(shellCmd string, interactive bool)`: runs the given shell - command +* `HandleShellCommand(shellCmd string, interactive bool, waitToClose bool)`: runs the given shell + command. The `interactive` bool specifies whether the command should run in the background. The + `waitToClose` bool only applies if `interactive` is true and means that it should wait before + returning to the editor. * `JobStart(cmd string, onStdout, onStderr, onExit string, userargs ...string)`: Starts running the given shell command in the background. `onStdout` `onStderr` and `onExit` diff --git a/runtime/help/tutorial.md b/runtime/help/tutorial.md index 825be842..b9ef6f69 100644 --- a/runtime/help/tutorial.md +++ b/runtime/help/tutorial.md @@ -80,7 +80,7 @@ You can do that by putting the following in `init.lua`: function gorun() local buf = CurView().Buf -- The current buffer if buf:FileType() == "go" then - HandleShellCommand("go run " .. buf.Path, true) -- true means don't run it in the background + HandleShellCommand("go run " .. buf.Path, true, true) -- the first true means don't run it in the background end end