diff --git a/cmd/micro/colorscheme.go b/cmd/micro/colorscheme.go index a604338e..74e77018 100644 --- a/cmd/micro/colorscheme.go +++ b/cmd/micro/colorscheme.go @@ -44,7 +44,7 @@ func LoadColorscheme(colorschemeName string) { TermMessage(colorschemeName, "is not a valid colorscheme") } else { if data, err := file.Data(); err != nil { - fmt.Println("Error loading colorscheme:", err) + TermMessage("Error loading colorscheme:", err) } else { colorscheme = ParseColorscheme(string(data)) diff --git a/cmd/micro/job.go b/cmd/micro/job.go index 829954b2..df9151b5 100644 --- a/cmd/micro/job.go +++ b/cmd/micro/job.go @@ -4,7 +4,6 @@ import ( "bytes" "io" "os/exec" - "strings" ) // Jobs are the way plugins can run processes in the background @@ -43,10 +42,7 @@ func (f *CallbackFile) Write(data []byte) (int, error) { // JobStart starts a shell command in the background with the given callbacks // It returns an *exec.Cmd as the job id func JobStart(cmd string, onStdout, onStderr, onExit string, userargs ...string) *exec.Cmd { - split := strings.Split(cmd, " ") - cmdArgs := split[1:] - cmdName := split[0] - return JobSpawn(cmdName, cmdArgs, onStdout, onStderr, onExit, userargs...) + return JobSpawn("sh", []string{"-c", cmd}, onStdout, onStderr, onExit, userargs...) } // JobSpawn starts a process with args in the background with the given callbacks diff --git a/cmd/micro/micro.go b/cmd/micro/micro.go index ab654481..33cf2a20 100644 --- a/cmd/micro/micro.go +++ b/cmd/micro/micro.go @@ -97,11 +97,16 @@ func LoadInput() []*Buffer { if _, e := os.Stat(filename); e == nil { // If it exists we load it into a buffer input, err = os.Open(filename) + stat, _ := input.Stat() defer input.Close() if err != nil { TermMessage(err) continue } + if stat.IsDir() { + TermMessage("Cannot read", filename, "because it is a directory") + continue + } } // If the file didn't exist, input will be empty, and we'll open an empty buffer if input != nil { diff --git a/cmd/micro/runtime.go b/cmd/micro/runtime.go index 8c226f71..d18c4d9c 100644 --- a/cmd/micro/runtime.go +++ b/cmd/micro/runtime.go @@ -105,6 +105,7 @@ // runtime/syntax/sed.micro // runtime/syntax/sh.micro // runtime/syntax/sls.micro +// runtime/syntax/solidity.micro // runtime/syntax/sql.micro // runtime/syntax/swift.micro // runtime/syntax/systemd.micro @@ -486,7 +487,7 @@ func runtimeHelpOptionsMd() (*asset, error) { return a, nil } -var _runtimeHelpPluginsMd = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x3a\x5d\x8f\xdc\x36\x92\xef\xfa\x15\x85\xce\x43\xba\x83\xb6\x26\x8b\x7b\x1b\xc0\x0b\xd8\x4e\xe2\x64\xcf\xb1\x8d\xcc\x24\x8b\x85\x61\x80\x6c\xa9\xd4\x62\x86\x22\xb5\x24\xd5\xed\x3e\x23\xf7\xdb\x0f\x55\x45\x4a\xea\xf1\x6c\x90\x97\x33\x60\xb7\x24\x92\xf5\xfd\x4d\x7f\x05\xef\xed\x74\x34\x2e\x56\xd5\xcf\xa6\x09\x1e\xe2\x34\x8e\x3e\xa4\x08\x4d\x40\x9d\x8c\x3b\xc2\x28\x1b\xe0\x6c\x52\x0f\x1a\xa2\x19\x46\x8b\xf0\x66\xd2\x10\x2f\x31\xe1\x50\xc3\xf7\x27\x0c\x97\xbc\x0f\x7a\x1d\x41\x57\x83\x36\x0e\x62\x13\xcc\x98\xe0\xdc\x9b\xa6\x07\x13\x21\x4c\x0e\x74\x82\x98\x74\x48\xd3\x98\xbf\xc7\xde\x4f\xb6\x85\x03\xc2\x68\x75\x83\x2d\x18\x07\x95\xfa\xdf\x9b\xba\xf1\xae\x33\xc7\x9b\x81\xc8\xba\xc9\x44\xe4\xdf\xb7\x7a\xc0\xd5\x63\x6d\x27\xad\xea\xaa\xba\xef\x31\x20\x68\xfa\x0b\x6e\x1a\x0e\x18\xc0\x77\xd0\x68\x6b\x0f\xba\x79\x80\x6e\x72\x4d\x32\x9e\x58\x61\xcc\x17\x3f\x41\xa3\x9d\x70\x8a\x84\xf7\xe2\xa7\x50\x65\x3e\x92\x67\x7a\x1b\xdf\x22\x11\x9d\xcc\x80\x11\x7c\xea\x31\x40\xea\xb5\x2b\x5c\xd4\x70\xdf\x23\x38\x3d\x90\xa8\x62\xd3\xe3\x80\x60\x62\xa5\xbc\x7b\xc1\xc8\xb6\x27\x83\xe7\x9d\xaa\xe1\x07\x1f\x00\x3f\x69\x16\x9e\x9e\x69\xb9\x16\x0e\xb2\x20\x09\x15\xa4\x1e\x61\x8a\x18\x20\xea\x13\xc6\x8a\x5e\x0f\x53\xd7\x61\x80\x73\x96\xd7\x6d\x55\x29\xa5\xec\xa4\xab\x19\x98\x77\x77\xfa\x84\x82\xb2\x02\x00\xa8\xeb\x9a\x7f\x03\xa6\x29\x38\xe8\xb4\x8d\x58\xa1\x6b\xe9\x24\xcb\x0b\x14\x6d\x56\x70\xd2\xc1\xe8\x83\x25\xda\x41\x43\xc0\x0e\x03\xba\x06\x49\x0a\x84\x9a\x36\xf1\x83\x16\x44\x26\xc2\x01\x89\x63\xfc\x84\xcd\x94\xb0\x05\xef\xea\xea\xbe\x37\x91\x01\xd8\xc1\xc7\x04\xda\x9e\xf5\x25\xf2\xb1\x66\x0a\x01\x5d\x62\x38\xfb\x47\xe2\x3f\x62\x12\xdb\x52\xaf\xa6\xf0\x9b\xc1\xf3\x76\xa7\x40\x47\x38\xa3\xb5\x75\x55\xbd\xb0\x16\xf4\x49\x1b\xcb\xe4\xe9\xac\x41\x52\xb2\x35\x31\x89\xbd\x10\x8a\x07\xbc\x1c\x8c\x6b\x8d\x3b\x46\x88\x98\xe5\xd1\xf1\x52\x8f\x76\x14\xf3\x88\xb8\xb2\x82\x6c\x79\xda\x46\x5f\x04\xa4\xe1\xe0\xbd\x45\x52\xef\x88\x8d\xe9\x2e\xc4\xe3\xb9\xc7\xac\x76\x11\x44\xb5\x98\x6c\x40\xeb\x1b\x4d\x54\x64\x41\x35\x53\x88\x3e\x80\x0f\xe0\x7c\x02\xdd\xa5\x7c\x6e\x91\x5b\xe3\xc9\x04\x12\xd6\x55\xf5\xd6\x27\x52\x34\x59\x17\x93\x56\x2c\x35\x82\x6f\x9a\x29\x7c\x79\x9c\x7c\xeb\x80\xe8\x66\x20\x6d\x0d\x3f\x75\x24\xc9\xea\xac\x5d\x02\xbd\x18\xfb\x01\x3b\x1f\xf0\x11\xee\xa2\xad\x3d\x99\x16\xa8\x31\x60\x36\x52\x32\xd0\x9f\x48\x8e\x44\xa0\x8e\x28\xf6\x96\x45\x21\xb2\xc1\x36\xcb\xc4\x60\x9c\x45\x92\xf9\x5c\x61\x59\x64\x53\x90\x55\x0b\x1b\x76\xd2\xe2\x50\x85\xfe\x48\x0a\x76\xe2\x55\x53\xc4\x6e\xb2\x0b\x07\xc9\xc3\x83\xf3\x67\xd0\x07\x3f\xad\x82\x08\xcb\x75\xe1\x89\x3c\x8d\x8c\xe6\xdd\x88\xc5\xd7\x96\xbd\x04\x0b\x5b\xa2\xd6\x91\x6b\x51\x58\xc0\xb3\x18\xb3\x89\xe0\x47\x24\xae\xb4\x6b\x99\x38\x87\xe7\xaa\x2c\x8d\x3a\x46\x36\x2d\x72\x6f\x31\xea\x4c\x5e\xe7\x03\x44\x4c\x1c\x19\x49\xf7\x16\xfc\x28\xe6\x74\xd0\x91\xfd\x80\x81\x75\xc6\x62\xba\x8c\xb8\xaf\xba\x95\xdf\x93\x1c\xe9\xa0\xef\x3a\x50\x49\x1f\x62\xf2\x71\xd4\x0d\x46\x05\xde\xd9\x0b\x03\x7f\xed\xf9\x30\xcb\x98\x61\x5d\xd8\xd8\x85\xd8\xba\xaa\x9e\x3d\x7b\xf6\x9f\x22\xdd\x62\xda\xc4\x53\x71\xe9\x28\x26\xc6\x9b\x67\x3f\x4a\x9e\xfd\xcf\xb8\xca\x87\x96\xb4\xe3\x41\x37\x0d\x46\x71\x57\xe3\x1c\x07\x9a\xf0\xc0\xee\xe4\x3b\xe0\x28\x5c\xc3\x8f\x84\x96\x43\x04\x39\x1f\x6c\x69\x33\xb1\x09\xd1\x1c\x9d\x4e\x53\xc0\xc8\x0c\xaf\x28\x09\x08\x47\x73\x42\x07\x53\x24\xd6\x5f\xfb\xaf\x63\x3e\xc2\xd9\x63\x77\x5b\x55\xdf\x80\x7a\x77\xa7\x6e\x97\x20\x24\x0a\xa4\x63\x42\xcf\xbb\x3b\x21\x80\x75\x2a\xa1\xc4\x5e\x28\x62\x8a\x34\x1d\x11\x22\x5a\xa2\xdd\x51\x0f\x58\xe9\x28\xa8\x5e\xbf\x7b\x77\x37\x03\xde\x43\xf4\xa0\x5a\x1d\xce\xc6\xa9\x3d\xa8\xb3\x71\xad\x3f\x47\x7a\xb4\xc6\x4d\x9f\xe8\xa1\x0b\x88\x87\xd8\xaa\xba\xae\x77\x4c\x9a\xe4\xa1\xef\x4c\x50\xb7\xd0\x78\x97\x34\x25\x43\xc2\x33\xea\xd4\x17\xbf\x17\xf2\x64\xeb\x14\x34\x1b\x27\xab\x91\x41\x90\xaa\xd5\x6d\x91\x9a\xef\x40\x5b\xcb\xc7\x68\x61\xc5\x91\x21\x29\xa1\x60\x9d\xc2\xbd\x3e\xa8\xdb\xac\x8f\x16\x3f\x95\x68\x56\x62\x29\x9f\xcd\xc1\x8f\x9f\x09\x38\x9f\x1d\x30\x46\x74\x47\x24\x8a\x2d\xa6\xc8\xaa\x8e\xe8\x5a\xa0\x15\x7d\x24\xa9\xfa\x25\xc3\xf8\x50\x52\xe0\x18\xfc\x30\x26\xa1\xf9\x97\xc9\xe1\x5d\x0a\xdb\x40\x72\xc6\x1d\xc4\x14\x8c\x3b\xaa\xdb\x1c\x0e\xc8\x06\xe4\x53\x11\x0a\x3d\x12\x4c\xd1\x36\x1d\x62\x38\x6f\x7c\xb3\xfd\xb4\x07\x62\x2e\xed\xe0\x8d\x6f\xae\x40\x90\x3f\xd2\x16\x45\xc0\xa6\x46\xe8\xff\x87\x37\xee\xbd\x4e\x7d\xdc\xb6\x26\xd4\x75\x9d\x11\xcd\x34\x50\xf8\x38\x18\x87\x11\x86\xc9\x26\x43\x9e\xd5\x9a\x80\x4d\xf2\xc1\x08\x6f\x94\x60\xad\x65\x0d\x31\xc4\xef\xf2\xf2\x85\xca\x85\x2d\x2b\x2e\xc3\x54\x0b\x31\xd6\xc2\x61\x92\x60\x66\x75\x4c\x80\x16\x07\x12\xb4\xef\x44\xd5\xfb\x74\x19\x0d\x85\x94\xcb\xac\xfe\xaf\xe3\x8c\xf9\xc2\x88\x5e\x63\x7a\xc7\xf1\x60\xeb\xf4\x80\x33\x92\x85\x65\x4e\x22\xda\x4e\x58\xd4\x19\xf0\xdf\x13\x72\x22\x93\x40\xc2\x60\x5e\xb4\xed\x97\x60\xf6\xf9\xa0\x71\x09\x43\xa7\x1b\xfc\xfc\x07\x41\x8e\xa4\xe1\x45\xf0\x02\x45\x32\xea\xfc\x95\x8a\x00\x39\xbc\x55\xab\xe3\x0a\x06\xd4\x1c\x2e\x2e\xe2\x93\xc6\xc1\x6b\x2f\x66\x7f\x37\x73\x22\x10\x0b\xf6\x85\xa5\xa7\x11\x97\x8a\x81\x36\xe7\xe8\x79\x36\xd6\x12\x05\x11\x45\xba\x79\xe7\xd1\xfa\x03\x49\x73\x0f\x93\xb3\x14\x7a\x4c\xca\xb1\x45\xe2\x2a\x45\x44\xd9\x5a\x17\x8a\xde\xd0\xca\x9f\x90\xb5\x2f\x45\xd2\x37\x2f\xf9\xf7\xcf\xc8\x24\x8a\x16\x6d\x30\x4e\x71\xc1\x65\xaf\x00\x63\xe4\x2f\x8d\x6b\xff\x1b\x2f\xdb\x07\xbc\xec\xe7\x5c\x37\x8b\x82\x2a\x8f\x08\xea\x01\x2f\x8a\x04\xa0\x64\x83\xe2\x93\x3f\xeb\x07\x7c\xe5\x87\x41\xbb\x96\xb5\xb9\x5f\x8a\xbf\x42\x74\x4e\x87\x1c\x30\xeb\xba\x7e\x35\xbf\x12\x6c\xa2\x53\xfc\x93\x64\xd3\x08\xa4\x5c\x31\x11\xbc\x92\xef\x48\xca\x9c\xf1\x40\x15\x04\x4a\x92\x48\xc9\xc4\x5c\x0b\xfe\x1a\x11\xbe\xe5\x4c\xb3\xc6\x9a\x3c\xd7\x61\x6f\xfd\x82\xbb\x5e\x53\x9f\xbf\x6d\x1f\x91\xbe\x53\xb7\xd7\xe4\xa9\x65\x2f\x4b\x82\xea\x0c\x21\x75\x25\x06\x91\xcb\x52\xed\x5d\x7b\xc7\xba\x56\xe4\x8d\x3f\x6a\xd7\xda\x59\x84\xcd\xd0\xae\xdd\x6a\x72\x6b\xe5\x66\xe9\xac\x8e\xdd\xf5\x68\x6d\x39\x1b\xf9\x65\x06\xb0\x17\x57\x22\x65\x9d\xa4\xdc\xd9\xc3\x59\x9b\x74\xef\x5f\x59\x1f\xe5\xcb\x13\x48\x18\x0a\xb3\x2d\x60\xa5\x05\x50\x2b\x58\x8a\x8f\x3e\x51\x2f\x31\x7f\x59\x83\xb9\x52\xa2\xba\x3f\x1b\x1d\x95\x3d\xc7\xe0\xa7\x0c\x92\x50\xa8\x15\x3d\x19\x2a\xfb\x85\x1e\x47\x4b\x80\x4d\xf7\x08\x31\xe5\xc0\x30\x21\x57\x00\xe2\xdc\x9c\xfd\x4d\x2a\xf8\x08\x60\xae\x0e\xab\xb9\x33\xe0\xd8\x2d\x8e\x8b\xad\x49\x3e\x88\xf2\xef\xfd\xab\x5e\x87\xf7\x3e\x6e\xad\x6f\x28\x76\xb3\x7f\xcd\xce\x45\xe2\x7b\xac\xbc\x5e\x13\x29\x18\x60\xf4\xd1\x94\x22\x5c\x67\xc9\x71\x1e\xe0\x8a\x79\xb6\xaf\x97\x97\x84\xef\xba\x2e\x62\xfa\x53\x1c\xf8\x49\x37\x94\x21\xad\x79\xc0\x15\x5d\x0a\xf0\x53\x83\x23\xf3\x67\x12\x34\x7e\x72\x29\xc2\xe1\x42\xc6\x68\x5c\x4c\xa8\x5b\xc2\x4f\xc9\x28\xd6\x39\xb7\x1c\xee\x46\x7d\x76\x64\x47\x6f\xd7\xb1\xb5\x19\xda\x17\xe1\x18\xe1\xc3\xc7\xf2\xc5\xbb\xbb\xd4\xfa\x29\xe5\x27\x0c\x81\x9e\xbe\xff\x44\xb2\xcc\x5b\x28\x7f\x6a\x3a\x55\xd7\xf5\x95\x47\xdc\x51\x77\x18\xe7\x12\x65\x31\x9e\x31\x78\x2e\xb3\x9e\x50\xb9\x2a\x08\x55\x7e\xc4\x10\x14\x2b\x52\x09\x5a\x45\x90\xa9\xa0\x5a\x1a\x85\xe4\xb9\xa8\x7e\xdc\xda\x72\x2c\x38\xe0\xba\x00\x5e\xd1\x50\x9a\xa8\x5e\x8f\xa3\xe4\x86\xac\xfb\x85\x9a\x42\x27\x87\x0c\x55\xd8\x54\x8c\x9d\xab\xfd\x70\x9c\x28\x39\x5e\x21\xa4\x08\x92\x2b\xe7\xd2\x0e\x7d\xd1\x7b\xcf\x4a\x20\x01\xad\x9c\xf9\xff\x49\xdc\xec\xab\xb3\xcb\x7d\x29\x74\x3a\xcc\x39\x6a\x0e\x6c\x9c\x81\x62\xef\x03\x75\xf9\x2d\x07\xca\xd9\x68\xd4\x62\x43\x98\x43\xd1\x37\x14\x5c\xeb\x57\x43\xbb\x87\x56\x27\x7d\x95\x1e\x5d\xbb\x14\x49\xc6\x65\x91\xc4\xd4\x9a\xb9\x33\xfd\xdd\x1f\x8a\xa4\x17\xc1\xf8\xf1\x1a\x32\x01\x7b\x20\xf9\x6a\xda\x5f\x49\x9b\x3d\xe8\x0b\x44\xc4\x41\x3c\x42\x43\x1c\x28\xf2\xcf\xf5\xe5\x5c\xe8\x2f\x96\x41\xb5\x4d\xf4\xc3\x5c\x78\xf8\xc3\xef\xd8\xa4\x58\xcd\xed\xdd\x41\xea\x9a\xe5\x44\xaf\x4f\x08\x03\x15\x07\x03\xa6\xde\xb7\xb1\xbe\xea\xd1\x97\x2a\x8e\xdb\x26\x81\x57\x89\x3d\xf0\x14\x28\x17\xb9\xfa\xe9\xa9\x8b\xb6\xf6\x7a\x2a\xb2\xc0\xbe\xe5\x31\x06\x4f\x2b\x76\xaa\xae\xfe\x95\x8f\x44\xc4\x4c\xe1\x8a\xd5\xd1\xc7\x68\xd6\xa3\x81\x27\xe6\x01\x3d\xda\x11\x92\x1f\x4d\x53\xf3\xd0\xa3\x74\xb6\xde\x7d\x41\x24\x1d\x69\x38\x99\x3d\xd1\xe3\x72\xff\x3a\xfb\x9e\x04\xd4\xea\x80\x64\x77\x35\xfc\x94\x27\x33\x01\xc9\xdc\x48\xf9\x47\x74\x18\xb8\xaa\x88\xc9\x34\x0f\x39\xc8\x32\x5b\xe2\x92\x83\xe6\x8f\x1a\xe6\x99\x53\xa5\x4f\xde\x30\x8c\x29\x44\xca\x4a\x63\xf0\x07\x8b\x43\xdc\xc3\xba\x91\x34\x5d\x96\x23\x65\xfb\x47\x62\xa3\xf0\xbf\x53\x24\x06\x95\xe7\x41\x24\xc3\x7f\x4c\x31\x49\xd7\xff\xb4\x94\xa9\x33\x2a\x99\xe2\xec\xdd\xd7\x29\x03\x9f\x41\x80\x3e\x6a\x43\x41\xfb\xd7\x58\x5c\x6c\xa5\xf6\xfd\xac\x57\x1e\xa7\xac\x7a\xc9\x5c\x90\xe9\x18\x7d\x63\x78\x54\x92\x4b\x53\x9d\x53\xfc\xe1\x92\x5b\xc3\x85\xb2\xfa\xe5\xd4\xa9\x32\x27\x9a\x3b\x98\x15\x50\xf5\x83\xb1\x78\x7f\x19\x91\x3a\x36\x6a\x15\xe8\x97\xc2\x39\xb5\x6d\x32\xd8\x9a\xed\x22\xdb\xee\x13\xe6\x97\xf1\x32\xc0\xa5\x67\x5a\xda\x50\x1d\xf0\xf6\xba\xa1\xaa\x7f\x96\x06\x6a\x3b\xc4\x23\x05\xa1\xab\x52\xfc\x7a\xe7\xf7\x21\xf8\xf0\x17\xf6\xfd\x0b\xe3\x5b\xff\x9e\x1b\xaf\xad\xf4\x5f\x73\xbb\xb3\x95\x92\x44\xca\x90\xeb\x53\x57\x07\xf6\xd0\x9b\x48\x2d\xc8\x3d\xf7\xd5\x5f\x14\x95\xfc\x79\x55\x54\xc2\x76\xae\x96\x05\x74\x25\x43\x24\xc8\x43\xa4\x98\xb4\x6b\x75\x68\xa1\x80\xff\x7d\x36\x9e\xff\x48\xc1\x66\xb3\x87\x6f\x09\xd4\x57\xf0\xa2\x25\xaf\x13\xa7\xe3\x1e\x78\x0f\xf1\xe2\x92\xfe\x54\xde\xb8\xf6\xb4\x3e\xc8\xb8\x34\x96\xc9\x6b\xf6\x82\x6a\xf6\x77\xc2\xc8\xca\x79\xd1\xb6\xbf\x4c\x2e\x99\x01\x49\xef\xb9\x8a\xe6\xf1\x0a\x5c\xf7\x72\x73\x14\xa7\x1e\xb0\x95\x19\x88\x9f\x22\x3c\x70\x7d\xee\xbb\x4a\x46\x2b\x32\xfd\x28\x08\xaf\xa2\xd0\x3e\xfb\xd6\xd7\xad\x44\xd6\x0c\x48\xaf\x62\x88\x4c\x8c\xae\x40\x54\x39\xd1\xaa\x84\x31\x29\x71\x06\x89\x06\xb9\xb3\x66\x36\x68\xb1\x1e\x5a\xc5\x72\x58\xfb\xf3\x9e\x41\x86\xc9\xa5\xab\x08\xbc\x4c\x78\x1f\x09\x60\x43\x90\x36\x7b\xd8\x10\x51\xf4\x9b\x21\x6f\x76\x32\xd8\xa5\x1a\xff\x91\xd0\xe2\x0f\xc1\x0f\x73\x1b\x7c\x25\xc2\xd6\x04\x96\x63\xc2\xe0\x76\x6a\xe1\x78\x35\x58\xe2\x49\x46\x4e\x60\x41\x80\xd6\xac\xea\x29\xf9\x32\xcb\x9b\xb3\xec\x5c\x1b\x54\xd5\x1d\x47\x6c\x9e\x3c\xe6\x09\x98\x07\x8b\x3a\x38\xe8\xfd\xb9\xf4\x07\x8f\x7a\x8c\x5c\xf2\x5c\xf7\x0b\x59\x0e\xd2\x19\xce\x5a\x96\xb4\xff\x4f\x93\xfa\xed\x9d\x58\x34\x7f\xd9\x55\x54\x11\x70\xda\x7d\x9e\x1f\x6e\xa7\x71\xc4\xb0\x95\x15\x1d\x12\x2f\xe8\x90\xca\x77\xea\xb2\xf2\x0c\x58\x8c\xa9\x8e\xd3\xa1\x00\xfd\xdb\x3e\x7f\xb3\xe8\xb6\x82\x61\xf7\xfc\x39\x3f\xf0\x30\x7d\x19\xc0\x17\x59\x6c\x8d\x1b\x27\xa6\x43\x28\xd6\xdc\x83\xcc\xdd\xd6\x73\xf8\xbc\xf9\x11\xad\xf5\xa4\xbb\x7f\xfa\x60\x5b\x7a\xf8\xc1\xf3\xfb\x4b\x1d\x36\x7f\xcc\x27\x03\xc6\xc9\x12\xb9\x9f\xe9\x1b\x91\x49\x76\x63\xf6\x27\xf2\x9a\x51\x9b\x10\xb7\xd7\xc0\x77\xd0\x52\x6b\x6b\xba\xb5\x74\x4e\xd4\xea\x10\x45\xa4\x41\xae\xf8\xe8\x4f\xa2\x28\x57\x1b\x17\x31\xa4\xad\x20\xda\xc3\x49\x6e\x0e\x80\x18\x5b\x7e\xb2\x6c\x64\xd3\x23\xa6\x3b\xef\xb7\x3a\x1c\xe9\xdc\x1c\x1e\x6e\x4b\xa0\xe4\x05\xde\xbf\xee\x83\x37\x9d\xf0\x9a\xcd\xa2\x96\xd7\x47\xbd\xe6\xbc\x5a\xa4\xba\xd9\x65\xfb\xfe\x0a\xbe\xc3\x4e\x93\x5c\xc6\x72\x7b\xb5\x72\x61\x1e\x58\xe6\x85\xfd\x5c\x34\xb4\xf9\x84\xd2\x64\xb3\xd2\x4f\xb1\xa1\x59\x0e\xce\x6a\x06\xb5\xa5\x50\xba\xdc\x2b\x38\x1f\x06\x6d\xe7\x01\x5f\x40\x08\x38\x7a\x98\x5c\x8b\x01\x54\x76\x86\x72\x3f\xa5\x76\xe5\xe6\x02\x74\xac\xa8\x72\x2a\xb7\x67\xf3\x0c\xf6\x1a\xba\xef\x3a\xd3\x18\x6d\xa9\x71\x72\x0e\x2d\x7c\xe8\x31\xe0\xc7\x6d\x9f\xd2\x18\x6f\x6f\x6e\x8e\x26\xf5\xd3\x81\x24\x20\x17\x61\xcf\xa4\x3d\xcb\xf8\x9e\xe5\x53\x3b\x76\x46\xb9\xc9\x83\x9f\xb5\xd3\x47\x0c\xe5\x42\x8f\xf3\x31\x97\x63\x70\x98\x8c\x4d\x6c\x37\xb2\x73\x90\x9d\x8f\x32\xa3\x71\x27\xff\x80\xcb\x00\x49\xfd\xbd\xec\xaf\xeb\x5a\xcd\x4d\xaf\x88\x3c\x0f\x50\x4c\x5b\xbe\xc7\x19\xce\x14\x71\x91\xbe\xca\xcb\xea\xaa\x16\xe3\x44\x5d\xa8\xe8\x30\x35\x3d\xc6\x59\x62\x5d\xf0\x43\xe9\x29\x89\xc9\x08\xdb\x79\xb0\xcf\x97\x90\x97\xd5\x40\xb5\x70\x84\x49\x53\x19\xbe\xcb\x65\xa8\x49\x7c\x87\x10\xe5\x12\xa1\x86\x97\x97\x62\x07\xfb\xac\x51\xee\xa6\x57\x7b\x9e\xd6\xca\x8c\x38\x5f\xf7\x54\x3a\xc1\x5f\x53\x0d\x97\xdd\x73\x6d\xd4\xb6\x92\x35\xfc\x99\x2f\x5b\x42\xfb\x6c\xd4\x21\x5d\x16\x16\xb9\x22\xe1\xdb\x17\x25\x70\xca\x8a\x2a\x83\x2b\xb2\xd9\x02\x4f\x66\x8f\xdc\x16\xbb\x87\x2b\x80\xb3\xd9\x91\x01\x58\x7f\xe6\x6e\x58\x5b\xcb\x9d\x77\x95\xfa\xe0\xa7\xa3\xa8\xf7\xb1\x2d\xcc\x6a\x97\x05\x32\xf6\x19\x79\x5d\x2a\x85\x55\x76\x1c\xa7\x83\x35\xb1\x5f\x8a\x58\x5a\xe6\xbe\xa1\x45\x72\x06\x2a\xb3\x8b\x38\x65\x87\xa4\xc7\x3c\x8e\x98\x46\xeb\x75\x7b\x75\xf3\xea\x9d\x35\x0e\x61\x9b\x3c\xbc\x66\x19\xc3\xc8\x17\x92\xfa\x60\x2f\x3b\xe6\x5f\xf2\x93\x22\xda\xea\xdf\x23\xa5\x0c\xca\x50\x79\xda\xc8\xc9\x55\x86\x61\x32\x98\x26\x76\xaa\x62\x19\x1c\x3e\xaf\x92\xff\x7c\xa7\xe1\x4a\x00\x91\xbc\x4b\x80\xab\x0f\x9f\x2b\x80\x0d\x55\x96\x9b\x5b\xd8\xc8\x11\xca\x9d\x9b\x3d\x7d\xff\x0e\xe5\x8a\xdb\x78\x47\xcb\xcb\xed\x88\x33\x0d\xe5\x43\xd7\x98\x48\x91\x67\xde\xc5\x57\x29\x45\x3b\x02\xe3\x5e\x1f\xe3\xe6\x16\x3e\x6c\xc6\x4b\xea\xbd\xa3\xa8\x48\x11\xc9\xb8\xe3\xe6\x23\x6f\xf8\x0d\x43\xa4\xc0\x4e\x9b\x38\x34\x7f\xce\xf1\xbb\xac\x10\xea\xbf\xd5\xdf\xd6\xdf\x32\x40\x5e\xf9\x35\x58\xfa\xfa\x44\x14\xa1\x16\x3a\x9b\xe8\x8d\x0e\x4d\x6f\x4e\x78\x73\xe2\xd3\xf5\xff\x98\x71\x81\xf0\x0b\xfe\x7b\x32\x81\xb8\x2e\xe8\x00\x36\x6c\xe7\x04\xf8\xef\xcf\xe9\xc8\x7f\x6d\xf2\x12\xa7\x26\xfe\xf7\x63\xf5\xc7\xc7\xf9\x72\xd9\xf1\xad\x15\x59\x06\x35\x6c\x79\xd0\x0d\x7f\xdd\x75\xb4\x14\x92\x3a\x9b\x37\x97\x1f\x55\xd0\xe7\x2b\xcd\x4b\xd3\xf2\xb8\x88\xe4\x20\x1d\x09\xe8\xa5\xae\xee\x3d\x75\x5a\x08\xd3\xd8\xca\x7f\x69\x58\xd9\xfd\xd9\x87\x87\x7d\xbe\xb2\x0b\x31\x01\x9b\x9e\xef\xd6\xb0\xe2\x72\x6f\x99\x8d\x76\x65\x58\x70\x12\x25\x94\xae\xba\x58\xd5\xf6\x0d\xfb\x47\x6f\xe2\x2d\xa8\xdf\xbe\xff\xe5\xee\xa7\x77\x6f\xe1\x79\x51\x94\xda\x55\xef\x2d\xea\x88\x42\x58\x9c\x02\x96\x6a\xe8\x43\xc4\xe1\x84\x41\x52\xc0\xed\xcd\x8d\xbc\xd6\x3e\x1c\x6f\x76\x6c\xbc\x19\x21\xd5\x23\xd5\xff\x05\x00\x00\xff\xff\xbd\x5b\x84\xe5\xbf\x21\x00\x00") +var _runtimeHelpPluginsMd = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x5a\x5f\x8f\xdc\x36\x92\x7f\xd7\xa7\x28\xcc\x3e\xb8\x3b\x68\x6b\xb2\xb8\xb7\x01\xbc\x80\xed\x24\x8e\xf7\x1c\x3b\xf0\x4c\x12\x2c\x0c\x03\x64\x4b\xa5\x16\x33\x14\xa9\x25\xa9\xee\xe9\x33\x72\x9f\xfd\x50\x55\xa4\xa4\x1e\xcf\x06\x79\xb9\x05\x36\xa3\x96\xc8\xaa\x62\xfd\xfd\x55\xd1\x7f\x83\x9f\xed\x74\x30\x2e\x56\xd5\x4f\xa6\x09\x1e\xe2\x34\x8e\x3e\xa4\x08\x4d\x40\x9d\x8c\x3b\xc0\x28\x0b\xe0\x64\x52\x0f\x1a\xa2\x19\x46\x8b\xf0\x6e\xd2\x10\xcf\x31\xe1\x50\xc3\xf7\x47\x0c\xe7\xbc\x0e\x7a\x1d\x41\x57\x83\x36\x0e\x62\x13\xcc\x98\xe0\xd4\x9b\xa6\x07\x13\x21\x4c\x0e\x74\x82\x98\x74\x48\xd3\x98\xdf\xc7\xde\x4f\xb6\x85\x3d\xc2\x68\x75\x83\x2d\x18\x07\x95\xfa\xdf\xeb\xba\xf1\xae\x33\x87\xeb\x81\xc4\xba\xce\x42\xe4\xbf\xef\xf5\x80\xab\xc7\xda\x4e\x5a\xd5\x55\x75\xd7\x63\x40\xd0\xf4\x7f\x70\xd3\xb0\xc7\x00\xbe\x83\x46\x5b\xbb\xd7\xcd\x3d\x74\x93\x6b\x92\xf1\x74\x14\xe6\x7c\xf6\x13\x34\xda\xc9\x49\x91\xf8\x9e\xfd\x14\xaa\x7c\x8e\xe4\x59\xde\xc6\xb7\x48\x42\x27\x33\x60\x04\x9f\x7a\x0c\x90\x7a\xed\xca\x29\x6a\xb8\xeb\x11\x9c\x1e\x48\x55\xb1\xe9\x71\x40\x30\xb1\x52\xde\xbd\x64\x66\x9b\xa3\xc1\xd3\x56\xd5\xf0\x83\x0f\x80\x0f\x9a\x95\xa7\x67\x59\x2e\x95\x83\xac\x48\x62\x05\xa9\x47\x98\x22\x06\x88\xfa\x88\xb1\xa2\x9f\xfb\xa9\xeb\x30\xc0\x29\xeb\xeb\xa6\xaa\x94\x52\x76\xd2\xd5\x4c\xcc\xbb\x5b\x7d\x44\x61\x59\x01\x00\xd4\x75\xcd\x7f\x03\xa6\x29\x38\xe8\xb4\x8d\x58\xa1\x6b\x69\x27\xeb\x0b\x14\x2d\x56\x70\xd4\xc1\xe8\xbd\x25\xd9\x41\x43\xc0\x0e\x03\xba\x06\x49\x0b\xc4\x9a\x16\xf1\x83\x16\x46\x26\xc2\x1e\xe9\xc4\xf8\x80\xcd\x94\xb0\x05\xef\xea\xea\xae\x37\x91\x09\xd8\xc1\xc7\x04\xda\x9e\xf4\x39\xf2\xb6\x66\x0a\x01\x5d\x62\x3a\xbb\x47\xea\x3f\x60\x12\xdf\x52\xaf\xa7\xf0\xab\xc1\xd3\x66\xab\x40\x47\x38\xa1\xb5\x75\x55\xbd\xb4\x16\xf4\x51\x1b\xcb\xe2\xe9\x6c\x41\x32\xb2\x35\x31\x89\xbf\x10\x8b\x7b\x3c\xef\x8d\x6b\x8d\x3b\x44\x88\x98\xf5\xd1\xf1\xa7\x1e\xed\x28\xee\x11\x71\xe5\x05\xd9\xf3\xb4\x8d\xbe\x28\x48\xc3\xde\x7b\x8b\x64\xde\x11\x1b\xd3\x9d\xe9\x8c\xa7\x1e\xb3\xd9\x45\x11\xd5\xe2\xb2\x01\xad\x6f\x34\x49\x91\x15\xd5\x4c\x21\xfa\x00\x3e\x80\xf3\x09\x74\x97\xf2\xbe\x45\x6f\x8d\x27\x17\x48\x58\x57\xd5\x7b\x9f\xc8\xd0\xe4\x5d\x2c\x5a\xf1\xd4\x08\xbe\x69\xa6\xf0\xf5\x76\x8a\xad\x3d\xa2\x9b\x89\xb4\x35\xbc\xed\x48\x93\xd5\x49\xbb\x04\x7a\x71\xf6\x3d\x76\x3e\xe0\x23\xde\xc5\x5a\x3b\x72\x2d\x50\x63\xc0\xec\xa4\xe4\xa0\x6f\x49\x8f\x24\xa0\x8e\x28\xfe\x96\x55\x21\xba\xc1\x36\xeb\xc4\x60\x9c\x55\x92\xcf\xb9\xe2\xb2\xe8\xa6\x30\xab\x96\x63\xd8\x49\x4b\x40\x15\xf9\x23\x19\xd8\x49\x54\x4d\x11\xbb\xc9\x2e\x27\x48\x1e\xee\x9d\x3f\x81\xde\xfb\x69\x95\x44\x58\xaf\xcb\x99\x28\xd2\xc8\x69\x3e\x8c\x58\x62\x6d\x59\x4b\xb4\xb0\x25\x69\x1d\x85\x16\xa5\x05\x3c\x89\x33\x9b\x08\x7e\x44\x3a\x95\x76\x2d\x0b\xe7\xf0\x54\x95\x4f\xa3\x8e\x91\x5d\x8b\xc2\x5b\x9c\x3a\x8b\xd7\xf9\x00\x11\x13\x67\x46\xb2\xbd\x05\x3f\x8a\x3b\xed\x75\xe4\x38\x60\x62\x9d\xb1\x98\xce\x23\xee\xaa\x6e\x15\xf7\xa4\x47\xda\xe8\xbb\x0e\x54\xd2\xfb\x98\x7c\x1c\x75\x83\x51\x81\x77\xf6\xcc\xc4\xdf\x78\xde\xcc\x3a\x66\x5a\x67\x76\x76\x11\xb6\xae\xaa\xe7\xcf\x9f\xff\xa7\x4c\xb7\xb8\x36\x9d\xa9\x84\x74\x14\x17\xe3\xc5\x73\x1c\x25\xcf\xf1\x67\x5c\xe5\x43\x4b\xd6\xf1\xa0\x9b\x06\xa3\x84\xab\x71\x8e\x13\x4d\xb8\xe7\x70\xf2\x1d\x70\x16\xae\xe1\x47\x62\xcb\x29\x82\x82\x0f\x36\xb4\x98\x8e\x09\xd1\x1c\x9c\x4e\x53\xc0\xc8\x07\x5e\x49\x12\x10\x0e\xe6\x88\x0e\xa6\x48\x47\x7f\xe3\x9f\xc5\xbc\x85\xab\xc7\xf6\xa6\xaa\xbe\x01\xf5\xe1\x56\xdd\x2c\x49\x48\x0c\x48\xdb\x44\x9e\x0f\xb7\x22\x00\xdb\x54\x52\x89\x3d\x53\xc6\x14\x6d\x3a\x12\x44\xac\x44\xab\xa3\x1e\xb0\xd2\x51\x58\xbd\xf9\xf0\xe1\x76\x26\xbc\x83\xe8\x41\xb5\x3a\x9c\x8c\x53\x3b\x50\x27\xe3\x5a\x7f\x8a\xf4\x68\x8d\x9b\x1e\xe8\xa1\x0b\x88\xfb\xd8\xaa\xba\xae\xb7\x2c\x9a\xd4\xa1\xef\x4c\x50\x37\xd0\x78\x97\x34\x15\x43\xe2\x33\xea\xd4\x97\xb8\x17\xf1\x64\xe9\x14\x34\x3b\x27\x9b\x91\x49\x90\xa9\xd5\x4d\xd1\x9a\xef\x40\x5b\xcb\xdb\xe8\xc3\xea\x44\x86\xb4\x84\xc2\x75\x0a\x77\x7a\xaf\x6e\xb2\x3d\x5a\x7c\x28\xd9\xac\xe4\x52\xde\x9b\x93\x1f\x3f\x13\x71\xde\x3b\x60\x8c\xe8\x0e\x48\x12\x5b\x4c\x91\x4d\x1d\xd1\xb5\x40\x5f\xf4\x81\xb4\xea\x97\x0a\xe3\x43\x29\x81\x63\xf0\xc3\x98\x44\xe6\xf7\x78\x7a\xc5\x05\x67\x93\xf0\x21\xed\xe4\xb4\x31\x05\xe3\x0e\x5b\xf8\x46\x3e\x91\x46\x78\x67\xcc\xa1\x95\x4b\x54\x17\xfc\x00\x3a\xdb\x3d\xa0\x26\x0f\xcb\xf0\x41\xde\x11\x31\xe6\xf2\x06\xd3\x3b\xd4\x94\xb5\x7f\xeb\x4d\x42\x8e\x86\xcd\x96\x53\x8f\xba\xc9\x99\x47\xb4\x6d\x65\x19\xf9\x46\x5e\x57\x14\x22\x24\x45\x34\x26\xfa\x36\xfe\xe6\x43\xfb\xba\xd7\x61\x13\x53\x98\x85\x7e\x44\xf4\x89\x1c\x26\x2b\xc5\xc1\x9f\x9d\x7c\x68\xa1\xe9\x75\xd0\x4d\xc2\xf0\x8c\x29\x7f\x9c\x1c\xde\xa6\xb0\x09\xe4\x7c\xb8\xcd\x1b\x56\x44\x75\xa1\x91\x3d\x85\x1e\x17\x19\x69\x13\xd3\x79\xe7\x9b\xcd\xc3\x0e\xc8\xe2\x69\x0b\xef\x7c\x73\x41\x82\x34\x49\x4b\x14\x11\x9b\x1a\x31\xea\x3f\xbd\x71\x3f\xeb\xd4\xc7\x4d\x6b\x42\x5d\xd7\xf3\xb1\xb2\x0c\x94\x53\xf7\xc6\x61\x84\x61\xb2\xc9\x50\xba\x69\x4d\xc0\x26\xf9\x60\xc4\xe0\x84\x3a\xac\x5d\x74\xff\x5d\xfe\x7c\x26\x0c\xb5\x59\xdb\x57\x2d\xc2\x58\x0b\xfb\x49\xb4\x63\x75\x4c\x80\x16\x07\xf2\x3e\xdf\x89\x47\xec\xd2\x79\x34\x94\x67\xcf\x73\x4c\x3c\x8b\x33\xe7\x73\x31\xf2\x07\x4e\x92\x1b\xa7\x07\x9c\x99\x5c\xda\xf7\xa8\xed\x34\x9b\x34\xe0\xbf\x27\xe4\xea\x2e\xd9\x95\xc9\xbc\x6c\xdb\xaf\xc9\xec\xf2\x46\xe3\x12\x86\x4e\x37\xf8\xe5\x0f\xa2\x1c\xc9\xed\x17\xc5\x0b\x15\xf1\xc1\xf9\x2d\x21\x23\xd9\xbc\x51\xab\xed\x0a\x06\xd4\x9c\x43\xcf\x92\xa8\x8c\x83\x37\x5e\x72\xc1\xed\x7c\x12\xa1\x58\xb8\x2f\x47\x7a\x9a\x71\x81\x51\xb4\x38\x97\x94\x93\xb1\x96\x24\x88\x28\xda\xcd\x2b\x0f\xd6\xef\x49\x9b\x3b\x98\x9c\xa5\x7c\x6c\x52\x4e\xb8\x52\x6c\xa8\x4c\xc8\xd2\xba\x48\xf4\x8e\xbe\xfc\x89\x58\xbb\x12\x96\x39\x6a\xff\x4c\x4c\x92\x68\xb1\x06\xf3\x94\xbc\xb4\xac\x15\x62\xcc\xfc\x95\x71\xed\x7f\xe3\x79\x73\x8f\xe7\xdd\x0c\x00\x66\x55\x10\x1c\x8b\xa0\xee\xf1\xac\x48\x01\x4a\x16\x28\xde\xf9\x93\xbe\xc7\xd7\x7e\x18\xb4\x6b\xd9\x9a\xbb\x05\x11\x17\xa1\x33\x46\xe0\x2a\x52\xd7\xf5\xeb\xf9\x27\xd1\x26\x39\x97\xd4\xd3\x08\xa5\x0c\x23\x89\x5e\x01\x01\xa4\x65\x86\x01\xa0\x0a\x03\x25\x95\xb5\xc0\x13\x06\xc8\xbf\x44\x84\x6f\xb9\xfc\xae\xb9\x26\xcf\xe0\xf4\xbd\x5f\x78\xd7\x6b\xe9\xf3\xbb\xcd\x23\xd1\xb7\xea\xe6\x52\x3c\xb5\xac\x65\x4d\x10\xf8\x12\x51\x57\x6a\x10\xbd\x2c\x10\xf8\x32\x3a\xd6\x00\x9a\x17\xfe\xa8\x5d\x6b\x67\x15\x36\x43\xbb\x0e\xab\xc9\xad\x8d\x9b\xb5\xb3\xda\x76\xdb\xa3\xb5\x65\x6f\xe4\x1f\x33\x81\x9d\x84\x12\x19\xeb\x28\x18\x70\x07\x27\x6d\xd2\x9d\x7f\x6d\x7d\x94\x37\x4f\x30\x61\x2a\x7c\x6c\x21\x2b\x7d\x91\x5a\xd1\x52\xbc\xf5\x09\x10\xc9\xe7\xcb\x16\xcc\xf0\x91\x9a\xa1\xec\x74\x84\x05\x0f\xc1\x4f\x99\x24\xb1\x50\x2b\x79\x32\x55\x8e\x0b\x3d\x8e\x96\x08\x9b\xee\x11\x63\x02\x06\x61\x42\x86\x45\x12\xdc\x0c\x89\x4c\x2a\xfc\x88\x60\x86\xcc\xd5\xdc\x2e\x71\xee\x96\xc0\xc5\xd6\x24\x1f\xc4\xf8\x77\x9e\x2a\xcb\xcf\x3e\x6e\xac\x6f\x28\x77\x73\x7c\xcd\xc1\x45\xea\x7b\x6c\xbc\x52\x44\x60\xf4\xd1\x94\xce\xa4\xd4\x42\xae\x03\xdc\x46\x94\x44\xf7\x11\xad\xd7\xad\xba\x81\xcd\x47\xdc\xd2\xa3\x34\x86\xa9\x2f\x05\xee\xd5\x39\xe1\x87\xae\x8b\x98\xfe\x54\x06\x7c\xd0\x0d\xc1\x0a\x6b\xee\x71\x25\xb7\x02\x7c\x68\x70\xe4\xf3\x9b\x04\x8d\x9f\x5c\x8a\xb0\x3f\x93\xb3\x1a\x17\x13\xea\x96\xe4\xa3\x62\x15\x73\xe9\xd9\xdf\x8e\xfa\xe4\xc8\xcd\xde\xaf\x53\x6f\x33\xb4\x2f\xc3\x21\xc2\xa7\xcf\xe5\x8d\x77\xb7\xa9\xf5\x53\xca\x4f\x18\x02\x3d\x7d\xff\x40\xaa\xce\x4b\x08\x73\x68\xda\x55\xd7\xf5\x45\xc0\xdc\x52\x47\x1d\x67\x58\xb7\xf8\xd6\x18\x3c\x43\xd3\x27\x3c\x42\x15\x86\x2a\x3f\x62\x08\x8a\xed\xac\x84\xad\x22\xca\x04\x42\x97\xe6\x2a\x79\x6e\x44\x1e\x8f\x03\x38\x55\xec\x71\xdd\x34\xac\x64\x28\x8d\x67\xaf\xc7\x51\x4a\x47\x76\x8d\x45\x9a\x22\x27\x67\x14\x55\x8e\xa9\x98\x3b\x77\x48\xe1\x30\x51\xed\xbc\x60\x48\x09\x26\x77\x1b\xa5\x85\xfc\x6a\x5e\x31\x1b\x81\x14\xb4\x8a\xf5\xff\x27\x75\x73\x28\xcf\x11\xf9\x84\xd2\x2f\xfa\xd6\x79\x61\x4e\xa8\x44\xda\x44\xe8\x4c\x88\x74\xb2\x40\x27\xdb\x9f\x09\x18\x31\x59\x56\xab\xb4\x02\xd2\x6d\x96\x74\xf1\x36\xad\x3b\xd4\x9c\x1f\x63\x0f\xcf\x1b\x55\xcf\x0a\xc0\x9c\xeb\xbe\xa1\x75\xf5\xeb\xa1\xdd\x41\xab\x93\xbe\xa8\xbf\xae\x5d\x50\x98\x71\x59\xa9\x31\xb5\x66\x9e\x07\xfc\xee\xf7\xc5\x56\x8b\x6a\xfd\x78\x49\x99\x88\xdd\x93\x85\x34\xad\xaf\x64\xb8\x31\xe8\x33\x44\xc4\x41\x42\x4a\x43\x1c\xa8\xb4\xcc\xa8\x7e\x6e\xaf\x16\xdf\x22\xf0\x14\xfd\x30\x23\x1b\xbf\xff\x1d\x9b\x14\xab\xb9\xa9\xde\x0b\x70\x5a\x76\xf4\xfa\x88\x30\x10\xfa\x18\x30\xf5\xbe\x8d\xf5\xc5\x64\x64\x81\x89\xdc\xac\x0a\xbd\x4a\x3c\x8a\x67\x6f\xb9\xb5\xd0\x4f\xcf\xba\xb4\xb5\x97\xb3\xa8\x85\xf6\x0d\x0f\x8f\x78\x46\xb4\x55\x75\xf5\xaf\xbc\x25\x22\x66\x09\x57\x47\x1d\x7d\x8c\x66\x3d\x90\x79\x62\x0a\xd3\xa3\x1d\x21\xf9\xd1\x34\x35\x8f\x9a\xca\x3c\xc1\xbb\xaf\x84\xa4\x2d\x0d\x57\xcb\x27\x50\x39\x4f\x0d\xe6\xe8\x95\x8c\x5d\xed\x91\x3c\xb7\x86\xb7\x79\x1e\x16\x90\x3c\x89\x8c\x7f\x40\x87\x81\x61\x4b\x4c\xa6\xb9\xcf\x59\x9c\x8f\x25\xde\x37\x68\x7e\xa9\x61\x9e\xf4\x55\xfa\xe8\x0d\xd3\x98\x42\xa4\xb2\x37\x06\xbf\xb7\x38\xc4\x1d\xac\xdb\x77\xd3\x65\x3d\x12\x9c\x78\xa4\x36\xaa\x2f\x5b\x45\x6a\x50\x79\x0a\x47\x3a\xfc\xe7\x14\x93\xcc\x5a\x9e\xd6\x32\xf5\xa3\xa5\x14\x9d\xbc\x7b\x96\x32\xf1\x99\x04\xe8\x83\x36\x84\x3a\x7e\x89\x25\x48\x57\x66\xdf\xcd\x76\xe5\x21\xd6\xaa\x83\xcf\x88\x4f\xc7\xe8\x1b\xa3\xe7\x80\x62\x5e\x8c\x21\xf6\xe7\x1c\x85\x8b\x64\xf5\xab\xa9\x53\x65\x3a\x37\xf7\x8d\x2b\xa2\xea\x07\x63\xf1\xee\x3c\x22\xf5\xc9\xd4\x8b\xd0\x5f\x2a\x08\xd4\x2c\xcb\x38\x71\xf6\x8b\xec\xbb\x4f\xb8\xdf\x1c\xfd\xb8\xee\x54\x97\xe6\x5f\x07\xbc\xb9\x6c\x63\xeb\x9f\xa4\x6d\xdd\x0c\xf1\x40\x69\xec\x02\xeb\x5f\xae\xfc\x3e\x04\x1f\xfe\xc2\xba\x7f\x61\x7c\xef\x7f\xe6\x76\x77\x23\x5d\xef\xdc\x4f\x6d\x04\xf3\x08\xce\xb9\xdc\x75\xb1\x61\x07\xbd\x89\xd4\xe3\xdc\xf1\x34\xe3\x2b\xd4\xca\xaf\x57\xa8\x15\x36\x33\x1c\x17\xd2\x95\x8c\xee\x20\x8f\xee\x62\xd2\xae\xd5\xa1\x85\x42\xfe\xf7\xd9\x79\xfe\xa3\x04\x57\x57\x3b\xf8\x96\x48\xfd\x0d\x5e\xb6\xdc\x1e\x73\xd0\xf1\xe4\x61\x07\xf1\xec\x92\x7e\x28\xbf\x18\xdc\x5a\x1f\x64\x48\x1d\xcb\xbc\x3b\x47\x41\x35\xc7\x3b\x71\x64\xe3\xbc\x6c\xdb\x8f\x93\x4b\x66\x40\xb2\x7b\x86\xe9\x3c\xd4\x82\xcb\x66\x71\xc6\xbf\xd4\x64\xb6\x32\x79\xf2\x53\x84\x7b\x6e\x00\x7c\x57\xc9\x40\x4b\x66\x4e\x85\xe1\x45\x16\xda\xe5\xd8\x7a\xd6\x4a\x66\xcd\x84\xf4\x2a\x87\x3c\xda\x5e\xe5\x32\xad\x12\xc6\xa4\x24\x10\x24\x13\xe4\x59\x86\x96\x4f\xf5\xd0\x2a\xd6\xc0\x8e\x51\x41\x53\x32\x4f\x91\x79\x99\xa2\x3f\x3a\xee\x15\xed\xbe\xda\xc1\x15\x89\x40\x7f\x33\xb5\xab\xad\x0c\xcf\xa9\x65\x78\xa4\xa2\xf8\x43\xf0\xc3\xdc\x55\x5f\x28\xac\x35\x81\xb5\x96\x30\xb8\xad\x5a\xce\xb7\x1a\xde\xf1\xb4\x28\x97\xab\x20\x44\xeb\xea\xce\xf3\xfc\x24\x17\x5a\x97\x72\xeb\xad\xcb\x0a\xde\x26\x4e\xf2\x11\xf5\xc5\x01\xba\x1c\xac\x3b\xb8\xe8\xba\x2b\x1f\x40\xbd\x33\x31\xad\x05\x9f\x17\xaf\x8c\xea\x03\xa7\xe9\x35\xa3\x58\xb3\xa7\x4d\xc9\x97\x01\xee\x5c\xfd\x67\x70\x53\x55\xb7\x5c\x30\xb8\x98\xe7\xb1\xa7\x07\x8b\x3a\x38\xe8\xfd\xa9\xf4\x3f\x8f\x7a\xa8\x8c\xd9\x2e\xfb\xa1\x6c\x18\xe9\x7c\x67\x27\x13\xdc\xf2\x9b\x49\xfd\xe6\x56\x02\x8a\xdf\x6c\x2b\x82\x34\x5c\xf5\x5f\xe4\x87\x9b\x69\x1c\x31\x6c\xe4\x8b\x0e\x89\x3f\xe8\x90\xca\x7b\xea\x22\xf3\xe0\x5f\x8e\x5d\xc7\x69\x5f\x88\xfe\x7d\x97\xdf\x59\x74\x1b\xe1\xb0\x7d\xf1\x82\x1f\xf8\x06\x65\xb9\x75\x29\xba\xd8\x18\x37\x4e\x2c\x87\x48\xac\xb9\xc7\x9a\xbb\xc9\x17\xf0\xe5\xea\x47\xb4\xd6\x93\x33\xfd\xe6\x83\x6d\xe9\xe1\x07\xcf\xbf\x5f\xe9\x70\xf5\xc7\xbc\x33\x60\x9c\x2c\x89\xfb\x85\xde\x91\x98\x64\x0d\xb3\x3b\x52\xd0\x8e\xda\x84\xb8\xb9\x24\xbe\x85\x96\x5a\x77\xd3\xad\xb5\x73\xa4\x56\x8e\x24\x22\xef\x61\xc8\x4a\xff\x4b\x94\x64\x6b\xe3\x22\x86\xb4\x11\x46\x3b\x38\xca\x75\x11\xd0\xc1\x96\x3f\x59\x37\xb2\xe8\xd1\xa1\x3b\xef\x37\x3a\x1c\x68\xdf\x9c\x9d\x6e\x4a\x9e\xe6\x0f\xbc\x7e\xdd\xe7\x5f\x75\x72\xd6\xec\x16\xb5\xfc\x7c\xd4\x4b\xcf\x5f\x8b\x56\xaf\xb6\x39\xe0\xfe\x06\xdf\x61\xa7\x49\x2f\x63\xb9\xb2\x5c\x65\x10\x9e\x52\xe7\x0f\xbb\x19\xb3\xb4\x79\x87\xd2\xe4\xb3\xd2\x2f\xb2\xa3\x59\xae\x0d\x6a\x26\xb5\xa1\x4c\xbe\x5c\x26\x39\x1f\x06\x6d\xe7\xa9\x6e\x40\x08\x38\x7a\x98\x5c\x8b\x01\x54\x0e\x89\x72\x29\xa9\xb6\xe5\xba\x0a\x74\xac\x08\xb8\x95\x2b\xd3\x79\xf0\x7e\x49\xdd\x77\x9d\x69\x8c\xb6\xd4\x18\x3a\x87\x16\x3e\xf5\x18\xf0\xf3\xa6\x4f\x69\x8c\x37\xd7\xd7\x07\x93\xfa\x69\x4f\x1a\x90\xdb\xcf\xe7\xd2\x7e\x66\x7e\xcf\xf3\xae\x2d\x07\xa3\x5c\xdf\xc2\x4f\xda\xe9\x03\x86\x72\x8b\xcb\x70\x80\xd1\x20\xec\x27\x63\x13\xfb\x8d\xac\x1c\x64\xe5\xa3\xc2\x6c\xdc\xd1\xdf\xe3\x32\x20\x53\xff\x28\xeb\xeb\xba\x56\x33\x4a\x17\x95\xe7\x01\x91\x69\xcb\xfb\x38\xd3\x99\x22\x2e\xda\x57\xf9\xb3\xba\x80\x82\x8c\x13\x8a\x14\x1d\xa6\xa6\xc7\x38\x6b\x8c\x27\xc7\xb9\x67\xa6\x43\x46\xd8\xcc\xb7\x39\x7c\xf3\x7c\x5e\x4d\xd1\xcb\x89\x30\x69\xea\x02\xb6\x19\x05\x9b\xc4\x17\x47\x51\x6e\x8e\x6a\x78\x75\x2e\x7e\xb0\xcb\x16\xe5\x69\xc1\x6a\xcd\xd3\x56\x99\x19\xe7\x3b\xbe\x4a\x27\xf8\x6b\xa6\x61\xd4\x3f\x43\xb3\xb6\x95\xc2\xe5\x4f\x7c\xc3\x16\xda\xe7\xa3\x0e\xe9\xbc\x1c\x91\x01\x11\x5f\xb9\x29\xa1\x53\xbe\xa8\x32\x98\x23\x9f\x2d\xf4\x64\xb6\xca\x6d\xbd\xbb\xbf\x20\x38\xbb\x1d\x39\x80\xf5\x27\xee\xe6\xb5\xb5\x32\x59\x48\x7d\xf0\xd3\x41\xcc\xfb\xd8\x17\x66\xb3\xcb\x07\x72\xf6\x99\x79\x5d\x80\xca\xaa\x38\x8f\xd3\xde\x9a\xd8\x2f\x18\x9a\x3e\x73\xdb\xd2\x22\x05\x03\xa1\xfc\xa2\x4e\x59\x21\x15\x3a\x8f\x5b\xa6\x91\xa7\x1a\xeb\xeb\x76\xef\xac\x71\x08\x9b\xe4\xe1\x0d\xeb\x18\x46\xbe\x85\xd6\x7b\x7b\xde\xf2\xf9\xa5\x60\x2a\x92\xad\xfe\x3d\x52\xc9\xa0\x92\x94\xa7\xa9\x5c\x06\x65\xd8\x27\x83\x77\x3a\x4e\x55\x3c\x83\xd3\xe7\x05\xf6\x98\x2f\xb2\x5c\x49\x20\x02\x04\x88\x70\xf5\xe9\x4b\x05\x70\x45\xc0\xf6\xea\x06\xae\x64\x0b\xd5\xd0\xab\x1d\xbd\xff\x0e\xe5\xdf\x35\x18\xef\xe8\xf3\x72\x25\xe6\x4c\xc3\x45\xba\x31\x91\x32\xcf\xbc\x8a\xef\xcf\x8a\x75\x84\xc6\x9d\x3e\xc4\xab\x1b\xf8\x74\x35\x9e\x53\xef\x1d\x65\x45\xca\x48\xc6\x1d\xae\x3e\xf3\x82\x5f\x31\x44\x4a\xec\xb4\x88\x53\xf3\x97\x9c\xbf\xcb\x17\x62\xfd\xf7\xfa\xdb\xfa\x5b\x26\xc8\x5f\x7e\x09\x96\xde\x3e\x91\x45\xa6\x88\xc5\x45\xaf\x75\x68\x7a\x73\xc4\xeb\x23\xef\xae\xff\xc7\x8c\x0b\x85\x8f\xf8\xef\xc9\x04\x3a\x75\x61\x07\x70\xc5\x7e\x4e\x84\xff\xf1\x82\xb6\xfc\xd7\x55\xfe\xc4\xa5\x89\xff\xfb\xb9\xfa\xe3\xf3\xfc\x2f\x0a\x1c\x5f\x55\x92\x67\x50\xbf\x98\x07\xf9\xf0\xd7\x43\x47\x0b\x8e\xd5\xd9\xbd\x19\x0f\x55\x41\x9f\x2e\x2c\x2f\x3d\xd3\x63\x0c\xcb\x49\x3a\x12\xd1\x33\x23\xa7\x41\xdf\x23\x4c\x63\x2b\xff\x8e\x65\xe5\xf7\x27\x1f\xee\x77\xf9\x9e\x36\xc4\x04\xec\x7a\xbe\x5b\xd3\x8a\xcb\x65\x75\x76\xda\x95\x63\xc1\x51\x8c\x50\x9a\xfa\xe2\x55\x9b\x77\x1c\x1f\xbd\x89\x37\xa0\x7e\xfd\xfe\xe3\xed\xdb\x0f\xef\xe1\x45\x31\x94\xda\x56\x3f\x5b\xd4\x11\x45\xb0\x38\x05\x2c\x68\xe8\x53\xc4\xe1\x88\x41\x4a\xc0\xcd\xf5\xb5\xfc\xac\x7d\x38\x5c\x6f\xd9\x79\x33\x43\xc2\x23\xd5\xff\x05\x00\x00\xff\xff\x74\xb2\x8b\x9d\xb4\x23\x00\x00") func runtimeHelpPluginsMdBytes() ([]byte, error) { return bindataRead( @@ -566,7 +567,7 @@ func runtimePluginsFtoptionsFtoptionsLua() (*asset, error) { return a, nil } -var _runtimePluginsLinterLinterLua = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x8c\x55\x51\x6b\xe4\x36\x10\x7e\xdf\x5f\x31\x88\x1a\xe4\xc4\x76\xca\x3d\x2e\x98\x72\x4d\xaf\x47\xcb\xa5\x17\x9a\xb4\xf7\xd0\xf6\x8a\xd6\x1a\x7b\xd5\xc8\x92\x91\xe4\xdd\x84\xd2\xff\x5e\x24\x79\xbd\xb6\xe3\x3d\x2e\x10\xac\x68\x66\xbe\x6f\xe6\x9b\xc9\x48\xd4\xf0\x1e\xdd\xc7\xce\x09\xad\x28\x91\x42\x39\x34\x24\x85\xb2\x04\x25\x24\xb8\x3d\xaa\x0d\x00\xc0\x5b\xce\x17\x3e\x19\x38\xd3\x63\xba\x41\xc5\x37\x9b\x3b\xf6\x84\xb7\xba\x6d\x99\xe2\xd1\x81\x64\x30\x38\x16\xfe\x33\xd8\x48\x06\xdf\xa6\x9b\x4d\xdd\xab\xca\x63\xc1\xc4\x44\xd3\xc0\x73\xdb\x9b\xdf\x05\x1e\x69\xba\x7d\x60\x07\xa4\x35\x93\x16\xa3\xc5\xf4\xea\x43\x00\xa4\x03\xe7\x88\x32\xb5\x78\x4f\xa9\x2b\x26\xa1\x76\x50\x9e\xe1\x8a\xef\xfb\x7a\xfb\xa3\x90\xf8\xf8\xd2\xe1\xdc\x4f\x48\x5c\x7a\x16\xf7\xcc\xed\x27\x3e\x1c\x0f\xaa\x97\x12\x4a\x20\x37\x1c\x0f\x37\xfe\x0f\x32\xb1\x3b\x6c\x3b\x28\x41\xdb\xa2\x41\x87\xea\x40\xc9\xe3\xdd\xfd\x0f\x3f\xfd\x4a\x22\x91\xa8\xe1\xe3\x83\x97\x94\x1c\x85\xe2\xfa\x68\xc9\x59\x58\xff\x33\x81\xff\xe5\xb7\x0f\x64\xbc\x5f\x81\x7d\x77\x77\x3f\x80\x7a\x0d\x06\x70\x5f\x6a\x09\xa4\xd1\x0b\x5c\x2f\x2f\x25\x8d\xde\xf5\x42\x7a\xed\x49\xa3\x21\x9c\x21\xd7\x40\xa0\x28\x4e\xcc\x19\x90\xa4\xde\x26\x72\x0b\x49\x3b\xc0\x4f\xe3\x4f\x0d\x8d\xa7\x18\xf9\x5a\xaf\x11\x24\xe1\xd7\x13\x20\x94\x16\xcf\x39\xca\x9e\xad\x26\x29\x7b\x56\xed\xb1\x7a\x0a\x73\x33\x9c\x21\xcf\x95\xce\x2b\x2d\xb5\x89\x9c\xbe\x55\x5f\xc5\xd2\xbd\xb8\xbd\x56\xab\x44\xdd\x4b\x2d\xd9\x13\x5a\x4f\x74\x3a\xaf\xa0\x17\xf9\xf6\xbb\x4b\xe8\xd5\xba\xcc\x55\x15\x34\xaa\x2a\xc8\x6b\xfb\xa2\x1c\x7b\xce\xb5\x92\x2f\x90\x7f\x62\x52\x42\xfe\x09\x9f\x9d\x61\x17\x0a\x29\x2e\xd7\xc2\x57\xd9\x78\x1b\x1a\xca\x5b\x0e\x51\xa1\x52\xd7\x35\xe4\x3a\x87\xfc\x08\xf9\x51\x40\x5e\x2d\xa8\x12\x9a\xc8\x24\xfd\x12\xd3\x3f\xec\xb0\xde\x1c\x6f\x08\xc5\x85\x03\xe4\x3c\x42\x87\xf1\x2c\x0a\x20\x2b\x45\x01\x1a\xa3\xcd\x17\xa9\x6c\x65\x44\xe7\xd6\x09\xed\x7e\x18\xb9\x78\x5a\x12\x78\x37\x84\x44\x66\xc5\x75\x36\xa1\x50\x7c\xb1\x19\xb4\x0a\x5b\xe4\x20\xf0\x38\xfe\x27\xae\x6d\xbb\x59\x0a\xcb\x75\xe2\x33\x1f\x8d\xe7\xfd\x74\x2b\x91\x99\xb7\x52\xbe\xef\x9d\x43\x73\x87\xd6\xb2\x06\x2d\xbd\x94\x4a\x28\x2c\x12\x66\x50\xb5\x3c\x8b\x0a\xd5\xda\xb4\xcc\x2d\x77\x5f\xc0\x5e\x00\xc7\xd8\x74\x13\x5c\x7f\xd6\xbb\x07\xc7\x8c\xa3\x01\x89\x90\xe1\x77\xd8\xb8\x5a\xbd\x7b\x16\x5e\xbe\x13\xdf\x8c\x6a\x29\x91\xf7\xa5\xba\x77\x5d\xef\x2e\x44\x9c\x17\x9d\xd7\xdd\x42\x09\xb6\x93\x93\x20\xf2\xa7\x22\x43\x62\xd1\xcd\x60\x83\xcf\x50\x4e\x51\xb6\x8d\xed\x77\x94\x24\x49\xed\x13\xa5\x45\x91\xa7\x24\x1d\x2f\x65\xb8\x4c\xf8\xf5\xf4\xb2\x8d\x9e\xfe\x2e\x60\xd7\xda\xc0\xdf\x59\x68\xbd\x50\x20\x3a\x26\x4c\x90\x05\x6d\x0a\x5c\x8f\x2d\xca\x73\x78\x34\xa2\x85\xe3\x5e\x38\xb4\x1d\xab\x70\x3a\x5d\x7e\xd7\xfb\xcf\xb6\x65\xae\xda\x53\xf2\x39\xb1\x57\x9e\x23\xb1\x57\xdf\x4c\x56\x9f\xa8\xc1\x3a\x23\x54\x53\xd4\x42\xf1\xc0\x92\xc5\xb2\x16\xd3\x32\x7f\x48\x82\x80\x98\x41\x6b\x1b\xaf\x52\x44\x88\x4c\x53\x88\x59\xb4\xa8\x61\xc7\x2c\x2a\xd6\x22\x7d\xbd\x55\xc3\x53\x3c\xda\x3d\xc7\x4a\x02\xf3\xe9\x99\x0d\xce\x38\x73\x4e\xab\xbe\xdd\xa1\x09\x89\xa4\x21\xc5\x0c\xde\xcc\x53\x39\xbd\x29\xd3\xf3\xeb\x51\x8e\xcd\xb7\xce\x64\x60\xb1\x4b\x67\x7d\xb7\xbd\xf4\xef\xee\xbf\xff\xad\x4c\x03\x25\xf4\x8f\xcf\x89\xfd\x2b\x34\x39\x4e\x05\x1d\x01\x7c\x73\x91\x55\x7b\xdf\x5a\xeb\xcc\xb6\x89\xaa\x0d\x92\x4f\xda\xeb\xd8\x4e\x62\x21\x94\x45\xe3\x68\x24\xcc\x42\xe4\xfc\x59\x34\xe8\x7a\xa3\x86\x8c\x16\x05\xcc\xe5\x9c\x64\xea\x2f\xcf\x7d\x0b\x73\x38\x2c\x1d\x5a\x5c\xdd\xa4\xb4\xb8\x4a\xfd\x4c\x26\x6f\x86\x49\x19\x48\x7c\x58\xa0\xf8\x3f\x00\x00\xff\xff\x5a\xd0\xfd\xd3\x4d\x09\x00\x00") +var _runtimePluginsLinterLinterLua = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x8c\x55\x61\x6f\xdb\x36\x10\xfd\xee\x5f\x71\x20\x26\x80\x4a\x25\x65\xe8\x47\x03\xc2\xd0\x65\x5d\xb1\xa1\x59\x83\x25\xdb\x3e\x6c\xeb\x40\x4b\x27\x99\x0b\x45\x0a\x24\x65\xc7\x30\xfa\xdf\x07\x92\x8a\x4c\x29\x4a\xb1\x02\x0d\x29\xf2\xf8\xde\xf1\xdd\xf3\x91\x37\xf0\x01\xed\xa7\xde\x72\x25\x29\x11\x5c\x5a\xd4\x24\x85\xb2\x04\xc9\x05\xd8\x3d\xca\x0d\x00\xc0\xbb\xba\x5e\xc4\x64\x60\xf5\x80\xe9\x06\x65\xbd\xd9\xdc\xb2\x47\xbc\x51\x5d\xc7\x64\x1d\x02\x48\x06\x63\x60\xe1\x86\x71\x8f\x64\xf0\x6d\xba\xd9\x34\x83\xac\x1c\x16\x44\x5b\x34\xf5\x3c\x37\x83\xfe\x9d\xe3\x91\xa6\xdb\x7b\x76\x40\xda\x30\x61\x30\xec\xe8\x41\x7e\xf4\x80\x74\xe4\x9c\x50\xe2\x1d\x17\x29\x54\xc5\x04\x34\x16\xca\x0b\x5c\xf1\xfd\xd0\x6c\x7f\xe4\x02\x1f\x4e\x3d\xce\xe3\xb8\xc0\x65\x64\x71\xc7\xec\x3e\x8a\xa9\xf1\x20\x07\x21\xa0\x04\x72\x5d\xe3\xe1\xda\x7d\x90\x68\xdf\x62\xd7\x43\x09\xca\x14\x2d\x5a\x94\x07\x4a\x1e\x6e\xef\x7e\xf8\xe9\x57\x12\x88\x78\x03\x9f\xee\x9d\xa4\xe4\xc8\x65\xad\x8e\x86\x5c\x84\x75\xff\x22\xf8\x5f\x7e\xfb\x48\xa6\xf5\x15\xd8\xf7\xb7\x77\x23\xa8\xd3\x60\x04\x77\x57\x2d\x81\xb4\x6a\x81\xeb\xe4\xa5\xa4\x55\xbb\x81\x0b\xa7\xbd\x8b\xc8\xe0\x4c\xa6\xef\xdc\x7d\x8f\xec\x5f\x32\x20\x49\xb3\x4d\xc4\x16\x92\x6e\xe4\x88\x41\x9e\xab\x3a\xcd\xce\x2f\x25\xbb\x60\x24\xf5\x9b\x08\x07\x85\xc1\x4b\x9e\x62\x60\xab\x89\x8a\x81\x55\x7b\xac\x1e\xbd\x77\x2e\xf3\x33\xc9\x73\xa9\xf2\x4a\x09\xe5\x5c\xe7\xea\xf5\xff\x78\xfa\x93\xdd\x2b\xb9\x4a\xd5\x9f\x1a\xc1\x1e\xd1\x38\xaa\x68\x7e\x9e\x83\x17\xf9\xf6\xbb\xd7\xc0\xab\x75\xad\xab\xca\x6b\xe4\x87\x33\xc9\x1b\x73\x92\x96\x3d\xe5\x4a\x8a\x93\x17\xfc\x0f\x26\x44\x98\xe0\x93\xd5\x6c\xf5\x3e\xc5\xeb\x57\xaa\x57\x59\xeb\xce\x57\x33\x0c\x67\x12\xa4\x2a\x55\xd3\x84\x1a\xe7\x7e\x38\x86\xbf\xdc\x0f\xd5\x8c\x38\xa1\x89\x48\xd2\xaf\xf1\xfe\xcb\x0e\xeb\x35\x73\x1b\xfe\xca\xcf\x93\x33\xc9\x5d\x16\xce\xba\xcb\xbb\x01\x6a\xad\xf4\x57\x39\x4c\xa5\x79\x6f\xd7\x99\xcc\x7e\x74\xe0\x34\x8b\xcb\xe5\xa2\x10\x12\x91\x15\x6f\xb2\x88\x41\xd6\x8b\x66\xa1\xa4\x6f\x2c\x07\x8e\xc7\xe9\xc7\xb9\xd6\x00\x67\x19\x2c\x3b\x8c\x4b\x7c\xda\xbc\xb4\xac\x1b\x81\x4c\xbf\x13\xe2\xc3\x60\x2d\xea\x5b\x34\x86\xb5\x68\xe8\x6b\xa9\xf8\x7b\x05\xc2\x0c\xaa\xae\xce\x80\xe9\xd6\x64\x41\xa6\x46\xe9\x8e\xd9\x65\x53\xf4\x0c\x0b\xf8\x80\x90\x6e\x7c\xe8\xcf\x6a\x77\xdf\xb3\xa3\xa4\x11\x1e\x21\xe3\xff\xb1\x21\x2b\xf9\xfe\x89\x3b\xfd\x9e\xb9\x67\x84\x4b\xb9\x5c\x2c\x55\x83\xed\x07\xfb\xca\x89\x4b\x1f\x74\x35\x30\x50\x82\xe9\x45\x74\x88\xfc\x25\xc9\x98\x5e\x08\xd3\xd8\xe2\x13\x94\x31\xca\xb6\x35\xc3\x8e\x92\x24\xf1\x9e\xa5\x45\x91\xa7\x24\x9d\x16\xfd\x4f\x86\x26\xf5\x9b\x78\xb1\x0b\x91\x6e\xcd\x63\x37\x4a\xc3\x3f\x99\xb7\x01\x97\xc0\x7b\xc6\xb5\x17\x07\x4d\x0a\xb5\x9a\xca\x95\xe7\xf0\xa0\x79\x07\xc7\x3d\xb7\x68\x7a\x56\x61\x6c\x34\xf7\x14\xb8\x61\xdb\x31\x5b\xed\x29\xf9\x9c\x98\x2b\xc7\x91\x98\xab\x6f\xa2\xa6\xc8\x1b\x30\x56\x73\xd9\x16\x0d\x97\xb5\x67\xc9\xc2\xb5\x16\xce\x99\xbf\x33\x5e\x40\xcc\xa0\x33\xad\x53\x29\x20\x04\xa6\x18\x62\x76\x9a\x37\xb0\x63\x06\x25\xeb\x90\xbe\xec\xb8\xfe\xa5\x9e\xf6\x1d\xc7\x4a\x02\x73\x0f\xcd\xec\x33\xf9\xcf\x2a\x39\x74\x3b\xd4\x3e\x91\xd4\xa7\x98\xc1\xdb\x79\x2a\xcf\x4f\x4e\x3c\x7f\x69\xeb\x50\x7c\x63\x75\x06\x06\xfb\x74\x56\x77\x33\x08\xf7\x2c\x9f\xbf\xac\xb8\x81\x12\xfa\xe7\xe7\xc4\xfc\xed\x8b\x1c\x5c\x41\x27\x00\x57\x5c\x64\xd5\xde\x95\xd6\x58\xbd\x6d\x83\x6a\xa3\xe4\x51\x79\x2d\xdb\x09\x2c\xb8\x34\xa8\x2d\x0d\x84\x99\x3f\x39\x7f\x35\x35\xda\x41\xcb\x31\xa3\xc5\x05\xe6\x72\x46\x99\xba\xc5\x4b\xdd\xbc\x0f\x43\x55\x09\x2d\xae\xae\x53\x5a\x5c\xa5\xce\x93\xc9\xdb\xd1\x29\x23\x89\x3b\xe6\x29\xfe\x0b\x00\x00\xff\xff\xb4\x86\xf8\xc1\x6c\x09\x00\x00") func runtimePluginsLinterLinterLuaBytes() ([]byte, error) { return bindataRead( @@ -646,7 +647,7 @@ func runtimeSyntaxMakefile() (*asset, error) { return a, nil } -var _runtimeSyntaxReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x74\x53\x4d\x8f\xdb\x46\x0c\xbd\xcf\xaf\x78\x48\x0e\xd9\x15\x0c\xf9\xd0\x5b\x8e\x2d\xd2\x74\x81\xcd\xa2\x40\x92\x53\x10\xc0\xe3\x11\xa5\x61\x76\x34\x14\x86\x94\xbd\xea\xa1\xbf\xbd\x18\xc9\x2e\xbc\x08\x72\xb2\x41\xf1\x7d\xf0\x91\xf3\x16\x9f\x38\x14\x81\x2e\xd9\xfc\x0b\x22\x0f\x31\xf1\x10\x8d\xf3\x80\x9e\x13\xa9\x73\x5f\x22\x29\xc1\x17\x82\x45\xfa\x75\x23\x7a\x29\x18\x2b\x59\x8b\x2f\x02\xce\x6a\x3e\xa5\x8a\x19\x77\xf8\x31\xab\xb9\x69\x36\x5c\x4a\x57\x9a\x0d\xc9\x19\x87\x7f\xf7\x6d\x90\xdc\xf3\xb0\x5f\x39\xf6\x5b\xc3\xa1\x5d\xf5\x97\x4d\xde\x3f\x53\x46\x5f\x64\xc4\x93\xcf\xb2\x83\x4e\x14\xb8\xe7\xe0\x53\x5a\xb6\xfa\x37\x8b\xac\x28\x34\x89\xb2\x49\x59\xbe\xdf\x45\xb3\x49\xdf\xef\xf7\x03\x5b\x9c\x8f\x6d\x90\x71\xaf\x41\x26\x6f\xff\xec\xb3\xcf\x52\xc2\x7d\xeb\x5e\x45\xb0\x59\xaa\x7a\x3e\x8d\xa2\x06\xee\x28\x5b\x15\x81\xc9\x2a\xfc\x4e\x77\xa0\x97\x40\x93\xad\x33\xab\x8c\x84\x67\x5a\xd0\x71\xdf\x53\xa1\x1c\x48\xdf\x3b\xd7\x5c\x92\xed\x84\x14\x59\x0c\xb3\x12\x0e\x1c\x24\x49\x39\xb4\x78\xc8\x6a\xe4\xbb\xdd\x4a\xe1\x11\xbc\x52\xcd\x8c\xb2\xb2\xf1\x89\x30\x7a\x0b\x71\xb7\x82\x6a\x5e\x3f\x7d\xef\x93\x1f\x70\x77\xe0\xc3\x7d\x8d\xaf\xb6\x14\x1a\xe6\xe4\x0b\xe8\x65\x2a\xa4\xca\x92\x1d\x00\x34\xf8\x53\x6a\xd1\x8f\x53\xa2\xdd\xd5\x01\x86\x42\x94\xf1\xa6\x6d\xde\x1c\x70\x96\x39\x75\x38\x52\xa8\x93\x1c\x6e\xbf\xdf\xf1\xfd\xd6\xe3\xdc\x5b\x7c\xd5\xba\xec\x33\x5b\xc4\xda\xa3\x21\xd2\x58\x2f\xe4\x49\xb6\xc5\x4a\x5f\x8d\x28\x5d\x32\x8c\xfe\x44\x38\x56\x9a\x20\xf9\x44\xc5\xa8\xab\x11\xd6\x91\xd6\x1d\xbf\xd3\x5b\x1e\xf4\xe4\x6d\x2e\xd4\xe2\x53\x4d\x7d\xe3\x1a\xd7\xcb\x41\xf4\xa5\x0b\xd2\x5d\xa2\x58\x31\x3b\x9c\x23\x87\xe8\x82\xcf\x38\x12\xa6\x22\xc7\x44\xa3\x37\x0e\xe8\x68\xa2\xdc\x55\xaf\x92\x6f\x10\x9b\xca\x22\x73\x75\xd0\x3a\xf7\x17\x15\x02\x2b\x3c\x12\xff\x2f\x78\xb1\x6e\xd1\xdb\xaf\xfc\x4f\x45\x26\x2a\x69\x59\x07\xb9\x0d\x62\x5d\xfa\x89\x5d\x83\x41\x5c\x83\xe0\x1a\x74\xae\xc1\xe8\xcb\x73\x27\xe7\xec\x1a\x44\x1b\x93\x6b\x90\x66\xef\x1a\xe8\x99\x7b\x73\x0d\x4a\x7d\x1b\x0d\x7e\xf8\x93\xbf\xfc\x68\x28\x3c\xd5\xda\xe4\x35\xf8\x8a\x98\x16\x8b\x92\xd7\xe6\xe3\x52\xb1\xb1\xaa\x70\xed\x31\x7a\xa9\xcb\x79\xe4\x40\x59\xc9\xb9\xdf\x29\xf8\xeb\xd5\xd4\x0b\x7f\x7d\xd7\x0f\xdb\x54\xa3\x74\xdc\x33\x75\xeb\x9d\x77\xac\x56\xf8\x38\xd7\xf9\xe6\xdc\x51\x59\xb1\x1f\x9f\xbe\xe2\xe3\xdf\x8f\xa7\xdf\x90\x36\xea\xdd\xab\xe5\x6e\x0f\x44\xe5\x16\xed\xae\x68\x6f\x57\x50\x8b\xcf\x44\xf8\xf6\xf8\xf0\xc7\x87\xa7\xcf\x1f\xbe\xdf\x5d\xfe\xdc\xb7\xee\xbf\x00\x00\x00\xff\xff\x97\x7b\x97\xad\x7a\x04\x00\x00") +var _runtimeSyntaxReadmeMd = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x74\x53\x4d\x8f\xdb\x36\x10\xbd\xf3\x57\x3c\x24\x87\xec\x0a\x82\x7c\xe8\x2d\xc7\x16\x69\xba\xc0\x66\x51\x20\xc9\x29\x08\x20\x9a\x1c\x89\x93\xa5\x38\x02\x39\xb2\x57\x3d\xf4\xb7\x17\x94\xec\xc2\x8b\x20\x27\x1b\xa3\x79\x1f\xf3\x66\xf8\x16\x9f\xd8\x65\x41\x59\x93\xda\x17\x04\x1e\x43\xe4\x31\x28\xa7\x11\x03\x47\x2a\xc6\x7c\x09\x54\x08\x36\x13\x34\xd0\xaf\x1b\x31\x48\xc6\x54\xc9\x3a\x7c\x11\x70\x2a\x6a\x63\xac\x98\xa9\xc5\x8f\xa5\xa8\x99\x17\xc5\xa5\x74\xa5\xd9\x91\x9c\xd0\xff\x7b\xe8\x9c\xa4\x81\xc7\xc3\xc6\x71\xd8\x1b\xfa\x6e\xd3\x5f\x77\x79\xfb\x4c\x09\x43\x96\x09\x4f\x36\x49\x8b\x32\x93\xe3\x81\x9d\x8d\x71\xdd\xeb\xdf\x34\x70\x41\xa6\x59\x0a\xab\xe4\xf5\xfb\x5d\x50\x9d\xcb\xfb\xc3\x61\x64\x0d\xcb\xb1\x73\x32\x1d\x8a\x93\xd9\xea\x3f\x87\x64\x93\x64\x77\xdf\x99\x57\x11\xec\x96\xaa\x9e\x8d\x93\x14\x05\x7b\x4a\x5a\x45\xa0\xb2\x09\xbf\x2b\x2d\xe8\xc5\xd1\xac\xdb\xcc\x45\x26\xc2\x33\xad\xf0\x3c\x0c\x94\x29\x39\x2a\xef\x8d\x69\x2e\xc9\x7a\xa1\x82\x24\x8a\xa5\x10\x7a\x76\x12\x25\xf7\x1d\x1e\x52\x51\xb2\xbe\xdd\x28\x2c\x9c\x2d\x54\x33\xa3\x54\x58\xf9\x44\x98\xac\xba\xd0\x6e\xa0\x9a\xd7\x4f\xdf\x87\x68\x47\xdc\xf5\xdc\xdf\xd7\xf8\x6a\x4b\xa6\x71\x89\x36\x83\x5e\xe6\x4c\xa5\xb0\x24\x03\x00\x0d\xfe\x94\x5a\xb4\xd3\x1c\xa9\xbd\x3a\xc0\x98\x89\x12\xde\x74\xcd\x9b\x1e\x67\x59\xa2\xc7\x91\x5c\x9d\xa4\xbf\xfd\x7e\xc7\xf7\x7b\x8f\x31\x6f\xf1\xb5\xd4\x65\x9f\x59\x03\xb6\x9e\xe2\x02\x4d\xf5\x42\x9e\x64\x5f\xac\x0c\xd5\x48\xa1\x4b\x86\xc1\x9e\x08\xc7\x4a\xe3\x24\x9d\x28\x2b\xf9\x1a\x61\x1d\x69\xdb\xf1\xbb\x72\xcb\x83\x81\xac\x2e\x99\x3a\x7c\xaa\xa9\xef\x5c\xd3\x76\x39\x08\x36\x7b\x27\xfe\x12\xc5\x86\x69\x71\x0e\xec\x82\x71\x36\xe1\x48\x98\xb3\x1c\x23\x4d\x56\xd9\xc1\xd3\x4c\xc9\x57\xaf\x92\x6e\x10\xbb\xca\x2a\x4b\x75\xd0\x19\xf3\x17\x65\x02\x17\x58\x44\xfe\x5f\xf0\x62\x5d\x83\xd5\x5f\xf9\x9f\xb3\xcc\x94\xe3\xba\x0d\x72\x1b\xc4\xb6\xf4\x13\x9b\x06\xa3\x98\x06\xce\x34\xf0\xa6\xc1\x64\xf3\xb3\x97\x73\x32\x0d\x82\x4e\xd1\x34\x88\x8b\x35\x0d\xca\x99\x07\x35\x0d\x72\x7d\x1b\x0d\x7e\xd8\x93\xbd\xfc\x14\x97\x79\xae\xb5\xd9\x16\x67\x2b\x62\x5e\x35\x48\xda\x9a\x8f\x6b\xc5\x86\xaa\xc2\xb5\x47\xe9\xa5\x16\x24\xb2\x67\x5d\xeb\x9e\x1e\xd9\x51\x2a\x64\xcc\xef\xe4\xec\xf5\x80\xea\xb1\xbf\x3e\xf1\x87\x7d\xc0\x49\x3c\x0f\x4c\x7e\x3b\x79\xcf\x45\x33\x1f\x97\x3a\xea\x92\x3c\xe5\x0d\xfb\xf1\xe9\x2b\x3e\xfe\xfd\x78\xfa\x0d\x71\xa7\x6e\x5f\xed\x79\x7f\x2b\x45\x6e\xd1\xe6\x8a\xb6\x7a\x05\x75\xf8\x4c\x84\x6f\x8f\x0f\x7f\x7c\x78\xfa\xfc\xe1\xfb\xdd\xe5\xcf\x7d\x67\xfe\x0b\x00\x00\xff\xff\x23\xf7\x65\x23\x85\x04\x00\x00") func runtimeSyntaxReadmeMdBytes() ([]byte, error) { return bindataRead( @@ -1766,7 +1767,7 @@ func runtimeSyntaxObjcMicro() (*asset, error) { return a, nil } -var _runtimeSyntaxOcamlMicro = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x7c\x92\xd1\x6e\xd4\x4a\x0c\x86\xef\xf7\x29\x46\xd3\x73\xb1\xad\xce\x02\xe2\x0e\x89\x82\x78\x0d\x9a\x82\xbc\x33\x4e\x62\x70\x3c\x2b\x8f\xd3\x6c\x16\xf3\xee\x28\x09\x8b\xa8\x40\x5c\x25\x91\xfe\xff\xb3\xf5\x39\x75\x16\x83\x73\x88\x25\xc1\xc0\x31\xc4\xe6\xc5\xc0\xf4\xfe\xbf\xb8\xbb\x19\x29\xef\x52\xe1\xa2\x41\x31\x87\xd8\xbc\x7d\xf8\x70\xf8\xf8\xf8\xf0\xea\xf0\x06\x0e\x97\xcf\x8f\xdf\x5e\xff\xff\xbd\x79\x17\x77\x37\x19\x13\x83\x82\x51\x91\xfa\xb3\xd0\x29\xa2\x2c\x95\x3d\xa3\xf9\x13\xb0\x0f\x68\x7d\xc9\x4e\xe2\x20\xd9\x15\x93\x9f\x94\x9e\xc0\xd0\x9f\x48\x6d\x04\xf6\x54\xa4\x9a\x02\x89\xdd\xae\xd8\x6a\x3a\x26\x1b\x15\x03\x19\x0e\xf5\xf9\x2a\x7b\x9b\x4f\xe8\xe5\x84\xe2\x89\xa1\x56\x1f\x4a\x1e\x19\x1d\xcf\x09\x4f\xcb\x26\x8e\x67\x43\x15\xe0\x0d\x76\x02\x5b\x3e\xaf\x94\x23\x8f\xb8\x62\xda\x51\xbc\x1d\x25\xad\x95\xf5\xa5\xa8\x0f\x60\xa9\x77\xd3\xd9\x27\xb2\xfe\x39\xe0\x30\x94\x4c\x2d\xa1\x5e\x51\x33\x32\x97\x69\x85\x41\xf5\xa9\x47\xf1\xd2\x2e\x9d\xb0\xbb\x49\x45\x32\xfd\xee\x25\xcd\xb0\x69\xa1\xd6\x6d\x89\x22\x57\xdc\x06\x1c\xb9\xa4\x6b\x6c\x80\x0e\xc5\x60\x4d\x1e\xb1\x23\x71\x94\xec\xe5\xf8\x05\x93\xf9\xe6\xc5\x2b\x75\xde\x16\xf5\xa9\x27\x46\xcf\xc5\x73\x11\x74\x5b\x9e\x93\x58\xd9\xa0\xab\x53\x10\xc3\x3f\x0f\x63\x3a\xa2\xb7\xf0\x6b\xfe\x26\xb0\xbe\x5c\x75\xfe\x25\x4f\x92\x78\xcc\xe8\x24\x3d\x2a\x99\x93\x90\x11\x30\x5d\x50\x37\x00\x9e\x4f\x1a\xfe\x61\x47\x70\x72\xc5\xd6\x87\xd1\xe0\xc8\xe8\x0c\x97\xd9\x97\x59\x6a\xae\x40\xd7\x3d\x52\x19\x06\x14\xbb\x02\xa6\x9e\x0c\x43\x35\x50\xbb\x8f\xcd\xbe\xb9\x8b\x01\x25\xdf\xc7\xe6\xae\xb9\xdd\x7e\x12\x92\xae\x86\xbd\x94\x30\x8c\x6c\xc4\x24\x18\x7a\x90\xcc\x24\x5d\x98\xd1\x6e\xaf\x27\x57\xea\x7a\x3b\x32\xa4\xaf\x21\xc6\x87\x4f\x4d\x7c\xbc\x8b\x71\xf7\x23\x00\x00\xff\xff\xa9\x3c\xab\x7f\xff\x02\x00\x00") +var _runtimeSyntaxOcamlMicro = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xac\x8e\x4f\x4b\xc4\x30\x14\xc4\xef\xf9\x14\x8f\x17\x0f\xbb\x95\x94\x7a\x12\x0f\x4b\x71\xfd\x83\x5e\x5c\xf1\x24\x24\x41\xde\xa6\x51\x0a\xf9\x23\x4d\x84\xee\xb7\x97\x46\x2d\x82\xb8\xb2\xe0\x21\x61\xc2\xcc\x2f\x33\x69\x17\x32\x8d\x80\xd1\x90\x77\x08\xa8\x6a\xef\xfa\xf6\x08\x19\xe3\x70\xf7\xe6\xb7\x76\x48\x8c\x73\xb8\x0d\xd9\xbe\x7c\x68\x0e\xeb\x3e\xd0\xb0\x63\x26\xba\x38\x80\x89\x21\x65\x0a\xb9\x0e\x25\x0d\x28\xda\x46\x6e\xd7\x5a\x36\x27\xd3\x79\xd2\x15\x16\x68\x63\x32\xb9\x7d\x4c\xdc\x68\xd9\x88\xd3\x72\xcd\xd4\xa5\x35\xbd\xdf\xc7\xa9\x4e\xaa\x6e\x8e\xdf\xd8\x91\xba\xbf\x90\x46\x8e\x8f\x53\xcb\x19\x89\xe7\x73\x71\xfd\x4d\x7e\xfe\x03\x0f\x96\xdc\x61\xf5\xf5\x97\x58\x48\x7b\xa5\xe5\xb1\xd0\x3f\x9c\x65\xfb\x5f\x1b\xeb\xdf\x8c\x85\x7c\xbd\x2f\xe5\x07\x93\xd3\x38\xc6\xe1\x22\x7a\x6f\x43\x4e\xf3\xb0\xf2\x84\x94\x69\xc8\x2b\x54\x0b\x55\x21\xd8\xd0\xad\x50\x55\x6a\x89\xec\x3d\x00\x00\xff\xff\x0b\x52\x29\x30\x3d\x02\x00\x00") func runtimeSyntaxOcamlMicroBytes() ([]byte, error) { return bindataRead( @@ -1786,7 +1787,7 @@ func runtimeSyntaxOcamlMicro() (*asset, error) { return a, nil } -var _runtimeSyntaxPascalMicro = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x84\x54\xc1\x6e\x23\x37\x0c\xbd\xfb\x2b\x8c\x69\x80\xd8\x09\x92\xed\xa1\x28\xd0\x05\x16\x41\x2f\x3d\x15\xfd\x81\xd8\x2d\x38\x12\xc7\xc3\x46\x23\x0a\x24\x27\xb6\x77\xd9\x7f\x2f\xa4\x71\x52\xb7\xc5\x62\x81\x81\xf4\x44\x3d\x8c\xf4\x1e\x29\xea\x39\x1b\x9c\xd6\x5d\x01\x0d\x90\xba\x75\xb7\x7b\x2c\xa0\x37\xdd\x6a\xf5\xdd\x3a\x70\x62\x59\x53\xc4\x6c\x34\x10\xca\xba\xdb\xf5\xcf\xbb\xf2\xeb\x1f\xfb\x36\xee\xca\x6f\xfb\xbb\x5d\xdf\xad\x56\x0b\x31\xf0\x34\x61\xb6\x75\xf7\xe1\xc3\xe3\x5d\xf7\x9f\xa0\x1a\x88\x7d\xea\x76\x9b\xdd\x5d\xb7\xc6\x1c\x3f\x75\xbb\xbb\xdd\xf6\x2b\xac\xcd\x97\xed\xe6\xe9\xe3\xf3\xef\x37\xfb\xed\x85\xfc\xd7\xfb\x29\x5a\x30\x10\xa4\x37\x2a\xe8\x74\xa1\x60\x8e\xef\x24\x3b\x17\xac\xb7\xdd\x3c\xd1\xc7\x8d\x9a\x50\x3e\x38\x64\xa5\x0b\x3c\x52\xc4\x0b\xd4\x91\xc5\x2e\x38\x8c\x20\x8d\xd6\x40\x25\x35\xd0\x33\x27\x84\xec\xfd\xd9\x70\xe1\x53\x36\x3f\xb2\x44\xd7\x09\x52\xaa\xab\xc4\xf9\xd0\x22\x01\x24\x52\x86\xd4\x22\x75\x87\xb2\xe1\x01\xa5\xce\x3f\xfe\xe0\x4a\xf9\x90\xd0\xc3\x2c\x82\x39\x9c\x3d\xf2\xdc\x27\x74\x3c\x19\xe6\x88\x71\xbb\xbd\xf2\x53\x0d\x0c\x17\x47\x2f\x4a\x20\x47\x07\x9d\x1c\x44\xe0\xec\x3d\x1e\x28\x7b\x2f\x08\x2f\x1e\x40\xd1\x03\x67\xb5\x65\x94\x39\x18\x4b\xc5\x46\x79\x46\x6f\x7a\x97\x58\xa4\x57\x8f\xec\x91\x8f\xd9\xd8\x31\x29\x3a\xe6\xe8\x03\x25\xf4\x81\xc5\x87\x39\x07\x23\xce\x7e\x60\x63\xa7\xc1\x69\x2a\xa9\xdd\x03\x5a\x98\xea\x97\x28\x63\x93\x26\x03\x04\xf4\x04\x3d\x26\x9f\x38\x7a\x66\x73\xee\xff\xc4\x60\xce\x83\x73\x76\x2e\x28\x50\xcf\x65\xf1\x02\xe1\x05\xa3\x17\xe1\x80\x71\x16\xac\xe8\x20\x30\xb9\x60\xa8\xe6\x09\x16\x04\x73\x41\xe5\x59\xc2\x7b\x8a\xd0\x5c\xc7\xe4\x3a\x8a\xdb\x88\xd9\x8d\xbd\x26\xd8\xe7\x4c\xe6\x73\x36\x4a\x3e\x2b\xaa\xbf\xd6\xac\x8d\x55\xc7\x91\x6c\xf4\x13\xcb\xe2\xe7\x57\xed\x54\x0f\x09\x54\x3d\x92\x16\xae\x3e\x9c\x02\x16\x73\x3c\x51\x1d\x4a\xad\x0c\x1f\x6a\x36\xe9\xf3\xa2\xbd\x2d\xd2\xd9\x29\x8f\x28\x64\x18\x9d\x32\x19\xfd\x43\x20\xf5\x44\xbd\x80\x9c\x3d\xe3\xb1\xe9\x9f\xad\xca\x2c\x28\x76\x76\x01\x52\x74\xc5\x34\xb8\x8d\x82\x10\xeb\x95\x4d\xce\xdf\xb8\x67\xaf\x9c\x66\x43\x87\x5e\x4d\x20\x98\x43\x22\x50\x07\x55\x9c\xfa\x84\xe2\x21\x62\x48\x1e\x4a\x69\x73\xc4\x01\xe6\xf4\x26\xa1\x15\x97\xd4\x92\x1c\x58\x8e\x20\xd1\x0f\x98\x51\x28\x38\xe5\x88\x27\x4f\x1c\x20\x79\x86\x09\x3d\xb3\x1a\x84\x97\x41\xea\x82\x53\x1c\x4a\x08\x90\x92\xf3\x2b\x8a\x50\x44\x5f\xba\x84\x17\xa1\x57\xb0\x96\x3e\xc3\x50\x6d\x28\x73\x9f\x28\x2c\x93\x8e\x58\x53\x09\x75\x38\x90\x1a\x8a\x0b\x52\x36\xe1\x38\x07\x74\x85\x01\xdb\x5f\x95\x07\x1b\x12\x83\xf9\xe5\x4d\xd3\x67\x74\xb5\xd8\x36\x5f\x49\x6c\x86\xe4\xc7\x6a\xf3\xbf\x9e\x45\xab\x6f\xb8\xb2\x67\x80\x5a\xc3\x26\x33\x7a\xa6\x74\x6d\xe5\x15\xf5\xe6\xf9\xfb\x87\x9f\x7e\x7e\xf8\x05\x1e\x86\xfd\x7d\xd7\x3a\xd9\xfd\xc3\xfe\xa9\x46\xf7\xf7\x9b\xe7\xc7\x37\xb8\x7d\xaa\xff\xc4\xab\xcd\xed\xd3\xff\x8e\x7e\x5c\x2a\x73\xdd\xdd\xb6\x36\x75\xbb\xbf\xf7\xdb\xdb\xed\xdd\x6d\xb7\x5a\xbd\x51\x8b\x60\x2d\xf3\xb7\x36\xf5\x65\x77\xf3\xde\xc9\xfe\x0e\x00\x00\xff\xff\xcd\x7c\x71\x03\x73\x05\x00\x00") +var _runtimeSyntaxPascalMicro = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x84\x54\xed\x6e\xe4\x36\x0c\xfc\x9f\xa7\x58\xf8\x02\xec\x47\x9a\x5c\x0b\x14\x05\x7a\xc0\x61\xd1\x3f\xfd\x55\xf4\x05\xe2\x6d\x41\x4b\xf4\x9a\x8d\x4c\x09\x14\xbd\xbb\x6e\x78\xef\x5e\x48\xde\xa4\xb9\x2b\x82\x02\x86\x34\xa2\xc6\x32\x67\x48\x39\xcf\xac\x70\x59\x35\x09\xb2\x83\xd0\xac\x9a\xf6\x21\x41\xbe\x6d\x6e\x6e\x3e\xac\x5c\x0c\x51\x56\xe4\x91\x95\x7a\x42\x59\x35\x6d\xf7\xd8\xa6\xdf\xfe\x3c\xd4\xb1\x4d\xbf\x1f\x76\x6d\xd7\xdc\xdc\x2c\x44\x9d\x13\x16\xca\x66\x4f\x9f\x36\x59\x85\xf8\x68\xc0\x99\xae\xf0\x4c\x1e\xaf\x30\x0f\x51\xf4\x8a\xdd\x00\x52\x69\x15\x14\x52\x05\x5d\x8c\x01\x81\xad\x9b\x15\x17\x3e\xb1\xda\x39\x8a\xb7\x3c\x42\x08\x65\x15\x22\x1f\x6b\xc4\x81\x78\x62\x08\x35\x52\x76\x88\x15\x8f\x28\x65\xfe\xe9\x47\xcb\xc4\xc7\x80\xe6\x26\x11\x64\x37\x9b\x8f\x53\x17\xd0\xf0\xa2\xc8\x1e\xfd\x76\xfb\x46\x44\x56\x50\x1c\x91\xf5\x55\x09\xb0\x37\xc8\xa3\x81\x08\xcc\xd6\xe1\x91\xd8\x3a\x41\x78\x32\x07\x19\xcd\x45\xce\xba\x8c\x32\x39\x8d\x52\xb0\x12\x4f\x68\x55\xef\x12\xf3\x74\x32\x1f\xcd\xc7\x33\x6b\x34\x0c\x19\x0d\xd9\x5b\x4f\x01\xad\x8f\x62\xfd\xc4\x4e\x29\xb2\x1d\xa3\x46\xa3\xde\x68\x4c\xa1\xe6\x01\x35\x4c\xe5\x09\xc4\x58\xa5\x49\x0f\x0e\x2d\x40\x87\xc1\xc6\xe8\x8d\xa3\x5a\xec\xfe\x42\xa7\x16\x7b\x8b\x6c\x31\xa1\x40\xf9\x6e\x14\x4b\xe0\x9e\xd0\x5b\x92\xe8\xd0\x4f\x82\x05\x1d\x05\x46\x13\x74\xc5\x3c\xc1\x84\xa0\x26\x98\xe3\x24\xee\xb5\x44\xa8\x96\x87\x60\x79\x10\xd3\x01\xd9\x34\x5a\x29\xb0\x4d\x4c\x6a\x13\x2b\x05\x9b\x32\x66\x3b\x95\xaa\x0d\x45\xc7\x99\x74\xb0\x4b\x94\xc5\xcf\x77\xed\xcc\xe6\x02\xe4\x6c\x9e\x72\x8a\xc5\x87\x8b\xc3\xa4\x86\x17\x2a\x43\x2a\x9d\x61\x7d\xa9\x26\xfd\xbd\x68\xaf\x8b\x30\x1b\xf1\x80\x42\x8a\xde\x88\x49\xe9\x5f\x02\x65\x0b\xd4\x09\xc8\x6c\x8c\xe7\xaa\x7f\xd2\x22\x33\xa1\xe8\x6c\x02\x94\xd1\x32\x86\xde\x74\x10\x04\x5f\x52\x56\x99\xff\x27\xcf\x2e\xc7\x30\x29\x1a\x74\x59\x05\x9c\x1a\x04\x82\x6c\x90\x33\x8e\x5d\x40\x31\xe7\xd1\x05\x73\x29\xd5\xd9\x63\x0f\x53\x78\x91\x50\x9b\x4b\x4a\x4b\xf6\x51\xce\x20\xde\x8e\xc8\x28\xe4\x8c\xd8\xe3\xc5\x42\x74\x10\x8c\x61\x44\xe3\x98\x15\xdc\x53\x2f\x65\x11\x83\xef\x93\x73\x10\x82\xc5\x13\x8a\x90\x47\x5b\xae\xa6\x25\xa1\x13\x68\x2d\x9f\xa2\x2b\x36\xa4\xa9\x0b\xe4\x96\x29\x0f\x58\x4a\x09\x65\x38\x52\x56\x14\x13\x24\x56\x89\x7e\x72\x68\x19\x7a\xac\xa7\xe6\xd8\x6b\x1f\x22\xa8\xe5\x84\xae\x9a\x88\x96\xd5\xd7\xcd\x13\x89\x4e\x10\xec\x5c\x6c\xfe\xea\x5a\xd4\xfe\x86\x37\xf6\xf4\x50\x7a\x58\x65\x42\x63\x0a\x5f\x5f\xa1\xe5\xe0\xe2\xa9\xe8\xe7\x06\xf2\xd8\xac\x90\xfd\xe7\x06\xd9\xff\xe7\xc0\x07\x9e\xc6\xae\xfe\x5a\x6e\x1f\xbf\xbf\xff\xf9\x97\xfb\x5f\xe1\xbe\x3f\xdc\x35\xf5\x5f\x73\x77\x7f\xd8\x97\xe8\xe1\x6e\xf3\xf8\xf0\x02\xb7\xfb\x92\x00\xbe\xd9\xdc\xee\x9b\x6f\x4f\x5d\xba\x78\xd5\x7c\xa8\x8c\xe7\x1f\xbe\xfb\xf2\x2e\x65\xbd\xd9\x7f\x7a\xfc\x63\x7d\xb8\xb3\xf5\x7a\xbb\x5b\xbf\x66\x98\x04\xcb\x9d\x79\x91\xf1\xdc\xde\x5e\x65\x7c\x79\x23\x62\x5c\x7a\xe6\xe3\xc7\x87\x5d\xf3\x4d\xf0\xfa\x5e\xbb\x69\x77\xd7\x17\xdb\x5d\xbb\x7d\x87\xb5\x79\xde\xd6\x34\x6e\x0f\xdb\xd7\xaf\xfc\x13\x00\x00\xff\xff\xda\x99\x50\x5b\x9b\x05\x00\x00") func runtimeSyntaxPascalMicroBytes() ([]byte, error) { return bindataRead( @@ -1946,7 +1947,7 @@ func runtimeSyntaxPoMicro() (*asset, error) { return a, nil } -var _runtimeSyntaxPonyMicro = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x7c\x93\x4f\x73\x9b\x3c\x10\xc6\xef\xf9\x14\x44\x93\xf7\x35\x90\x62\xbb\xa7\x4e\x32\x26\x9e\xcc\xb4\xbd\xe6\xd2\x53\x10\xf1\x08\xb1\xc4\x6a\x41\xf2\x48\x8b\xff\x74\x9e\x0f\xdf\xc1\x21\x9d\x34\xb5\x7b\x42\xda\xfd\xed\xc3\xf2\xec\x12\x0e\x96\xd5\x3e\x12\x1b\x67\x0f\x22\x12\x72\x3a\x1c\xae\xc4\xc5\x85\x76\xad\xf3\x51\x60\xc5\xd4\x91\xe5\x48\xc8\x2a\xe6\xc3\x86\x60\x2c\x93\x6f\x94\x26\xb0\x57\x86\xb1\xf1\xa6\x33\x6c\xb6\x04\xdd\xaa\x10\x10\xd8\xf7\x9a\xa1\x34\x3b\x9f\xc8\x4a\x9c\x54\xd2\xae\xdb\x98\x96\xfc\xca\x58\xf6\xc6\x06\xa3\xcf\xa2\x7d\xa0\xb3\xb9\xad\xf2\x68\x89\x41\x5d\x45\xf5\x59\xca\xd2\x0e\x15\xa1\xe9\xed\x59\xc4\x04\x07\xf6\x16\x9e\x1a\x6c\x55\x8b\xca\xed\xc1\xea\x19\xda\xd9\xd0\x77\xe7\x1b\xa8\x3c\xa9\x1f\x03\xc5\xc6\xf6\x04\x4f\xdc\x7b\x0b\xf2\xfe\x1f\xdf\x6e\x1a\xf0\x9a\x2c\xa8\x0d\x64\x9a\xe3\x03\x64\x6b\x74\x8a\xf5\x1a\xbb\x35\xf9\xc1\xda\x03\x76\x86\xd7\x50\x01\x9e\xb4\xdb\x92\x87\xab\xbe\x93\x66\xb4\xaa\xab\x6a\x35\x24\x6a\xf3\x4c\x81\x5d\x03\xd3\xd4\xd4\x9c\x7d\xdf\x6e\x6d\x5a\x42\xed\xe0\x69\x43\x8a\xd1\x5b\x36\x2d\x1a\xe7\x61\x5e\x0c\xf9\xbb\x2a\x96\x4b\xe4\x77\xc9\x09\xbd\x58\x4a\x40\xca\xff\x21\xe5\x07\x48\xf9\x94\x9c\x2e\xcf\x20\xaf\x21\x65\x8a\x19\xe4\x25\xfe\xc3\x62\x81\xbb\xd3\x7a\x79\x8e\xcb\x1c\x8b\x1c\x77\x39\x16\x38\xc9\x1c\xe7\x03\x13\x2c\xc3\x3a\x86\xb2\x35\x9c\xc7\x7e\xb4\x78\xe4\x87\xdd\x3c\xa2\xab\xb4\xb8\xcf\x1e\xcb\x62\xa5\xb2\x9f\xf7\xd9\xe3\x3c\xbb\x91\x72\x52\xa6\x6f\xd9\x61\xaa\xac\x5e\x97\x7a\x6d\xc2\x1b\xef\xfe\xcc\xf9\x9e\xd0\xa8\x76\x5c\xc1\x77\xc8\xd4\xf6\x5d\x45\xfe\x48\xc6\xf3\xaa\x98\x67\x1f\x57\x65\x9a\x20\x9e\xbb\x62\x9e\x7d\x1a\xcf\xfb\x62\x9e\xdd\xa8\xac\xb9\xcf\xbe\xbe\x44\x86\xfb\xaa\xbc\x8e\xa5\x9c\x8e\xc7\x64\x19\xc7\x84\x2f\x49\x2c\xe5\x35\xb2\x64\xf9\x3b\x9c\x9c\x68\x6c\x1a\x86\x3f\xe6\x39\x12\xc3\x2c\xa6\x28\x9e\x44\x99\xa4\x02\x93\xf1\x36\x29\x93\x74\xf2\xa6\xd5\xee\xe8\x61\x60\xe5\x39\x17\x42\x88\x78\x28\xc0\x55\x22\x22\xb2\xf5\x31\x22\xde\xb1\x22\x7e\x42\x51\xdc\x86\x8d\xd2\x74\x5b\x96\xc9\x6c\x36\x4d\xdf\x33\xa3\xde\x4c\xa6\xa3\x8e\x4c\x67\xaf\x0c\xbb\xda\x45\xe2\xdb\xc3\xe7\x87\xdb\xa5\xb8\xf8\x15\x00\x00\xff\xff\xe7\x85\xf0\x1d\x61\x04\x00\x00") +var _runtimeSyntaxPonyMicro = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x7c\x93\x4f\x6f\x9b\x4c\x10\xc6\xef\xf9\x14\x64\xf5\xbe\x2d\x90\x62\xbb\xa7\x2a\x91\x89\x15\xa9\xed\x35\x97\x9e\xc2\x12\x6b\x81\x21\xde\x16\x76\xad\xd9\xc1\x7f\xaa\xe7\xc3\x57\x38\x4e\x95\xa6\x76\x4f\xcc\xee\xfc\xe6\x61\x78\x66\x08\x7b\x27\x66\x17\xa9\xb5\x77\x7b\x15\x29\x3d\x19\x83\xff\xd4\xc5\x45\xed\x3b\xcf\x51\x10\x23\xd4\x93\x93\x48\xe9\x2a\x96\xfd\x9a\x60\x9d\x10\xb7\xa6\x26\x08\x1b\x2b\x58\xb3\xed\xad\xd8\x0d\xa1\xee\x4c\x08\x08\xc2\x43\x2d\x30\xb5\x78\x4e\x74\xa5\x4e\x2a\xd5\xbe\x5f\xdb\x8e\x78\x69\x9d\xb0\x75\xc1\xd6\x67\xd1\x21\xd0\xd9\xdc\xc6\x30\x3a\x12\x50\x5f\x51\x73\x96\x72\xb4\x45\x45\x68\x07\x77\x16\xb1\xc1\x43\xd8\x81\xa9\xc5\xc6\x74\xa8\xfc\x0e\x62\x9e\x50\x7b\x17\x86\xfe\x7c\x03\x15\x93\xf9\x31\x52\x62\xdd\x40\x60\x92\x81\x1d\x88\xf9\x1f\xdf\x6e\x5b\xc8\x8a\x1c\xa8\x0b\x64\xdb\xc3\x03\xe4\x1a\xf4\x46\xea\x15\xb6\x2b\xe2\xd1\xda\x3d\xb6\x56\x56\x30\x01\x4c\xb5\xdf\x10\xc3\x57\xdf\xa9\x16\x74\xa6\xaf\x1a\x33\x26\x1a\xfb\x44\x41\x7c\x0b\xdb\x36\xd4\x9e\x7d\xdf\x76\x65\x3b\x42\xe3\xc1\xb4\x26\x23\x18\x9c\xd8\x0e\xad\x67\xd8\x67\x43\xfe\xae\x8a\xf5\x02\xf9\x6d\x72\x42\x2f\xd6\x80\x7e\x07\xfd\x01\xfa\x31\x39\x5d\x9a\x41\x5f\x41\xa7\x98\x42\x5f\xe2\x7f\xcc\xe7\xb8\x3d\x2d\x95\xe7\xb8\xcc\x31\xcf\x71\x9b\x63\x8e\x93\xcc\x61\x34\xb0\xc1\x09\x9c\x17\x18\xd7\xc0\x33\x76\x47\x77\x8f\xfc\xb8\x96\x07\x74\x99\x16\x77\xd9\x43\x59\x2c\x4d\xf6\xf3\x2e\x7b\x98\x65\xd7\xfa\x7d\x99\xbe\x46\xc7\x79\x8a\x79\x59\xe7\x95\x0d\xaf\x5c\xfb\x33\xc7\x03\xa1\x35\xdd\x71\xf9\xde\x20\x13\x37\xf4\x15\xf1\x81\x8c\x67\x55\x31\xcb\x3e\x2e\xcb\x34\x41\x3c\xf3\xc5\x2c\xfb\x74\x8c\x77\xc5\x2c\xbb\x36\x59\x7b\x97\x7d\x7d\xbe\x19\xcf\xcb\xf2\x2a\xd6\x93\x63\x94\x2c\xe2\x98\xf0\x25\x89\xb5\xbe\x42\x96\x2c\x7e\x5f\x27\x27\xfa\x9a\x84\xf1\x57\x79\x8a\x94\x8a\xb5\x9e\xa0\x78\x54\x65\x92\xaa\x57\xbd\xf5\x07\xcf\x82\x18\x96\x5c\x29\xa5\x46\x22\x55\x11\xb9\xe6\x70\x54\x6f\x40\x15\x3f\xa2\x28\x6e\xc2\xda\xd4\x74\x53\x96\xc9\x74\x3a\x49\xdf\x32\x47\xb1\xa9\x7e\xd1\xd1\xe9\xf4\x85\x11\xdf\xf8\x48\x7d\xbb\xff\x7c\x7f\xb3\x50\x17\xbf\x02\x00\x00\xff\xff\x73\xdb\x33\x74\x49\x04\x00\x00") func runtimeSyntaxPonyMicroBytes() ([]byte, error) { return bindataRead( @@ -2286,6 +2287,26 @@ func runtimeSyntaxSlsMicro() (*asset, error) { return a, nil } +var _runtimeSyntaxSolidityMicro = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x84\x54\x61\x6f\xdb\x48\x0e\xfd\xee\x5f\xc1\xb3\xef\xae\xb6\x93\xd8\x69\x8b\x2b\x70\xb9\x5e\x03\x5f\xae\x69\x03\xb4\x49\x90\x38\x28\xb2\xb6\xbb\xa0\x66\x28\x6b\x90\xd1\x8c\xc0\x19\x59\x51\x41\xec\xef\xda\xef\xfb\xc7\x16\x63\xb9\xad\xd1\x6d\x77\xbf\x48\x94\x44\x3e\xbd\x47\x3e\xce\x00\x6e\xbd\x35\xda\xc4\x16\x42\xeb\x22\x3e\x42\xee\x19\xde\x1b\xc5\xbe\x37\x80\x33\x5f\xb5\x6c\xd6\x45\x84\xe1\xd9\x08\x9e\x1d\x3f\x7d\x01\x70\x69\x94\xb7\x68\xe0\xf6\xb7\x5f\x33\xcf\xeb\xde\xa0\x37\x80\x79\x61\x02\x54\xec\xd7\x8c\x25\x98\x00\x39\x13\x41\xf0\x79\x6c\x90\xe9\x04\x5a\x5f\x83\x42\x07\x4c\xda\x84\xc8\x26\xab\x23\x81\x89\x80\x4e\x4f\x3d\x43\xe9\xb5\xc9\xdb\xde\x20\xbd\xaa\x9d\x26\x86\x58\x10\x44\xe2\x32\x80\xcf\xb7\x0f\x6f\x2e\xef\xe0\x0d\x39\x62\xb4\x70\x5d\x67\xd6\x28\x78\x67\x14\xb9\x40\x80\x01\xaa\xf4\x26\x14\xa4\x21\x4b\x30\xa9\xe0\x3c\x31\xb8\xdd\x31\x80\x73\x5f\x3b\x8d\xd1\x78\x77\x08\x64\x62\x41\x0c\x1b\xe2\x60\xbc\x83\xe7\x9f\x7f\xb1\xc3\x3b\x04\xcf\xbd\x01\x0c\x31\x26\xda\x0c\xbe\x4a\x65\x23\x40\xd7\x82\xc5\xf8\xb5\x72\xf2\x5d\xe5\x5f\x05\x6a\x30\x6e\x0b\x5c\xf8\x8a\x20\x16\x18\x93\xbe\xc6\x58\x0b\x19\x41\x1d\x28\xaf\xed\x61\x6f\x00\x59\x1d\xe1\xc3\xc5\xfc\xed\xd5\xdd\x1c\x66\x97\xf7\xf0\x61\x76\x73\x33\xbb\x9c\xdf\xff\x07\x1a\x13\x0b\x5f\x47\xa0\x0d\x75\x48\xa6\xac\xac\x21\x0d\x0d\x32\xa3\x8b\x2d\xf8\xbc\x37\x80\xf7\xaf\x6f\xce\xde\xce\x2e\xe7\xb3\xff\x5d\xbc\xbb\x98\xdf\x83\x67\x38\xbf\x98\x5f\xbe\xbe\xbd\x85\xf3\xab\x1b\x98\xc1\xf5\xec\x66\x7e\x71\x76\xf7\x6e\x76\x03\xd7\x77\x37\xd7\x57\xb7\xaf\x27\x00\xb7\x94\x48\x51\x6f\xf0\x67\xbd\xcd\xb7\xd3\x61\x02\x4d\x11\x8d\x0d\x9d\xe6\x7b\x5f\x43\x28\x7c\x6d\x35\x14\xb8\x21\x60\x52\x64\x36\xa4\x01\x41\xf9\xaa\xfd\xeb\x99\xf5\x06\x80\xd6\xbb\xf5\x56\x21\xc4\xbd\x16\x4e\x00\x2e\x72\x70\x3e\x1e\x42\x20\x82\x97\x45\x8c\xd5\xc9\x74\xda\x34\xcd\x64\xed\xea\x89\xe7\xf5\xd4\x76\x18\x61\xfa\x6a\xd2\xeb\xed\x3c\xdb\x0f\x3b\x13\xf7\xa1\xbf\x9c\x04\x6f\xff\xde\xef\xf5\x94\xb7\x9e\xa1\x62\xaa\xd8\x2b\xe8\x2f\xb3\xa1\xf2\x2e\x32\xaa\x28\xd6\x64\x8c\xdc\x4a\xc5\xb8\x2e\x71\xb4\xcc\xfa\xbb\x6c\xe5\x5d\x88\xe8\xe2\xc4\xd5\x65\x46\x9c\xaa\x16\x47\xab\xd3\xe1\xe2\xf8\xe8\xdf\xab\x03\x39\x7e\x4c\x01\x1e\xe5\xb3\xa3\xf3\xd5\xc1\x5e\x9d\xd1\xe4\xa2\xc9\x4d\x2a\x59\xe0\xd1\xa7\xd9\xd1\x4f\xab\xc5\xcf\x5d\x90\x4a\xc7\x8b\xc5\x49\xa8\x50\xd1\xc9\x6a\x35\xfe\xc2\x2d\x44\x8c\x54\x92\x8b\x5b\x76\x18\x02\x95\x99\x6d\x25\x63\xc2\x07\x49\x64\x8d\xab\x49\xb4\x97\xdc\xb3\xe4\xb5\x53\xc9\x8a\x62\x72\x21\x1b\x48\x1c\x35\xc2\x14\x6b\x76\xbb\x5b\x90\xa6\x30\x96\xf6\x68\x85\x8a\x94\x41\xbb\x85\x5f\x4e\x02\x39\x2d\xb1\x60\xdf\xa4\x14\x18\x40\x89\x0f\x04\xa1\xe6\xad\x13\x5a\x48\x9b\xb2\x21\x6e\x61\x63\x82\xc9\x2c\xed\x40\x1e\xa8\x6d\x3c\xeb\x8e\xa3\xf3\xae\x2d\x7d\x1d\xe4\x73\xa7\xc4\x38\x4d\x8f\xa4\xa5\xc2\x16\x33\x4b\xb2\x5d\x46\x25\x15\x9b\x0d\x46\x12\x7a\x8c\xc4\x0e\xad\x18\xd7\x05\x5b\x7a\xdf\xb4\x7b\x8b\x9d\x59\xaf\x1e\x86\xcb\x49\x17\x14\x18\x0a\x51\xde\xb8\x0c\x03\x89\x36\x79\x6e\x54\x6d\x63\x2b\x6b\x0c\xd6\x94\x26\x4a\x37\x22\x89\xa6\xa4\x10\xb1\xac\x46\xa3\x53\x29\xc3\x3a\x21\x68\x8c\x98\x12\x25\x49\x26\x96\x0d\xda\x9a\xd2\x77\xe7\x1b\x89\x8f\x29\x65\x8d\xa1\x62\xa3\x48\x3c\x9b\xb5\x71\xa3\xd1\xe9\x77\x6c\xb0\xe5\xf5\x40\x4a\xe1\xc3\xb3\x7f\xbd\x90\x50\xe0\xf3\x74\x49\x31\x9b\x8a\x4a\xfd\xf4\xc5\xb1\x90\x62\x52\x7e\x43\x2c\xa8\x75\xe9\xb5\x94\xb5\x4d\xb7\xe4\x6b\x09\x75\x45\x2c\x81\x6c\xae\x29\x44\xae\x55\x94\xe5\x24\x43\x8b\x4e\xd1\x0f\x3b\x11\xb9\x26\xc9\xd1\x06\xfa\x11\xa7\x86\x8c\x84\x4f\x98\x79\xc9\x8d\x73\xd4\x0a\xa5\x43\x4d\x02\x29\xef\x74\x90\xd2\xb8\x3a\x52\x90\xc2\xd7\x1c\x44\x63\x1b\xa4\x21\x7a\x08\xd2\x12\x72\xd8\x03\x8d\x6d\x45\xdd\x60\xb5\x66\x0a\x41\x32\xef\xad\x94\x58\x55\xc6\xad\x25\x1d\x65\x6e\x2d\x1b\xe4\x34\xbd\xe1\x52\x8f\x47\x52\x7f\x89\xb2\x36\x52\x17\xe5\xe6\x91\xf4\xee\xf3\xd7\x78\x5f\x1e\x31\x7b\xee\x7e\x94\x85\x6e\x07\x31\x8f\xc4\xa2\xd2\x74\x15\x46\x55\x88\xa6\x1c\x6b\x1b\x93\xa2\xad\x5d\xc4\x38\x6b\x1c\x75\xc6\xc9\x51\x91\x58\x8a\x52\x6e\x73\x5d\x6d\xad\xf8\x5c\xaa\x9a\x49\x98\xac\x57\x18\xb7\xee\x4b\x2b\x65\x94\x84\xc6\xa4\xb4\xc8\xad\x24\x89\xdb\x8b\xcf\x65\x63\xa8\xd9\xa7\xe5\x2b\x62\x8c\x89\xd9\xe2\xe8\x60\x3a\xfe\xef\xcb\x57\x7f\xfb\xe5\x1f\xa7\x27\xff\x94\xd5\xde\x60\xca\x6e\x43\x87\x1f\x65\x6f\x89\x47\xd3\xe9\x64\xdc\xff\x36\x67\xba\x1c\x4f\x0e\x96\xe3\xe9\x97\xf6\x7a\xed\xa1\x3f\xbf\xfa\xff\xd5\xc9\xe9\x1f\x8e\x98\xae\xbb\xd0\xef\x0f\x97\xcb\x89\x2c\x3e\xf6\x57\xa3\x71\x5f\x9e\xec\x9e\x9e\xac\x46\xe3\x27\xfd\xde\xef\x01\x00\x00\xff\xff\x6e\xf9\x54\x37\xa0\x07\x00\x00") + +func runtimeSyntaxSolidityMicroBytes() ([]byte, error) { + return bindataRead( + _runtimeSyntaxSolidityMicro, + "runtime/syntax/solidity.micro", + ) +} + +func runtimeSyntaxSolidityMicro() (*asset, error) { + bytes, err := runtimeSyntaxSolidityMicroBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/syntax/solidity.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeSyntaxSqlMicro = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\x6c\x54\x6b\x6f\xdb\xb8\x12\xfd\xdc\xfc\x0a\x41\xb7\x40\xf3\xb8\x0d\xee\xd7\x5b\x14\xf7\x82\x16\x47\xf2\x6c\x28\x52\x25\x29\x3f\x1a\x67\x5b\xc5\x16\x6a\x63\xe5\x47\x2d\x79\xdb\x02\xe7\xc7\x2f\x28\x27\xbb\x69\x6d\x03\xd6\x9c\xe1\xcc\x39\xa3\xe1\x50\x6c\x7f\x6c\xba\xea\x7b\x14\xb7\x5f\x9b\x38\x8a\x67\xb7\xed\xd7\xe6\x75\xdc\xbb\xab\xae\xde\xcf\x5f\xc7\x17\x17\xf3\x1f\xd5\x26\xba\x5c\x5d\x45\xf1\xec\xfd\xa5\x50\x0a\xc2\x25\x10\x0e\x42\x79\xb2\x10\x5a\x42\x48\x09\x51\x7a\xf3\x89\x75\x62\x29\x27\xed\xaf\x66\xff\x8b\x7f\x26\x0e\xc8\x8f\x89\x34\x06\xac\x85\x9d\x62\x60\xfc\x10\x83\x60\x8d\x22\xa1\x4f\xf3\x93\xa1\xd0\x19\x21\x19\x52\x72\x87\xc4\xa8\x32\xd7\xee\xc9\x22\xb1\xc6\x39\x24\x96\x84\xa7\x53\xa6\x14\x5e\x0c\x84\x23\x87\x67\xd4\x03\x48\x52\x62\x4a\x12\x92\x5c\x62\x79\x40\x3d\x80\x64\xe7\x59\x27\x3e\x84\xc9\x13\xa4\x35\x05\x24\xa5\xa2\x54\x67\xba\x20\x9d\x28\xe3\x48\x82\x5c\x22\x8a\x60\x27\xec\xbc\x03\x4d\x0a\x25\xf8\x4c\x1b\x29\x93\x92\x0e\xbd\x41\xaa\x4a\x37\x44\x6a\x6c\xf8\x13\x67\x1a\x69\xa9\x13\xcf\x46\x23\xb5\x26\x3f\x65\x67\xd6\x94\x05\x32\x2b\xb4\xc7\x50\x8c\x58\x67\xa7\x39\x9c\x69\x63\x09\xac\x25\x4d\xc0\x3a\x65\x15\x1c\x47\xd6\x83\xb5\x26\x0b\xd6\xde\x80\x25\x69\xcf\x29\x93\x04\x6b\xb0\x03\xa7\xa7\x52\xbf\x19\xd6\xb8\xa3\xa9\xc3\x1d\x2b\x15\xd0\x69\x8e\x22\x21\x59\x67\x50\x7c\x47\x50\x9c\xb3\x87\x62\x4d\x0e\xca\x08\x09\x65\x12\xa1\xc2\xf3\x0e\xca\x8c\x3f\x15\x96\x8d\x65\x3f\x85\xa2\xd4\x43\x09\x9d\x95\x22\x3b\x33\xb2\xdc\x48\x4e\xa7\xd0\xc2\x97\x56\x28\x68\xe3\xa1\x4b\xa5\xa0\x69\xe2\x47\x42\x9d\x12\x4c\xe1\x39\xe7\x8f\x84\x00\x8c\x7e\x32\x42\xa9\x29\x8c\x95\x64\x61\x4a\xdf\xef\x84\xe9\x61\x58\x38\x33\x9c\xc2\x9a\x84\x64\x69\x09\xcf\x48\x28\x14\x96\x73\x61\xcf\x74\x6e\x49\x48\x58\x4a\xc9\x92\x4e\xc8\xc1\x52\x46\x93\x02\x96\xb4\xc8\x09\x96\x0a\x25\x92\x60\x7d\x69\x35\x2c\x8d\xcc\x1d\xc1\xf6\xdb\x64\x39\x1b\x9e\x39\x4c\x6e\x68\xc6\x70\xa6\xa7\x3b\x2f\x7c\xe9\xe0\xbc\x15\x21\xf9\x53\x3f\x0a\x47\x8a\x12\x0f\x47\x61\x13\x82\x39\xd5\xf0\x62\xa0\xc8\xc1\x93\xcd\x59\x0b\x4f\x12\xde\x20\x88\xa8\x30\x24\x6f\x4b\x9d\x08\x4f\xe8\xd3\xe0\x29\x2f\x8c\x0d\x9f\x9f\xb7\x9c\x65\x64\x43\x82\xf3\x24\x4f\x75\x4b\xcd\x1f\x4a\x42\xa9\xfb\x59\x96\x8e\x50\xba\xa0\x58\x16\x32\xe8\x8d\x84\x2a\xc9\x61\x24\x2c\x1f\x5f\x60\xc4\x34\x3e\x55\x19\xb3\x1f\x62\x6c\xd9\x13\xc6\x43\xb2\x84\x8f\x64\x4d\x1a\xce\x96\x9f\x16\x84\x89\xb1\x47\xce\xb6\xd9\xee\xa3\x2f\xfb\xba\xde\x44\xe1\x17\xa8\x23\x61\x93\xa1\xb0\xf0\xac\xa7\xac\x3d\x3c\x4d\x3c\xfa\xda\x2e\x17\x4a\x85\xa5\x9c\x24\x97\x79\x40\x4f\x7f\x0a\x2d\x0d\x38\x0b\x6e\xaa\x8c\xf0\x90\xa6\x0c\x8d\x4b\x4a\x38\x17\xaa\xe7\x7b\xce\x09\xe1\xe1\xbc\xc8\x8b\x1e\x61\x4a\xc2\xa2\xd4\x8e\x33\x4d\x12\x7f\xd7\x1d\x28\x33\xe8\x41\x5f\xbc\xf7\x8e\x35\x5f\xc0\x3e\xa4\x8c\xce\xfa\xb5\x00\xfa\x15\xd2\x65\xde\x5f\x6e\xcf\x17\xde\x48\xd8\x23\xea\x3b\xbe\xf8\x57\xe4\x3e\xa8\x55\x57\x47\xeb\xba\xab\xa2\xf9\x76\xbd\xae\x36\x8b\xf6\xe5\xee\xdd\xce\xde\x5f\x2e\xaa\xae\x7a\xac\xda\xba\xc5\xe2\xb0\xde\xa1\x9e\x2f\xb7\xa8\xbf\xaf\x3a\xd4\xdf\x77\x4d\xb5\xda\x60\x59\x57\x8b\x7a\x7f\xd9\x5e\xfd\x1f\xcb\xba\xd9\xfd\x3a\x81\xa0\xb1\x5a\xef\xb6\xfb\x0e\xab\xcd\x62\x35\xaf\x5b\xac\xb7\x8b\x1a\x9b\x43\xd3\xfc\x59\x35\x87\x1a\xdb\x43\xb7\x3b\x74\xd8\xed\xb7\xeb\x5d\x87\xaf\x87\x55\x87\x7d\x5d\x2d\xce\x09\xb5\xf3\x65\xbd\xae\xd0\xd6\xbb\x6a\x5f\x75\xdb\x3d\xda\xe5\xf6\x1b\xba\xea\xb1\xa9\x5b\x74\xab\x75\xbd\x3d\x74\xf8\xb6\x5a\x74\xcb\x17\x43\x7d\xdc\xaf\xbe\x2c\xbb\x5e\xe9\xf8\xe1\x6a\x98\xf4\x78\xf5\x3c\x67\x34\x87\xfa\x69\xe6\xf7\xff\x79\xfb\xdf\x87\x9b\x17\xec\x1f\x75\xd3\x6c\xbf\x45\x71\x7c\x39\x9b\xdd\xe2\xfe\xf7\xf8\xe1\xea\x3a\xc6\x9b\x27\xef\xcd\xc3\xd5\xf5\x9b\x5f\x52\xa3\x28\xfe\xfc\x14\x9e\xcd\x3e\x3f\x5c\x5d\x7f\xfe\xf9\x4d\x1e\x9b\x6a\xfe\x47\xa8\xf6\x76\xf6\xf6\xf6\xfa\xf5\x73\xf0\xdf\xc7\xc3\x17\xdf\xdf\xbf\x6b\x77\xd5\xbc\x7e\xf7\xf0\x70\xf3\x4f\x70\x5f\x2f\xa2\xf8\xd5\x4d\x74\x83\xe8\xe6\xd5\x4d\x7c\xf1\x57\x00\x00\x00\xff\xff\x7a\xbc\x10\x73\x35\x07\x00\x00") func runtimeSyntaxSqlMicroBytes() ([]byte, error) { @@ -2723,6 +2744,7 @@ var _bindata = map[string]func() (*asset, error){ "runtime/syntax/sed.micro": runtimeSyntaxSedMicro, "runtime/syntax/sh.micro": runtimeSyntaxShMicro, "runtime/syntax/sls.micro": runtimeSyntaxSlsMicro, + "runtime/syntax/solidity.micro": runtimeSyntaxSolidityMicro, "runtime/syntax/sql.micro": runtimeSyntaxSqlMicro, "runtime/syntax/swift.micro": runtimeSyntaxSwiftMicro, "runtime/syntax/systemd.micro": runtimeSyntaxSystemdMicro, @@ -2898,6 +2920,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "sed.micro": &bintree{runtimeSyntaxSedMicro, map[string]*bintree{}}, "sh.micro": &bintree{runtimeSyntaxShMicro, map[string]*bintree{}}, "sls.micro": &bintree{runtimeSyntaxSlsMicro, map[string]*bintree{}}, + "solidity.micro": &bintree{runtimeSyntaxSolidityMicro, map[string]*bintree{}}, "sql.micro": &bintree{runtimeSyntaxSqlMicro, map[string]*bintree{}}, "swift.micro": &bintree{runtimeSyntaxSwiftMicro, map[string]*bintree{}}, "systemd.micro": &bintree{runtimeSyntaxSystemdMicro, map[string]*bintree{}}, diff --git a/runtime/help/plugins.md b/runtime/help/plugins.md index 45f7f37f..b79b4149 100644 --- a/runtime/help/plugins.md +++ b/runtime/help/plugins.md @@ -51,6 +51,12 @@ as Go's GOOS variable, so `darwin`, `windows`, `linux`, `freebsd`...) * `messenger`: lets you send messages to the user or create prompts +* `NewBuffer(text, path string) *Buffer`: creates a new buffer from a given reader with a given path + +* `GetLeadingWhitespace() bool`: returns the leading whitespace of the given string + +* `IsWordChar(str string) bool`: returns whether or not the string is a 'word character' + * `RuneStr(r rune) string`: returns a string containing the given rune * `Loc(x, y int) Loc`: returns a new `Loc` struct @@ -88,9 +94,11 @@ as Go's GOOS variable, so `darwin`, `windows`, `linux`, `freebsd`...) `waitToClose` bool only applies if `interactive` is true and means that it should wait before returning to the editor. -* `ToCharPos(loc Loc, buf *Buffer) int`: returns the character position of a given x, y location. +* `ToCharPos(loc Loc, buf *Buffer) int`: returns the character position of a given x, y location -* `ByteOffset(loc Loc, buf *Buffer) int`: exactly like `ToCharPos` except it it counts bytes instead of runes. +* `Reload`: (Re)load everything + +* `ByteOffset(loc Loc, buf *Buffer) int`: exactly like `ToCharPos` except it it counts bytes instead of runes * `JobSpawn(cmdName string, cmdArgs []string, onStdout, onStderr, onExit string, userargs ...string)`: Starts running the given process in the background. `onStdout` `onStderr` and `onExit` @@ -99,8 +107,8 @@ as Go's GOOS variable, so `darwin`, `windows`, `linux`, `freebsd`...) `userargs` are the arguments which will get passed to the callback functions * `JobStart(cmd string, onStdout, onStderr, onExit string, userargs ...string)`: - Starts running the given shell command in the background. - This function is a shorthand for `JobSpawn`. + Starts running the given shell command in the background. Note that the command execute + is first parsed by a shell when using this command. It is executed with `sh -c`. * `JobSend(cmd *exec.Cmd, data string)`: send a string into the stdin of the job process @@ -130,8 +138,8 @@ 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: +files to your plugin. For example, if you'd like to add a help topic to your plugin +called `test`, you would create a `test.md` file, and call the function: ```lua AddRuntimeFile("test", "help", "test.md") @@ -139,6 +147,8 @@ AddRuntimeFile("test", "help", "test.md") Use `AddRuntimeFilesFromDirectory(name, type, dir, pattern)` to add a number of files to the runtime. +To read the content of a runtime file use `ReadRuntimeFile(fileType, name string)` +or `ListRuntimeFiles(fileType string)` for all runtime files. # Autocomplete command arguments diff --git a/runtime/plugins/linter/linter.lua b/runtime/plugins/linter/linter.lua index 871cb63c..ccd362d5 100644 --- a/runtime/plugins/linter/linter.lua +++ b/runtime/plugins/linter/linter.lua @@ -19,20 +19,20 @@ function runLinter() temp = os.getenv("TEMP") end if ft == "go" then - lint("gobuild", "go build -o " .. devnull, "%f:%l: %m") - lint("golint", "golint " .. CurView().Buf.Path, "%f:%l:%d+: %m") + lint("gobuild", "go", {"build", "-o", devnull}, "%f:%l: %m") + lint("golint", "golint", {CurView().Buf.Path}, "%f:%l:%d+: %m") elseif ft == "lua" then - lint("luacheck", "luacheck --no-color " .. file, "%f:%l:%d+: %m") + lint("luacheck", "luacheck", {"--no-color", file}, "%f:%l:%d+: %m") elseif ft == "python" then - lint("pyflakes", "pyflakes " .. file, "%f:%l:.-:? %m") + lint("pyflakes", "pyflakes", {file}, "%f:%l:.-:? %m") elseif ft == "c" then - lint("gcc", "gcc -fsyntax-only -Wall -Wextra " .. file, "%f:%l:%d+:.+: %m") + lint("gcc", "gcc", {"-fsyntax-only", "-Wall", "-Wextra", file}, "%f:%l:%d+:.+: %m") elseif ft == "d" then - lint("dmd", "dmd -color=off -o- -w -wi -c " .. file, "%f%(%l%):.+: %m") + lint("dmd", "dmd", {"-color=off", "-o-", "-w", "-wi", "-c", file}, "%f%(%l%):.+: %m") elseif ft == "java" then - lint("javac", "javac -d " .. temp .. " " .. file, "%f:%l: error: %m") + lint("javac", "javac", {"-d", temp, file}, "%f:%l: error: %m") elseif ft == "javascript" then - lint("jshint", "jshint " .. file, "%f: line %l,.+, %m") + lint("jshint", "jshint", {file}, "%f: line %l,.+, %m") end end @@ -44,10 +44,10 @@ function onSave(view) end end -function lint(linter, cmd, errorformat) +function lint(linter, cmd, args, errorformat) CurView():ClearGutterMessages(linter) - JobStart(cmd, "", "", "linter.onExit", linter, errorformat) + JobSpawn(cmd, args, "", "", "linter.onExit", linter, errorformat) end function onExit(output, linter, errorformat) diff --git a/runtime/syntax/ocaml.micro b/runtime/syntax/ocaml.micro index 6f9fc607..fecfefc6 100644 --- a/runtime/syntax/ocaml.micro +++ b/runtime/syntax/ocaml.micro @@ -1,25 +1,20 @@ syntax "ocaml" "\.mli?$" -#uid -color red "\<[A-Z][0-9a-z_]{2,}\>" -#declarations -color green "\<(let|val|method|in|and|rec|private|virtual|constraint)\>" -#structure items -color red "\<(type|open|class|module|exception|external)\>" -#patterns -color blue "\<(fun|function|functor|match|try|with)\>" -#patterns-modifiers -color yellow "\<(as|when|of)\>" -#conditions -color cyan "\<(if|then|else)\>" -#blocs -color magenta "\<(begin|end|object|struct|sig|for|while|do|done|to|downto)\>" -#constantes -color green "\<(true|false)\>" -#modules/classes -color green "\<(include|inherit|initializer)\>" -#expr modifiers -color yellow "\<(new|ref|mutable|lazy|assert|raise)\>" -#comments -color white start="\(\*" end="\*\)" -#strings (no multiline handling yet) -color brightblack ""[^\"]*"" + +# Numbers +## Integers +### Binary +color constant.number "-?0[bB][01][01_]*" +### Octal +color constant.number "-?0[oO][0-7][0-7_]*" +### Decimal +color constant.number "-?\d[\d_]*" +### Hexadecimal +color constant.number "-?0[xX][0-9a-fA-F][0-9a-fA-F_]*" +## Real +### Decimal +color constant.number "-?\d[\d_]*.\d[\d_]*([eE][+-]\d[\d_]*.\d[\d_]*)?" +### Hexadecimal +color constant.number "-?0[xX][0-9a-fA-F][0-9a-fA-F_]*.[0-9a-fA-F][0-9a-fA-F_]*([pP][+-][0-9a-fA-F][0-9a-fA-F_]*.[0-9a-fA-F][0-9a-fA-F_]*)?" + +# Comments +color comment start="\(\*" end="\*\)" diff --git a/runtime/syntax/pascal.micro b/runtime/syntax/pascal.micro index b48697c6..3e372937 100644 --- a/runtime/syntax/pascal.micro +++ b/runtime/syntax/pascal.micro @@ -2,12 +2,6 @@ syntax "pascal" "\.pas$" # color identifier "\b[\pL_][\pL_\pN]*\b" -color comment "//.*" -color comment start="\(\*" end="\*\)" -color comment start="({)(?:[^$])" end="}" - -color special start="asm" end="end" - color type "\b(?i:(string|ansistring|widestring|shortstring|char|ansichar|widechar|boolean|byte|shortint|word|smallint|longword|cardinal|longint|integer|int64|single|currency|double|extended))\b" color statement "\b(?i:(and|asm|array|begin|break|case|const|constructor|continue|destructor|div|do|downto|else|end|file|for|function|goto|if|implementation|in|inline|interface|label|mod|not|object|of|on|operator|or|packed|procedure|program|record|repeat|resourcestring|set|shl|shr|then|to|type|unit|until|uses|var|while|with|xor))\b" @@ -15,10 +9,15 @@ color statement "\b(?i:(as|class|dispose|except|exit|exports|finalization|finall color statement "\b(?i:(absolute|abstract|alias|assembler|cdecl|cppdecl|default|export|external|forward|generic|index|local|name|nostackframe|oldfpccall|override|pascal|private|protected|public|published|read|register|reintroduce|safecall|softfloat|specialize|stdcall|virtual|write))\b" color constant "\b(?i:(false|true|nil))\b" -color constant "\$[0-9A-Fa-f]+" "\b[+-]?[0-9]+([.]?[0-9]+)?(?i:e[+-]?[0-9]+)?" +color special start="asm" end="end" + +color constant.number "\$[0-9A-Fa-f]+" "\b[+-]?[0-9]+([.]?[0-9]+)?(?i:e[+-]?[0-9]+)?" +color constant.string "#[0-9]{1,}" color constant.string "'(?:[^']+|'')*'" +color preproc start="{\$" end="}" - -color preproc start="{\$" end="}" \ No newline at end of file +color comment "//.*" +color comment start="\(\*" end="\*\)" +color comment start="({)(?:[^$])" end="}" \ No newline at end of file diff --git a/runtime/syntax/pony.micro b/runtime/syntax/pony.micro index 711da1c4..fc068368 100644 --- a/runtime/syntax/pony.micro +++ b/runtime/syntax/pony.micro @@ -11,21 +11,21 @@ color statement "\b(if|then|elseif|else|end|match|where|try|with|as|recover|obje color statement "\b(while|do|repeat|until|for|in)\b" color statement "(\?|=>)" -color statement "(\\||\\&|\\,|\\^)" +color statement "(\||\&|\,|\^)" -color statement "(\-|\+|\\*|/|\!|%|<<|>>)" +color statement "(\-|\+|\*|/|\!|%|<<|>>)" color statement "(==|!=|<=|>=|<|>)" color statement "\b(is|isnt|not|and|or|xor)\b" -color type "\b(_*[A-Z][_a-zA-Z0-9\\']*)\b" +color type "\b(_*[A-Z][_a-zA-Z0-9\']*)\b" color constant "\b(this)\b" color constant "\b(true|false)\b" -color constant.number "\b((0b[0-1_]*)|(0o[0-7_]*)|(0x[0-9a-fA-F_]*)|([0-9_]+(\\.[0-9_]+)?((e|E)(\\+|-)?[0-9_]+)?))\b" -color constant.string ""(\\.|[^"])*"|'(\\.|[^'])*'" +color constant.number "\b((0b[0-1_]*)|(0o[0-7_]*)|(0x[0-9a-fA-F_]*)|([0-9_]+(\.[0-9_]+)?((e|E)(\\+|-)?[0-9_]+)?))\b" +color constant.string ""(\\.|[^"])*"" -color comment start=""""([^"]|$)" end=""""" +color comment start=""""[^"]*" end=""""" color comment "(^|[[:space:]])//.*" color comment start="/\*" end="\*/" color todo "TODO:?"