From 423f4675d244e95f1f0feca4fdbf0f0b7e44abe9 Mon Sep 17 00:00:00 2001 From: Zachary Yedidia Date: Sun, 5 Nov 2017 20:07:14 -0500 Subject: [PATCH] Add a scroll bar option The option is `scrollbar` and is off by default. The scroll bar is not interactive (you can't click and drag it) but this will likely be fixed in the future. Ref #869 --- cmd/micro/micro.go | 40 +++++++++++++++++++++++++++------------- cmd/micro/runtime.go | 27 +++++++++++++++++++++++++-- cmd/micro/scrollbar.go | 18 ++++++++++++++++++ cmd/micro/settings.go | 2 ++ cmd/micro/view.go | 15 +++++++++++++-- runtime/help/options.md | 4 ++++ 6 files changed, 89 insertions(+), 17 deletions(-) create mode 100644 cmd/micro/scrollbar.go diff --git a/cmd/micro/micro.go b/cmd/micro/micro.go index 35d1721d..372eeba6 100644 --- a/cmd/micro/micro.go +++ b/cmd/micro/micro.go @@ -476,6 +476,8 @@ func main() { } for event != nil { + didAction := false + switch e := event.(type) { case *tcell.EventResize: for _, t := range tabs { @@ -505,24 +507,36 @@ func main() { } } } + } else if e.Buttons() == tcell.WheelUp || e.Buttons() == tcell.WheelDown { + var view *View + x, y := e.Position() + for _, v := range tabs[curTab].views { + if x >= v.x && x < v.x+v.Width && y >= v.y && y < v.y+v.Height { + view = tabs[curTab].views[v.Num] + } + } + view.HandleEvent(e) + didAction = true } } } - // This function checks the mouse event for the possibility of changing the current tab - // If the tab was changed it returns true - if TabbarHandleMouseEvent(event) { - break - } + if !didAction { + // This function checks the mouse event for the possibility of changing the current tab + // If the tab was changed it returns true + if TabbarHandleMouseEvent(event) { + break + } - if searching { - // Since searching is done in real time, we need to redraw every time - // there is a new event in the search bar so we need a special function - // to run instead of the standard HandleEvent. - HandleSearchEvent(event, CurView()) - } else { - // Send it to the view - CurView().HandleEvent(event) + if searching { + // Since searching is done in real time, we need to redraw every time + // there is a new event in the search bar so we need a special function + // to run instead of the standard HandleEvent. + HandleSearchEvent(event, CurView()) + } else { + // Send it to the view + CurView().HandleEvent(event) + } } select { diff --git a/cmd/micro/runtime.go b/cmd/micro/runtime.go index 802bbc43..7fdf8867 100644 --- a/cmd/micro/runtime.go +++ b/cmd/micro/runtime.go @@ -32,6 +32,7 @@ // runtime/colorschemes/solarized-tc.micro // runtime/colorschemes/solarized.micro // runtime/colorschemes/symbian-tc.micro +// runtime/colorschemes/twilight.micro // runtime/colorschemes/zenburn.micro // runtime/help/colors.md // runtime/help/commands.md @@ -870,6 +871,26 @@ func runtimeColorschemesSymbianTcMicro() (*asset, error) { return a, nil } +var _runtimeColorschemesTwilightMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x93\x51\x8e\xb2\x30\x14\x85\xdf\x5d\x05\x81\x57\x35\xe0\x3f\x60\xfb\x58\x81\xae\xe0\xdf\x40\x81\x3b\xda\x08\x2d\xb9\x2d\x63\xdc\xfd\xe4\x82\x33\x19\xb4\xe6\xbc\xb4\x39\x9f\xed\xe9\xb9\x92\x44\xff\x6f\xba\xd7\xe7\x8b\x8f\x5a\xdb\x5b\x8c\x5c\x7b\x81\x01\x36\xf3\x66\xd7\x6b\x73\x8d\x3a\xf8\x54\x53\xef\xa3\x38\x91\x8c\xb4\x4d\xb2\x0f\x52\xfc\x17\x5a\x96\xad\xed\xa7\xc1\x44\x71\x92\x9d\x48\x4f\xc4\x30\x80\xa1\x63\x72\x99\x8b\x22\x7d\x32\x8d\xf3\x6a\x76\x4b\x59\x88\x8f\x32\xde\x24\x01\x7b\x6f\xa6\xa1\x01\xfc\x43\x85\x20\x37\x42\xab\x55\x5f\x5e\x14\x91\x55\x25\x0f\xe2\x39\xec\x0f\xe9\x51\x9b\x73\x14\x27\x4c\xf2\xaa\x10\x6b\x68\x42\x04\xe3\x69\x03\xbb\xdf\x7b\x59\x41\xda\x06\x1f\x38\xa1\x5b\xd6\x10\x6e\xa0\xd3\x5f\xba\x9b\x4f\xc9\x6a\xd2\xca\x04\x44\x3b\xc7\x3d\x08\x26\xb2\x95\x75\x9e\xbc\x07\xdc\xfd\x10\xfc\xc4\x72\x5e\x85\x88\x9b\x42\xb3\xbc\x27\xc0\xe8\x0e\x8c\xd7\x9f\x1a\x96\x33\x8e\xe9\x3f\xf9\xc6\xdf\xb7\xbd\x72\x8e\xb2\x88\x2a\x65\xf9\x3b\xea\x6b\xae\xf7\x98\xb3\xa3\x28\xd6\x8c\x21\x68\xd7\x2e\xfd\xe7\x19\x69\x05\x84\x2a\x5d\x01\x23\xc2\x88\xb6\x8d\xe2\xa4\x4e\xcb\x9c\xf1\x95\xf9\x18\xef\x1b\xd3\x2b\x0f\x8f\xff\x59\x59\x09\x56\xbc\xda\x93\x7b\x8c\x68\x49\xb6\x0d\x4d\xc3\xdd\x87\xc6\xd2\x15\xa2\x64\x2c\x3f\x05\xbc\x7d\x83\xaa\xbd\x82\x77\xbf\xdf\x45\x08\xb2\x23\xa0\xf2\xf3\xd8\x42\x69\x16\xc8\xab\x73\xf8\x26\xaf\x9a\x66\xee\x50\x1e\x64\x5a\x97\xdb\xe4\x50\x91\xd6\x8c\xed\x2c\x95\x78\xe2\x4c\x3c\xfd\xfa\x3e\xd2\x2b\x25\xaf\x6b\xce\x5e\x9c\xfd\x15\xee\x37\x8b\x5d\x38\xd9\x64\x3a\x40\xaa\x89\x7c\xc6\x79\x21\x58\xbc\xf9\x0e\x00\x00\xff\xff\x50\x4e\x7e\x42\x2c\x04\x00\x00") + +func runtimeColorschemesTwilightMicroBytes() ([]byte, error) { + return bindataRead( + _runtimeColorschemesTwilightMicro, + "runtime/colorschemes/twilight.micro", + ) +} + +func runtimeColorschemesTwilightMicro() (*asset, error) { + bytes, err := runtimeColorschemesTwilightMicroBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "runtime/colorschemes/twilight.micro", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var _runtimeColorschemesZenburnMicro = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xd1\x6e\x84\x20\x10\x45\xdf\xfb\x15\xc4\x67\x6d\x0a\xba\xea\xef\x20\xcc\x6e\x49\x71\x30\xe3\x90\x66\xff\xbe\x99\xdd\xb6\xa9\x05\xdf\x48\xce\x65\x3c\x5c\xc7\xa5\x98\xa8\x8b\x01\x3f\x94\x87\xab\xcd\x91\x55\xa3\xe7\xb9\x35\xfd\xd4\xbc\xfc\x81\x2e\xad\x2b\xa0\xc0\xb7\x1a\xc4\x9d\x2d\xf2\xeb\xce\x14\xf0\xa6\x1a\x3d\x0d\xe7\x21\xcc\xeb\x02\xa4\x1a\xad\xc7\xd3\x90\x48\xe8\x82\x06\x0f\xc8\xe1\x1a\xe4\xb6\x31\x7d\xc1\x77\xb6\x0c\x4f\xcd\x2a\xbe\xaf\x4b\x8a\x75\xb6\x11\x6c\x94\x5c\x1d\xf2\x7d\x03\x31\x9a\xca\x91\x1b\xb8\x60\x63\x5d\x37\xa3\x07\x8a\x01\xc1\xd7\x3b\x05\xa2\xf4\xe8\xe1\xd2\x9a\x7e\x3c\x7e\x31\xf9\xa4\x9a\x25\x45\xaf\xcc\xa5\xec\x52\x1e\x9a\x77\x19\x2d\x93\xc7\xf2\xba\x5d\x16\x4b\x75\x16\x50\x5a\xec\xdc\xbb\x04\x4c\x5f\x6a\xc9\xd8\xee\xe7\x27\x99\x41\x02\xf3\x21\x70\xcb\xcc\x40\xdd\xb7\xbe\xe9\xa7\x56\x4f\x43\x2d\xf1\x69\x09\xcf\xf7\x21\xd3\xfe\x3c\xc3\xc3\xe3\xdf\x1e\xc8\xd1\xa5\x98\x57\xac\xd0\x4c\x24\x6f\x38\x98\xfe\x36\xfc\x15\x00\x00\xff\xff\x4e\x40\x3f\x86\xd3\x02\x00\x00") func runtimeColorschemesZenburnMicroBytes() ([]byte, error) { @@ -1010,7 +1031,7 @@ func runtimeHelpKeybindingsMd() (*asset, error) { return a, nil } -var _runtimeHelpOptionsMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x5a\x5f\x8f\xe4\xb8\x71\x7f\x1e\x7d\x8a\xc2\x9c\x81\x99\x39\xf4\xf4\x1e\x9c\x7d\x30\xfa\x25\xd8\xbb\x4d\xd6\x0b\x67\x6f\x8d\xdc\x3a\x39\x23\x0e\x2c\x4a\x2a\xb5\xe8\xa1\x48\x99\xa4\xba\x57\x7b\xb8\x7c\xf6\xa0\xaa\x48\x49\xdd\xd3\xd3\x7b\x6f\xd3\x22\x59\xff\x58\x7f\x7e\x55\x9c\x6f\xe0\xe3\x10\xb5\xb3\xa1\x28\x3e\xe8\xda\x3b\x08\xd1\x79\x0c\xa0\x8c\x01\xd7\x42\xec\x10\xc6\x80\x1e\x6a\x67\x5b\xbd\x1f\xbd\xa2\xcd\xa0\x2d\xe8\x18\xce\x3e\x36\xda\x63\x1d\x9d\x9f\xb6\x99\xd6\x18\x30\x30\x89\xf2\x77\x3f\xbf\x7d\xf7\xf7\x1f\x3e\xfe\xf8\xef\xef\xdf\xfd\xfd\x8f\x1f\x3f\xfc\xdb\xab\x9e\x36\x94\xa0\x64\xfd\x25\x42\xf0\x26\xc0\x80\xbe\xa0\x3d\x3f\xbf\x7d\x07\x61\xc0\x7a\x03\xba\x7d\x4e\xb0\x04\x1d\xc0\xba\x08\x01\xe3\x06\xca\xff\x7b\xb5\x15\x9a\x99\x91\x0e\x24\x4d\x43\x0c\x8b\x85\xe3\x89\xcc\x7f\x44\x8f\xa0\x3c\xb2\x44\x4e\xac\x02\xb1\x53\x11\x26\x37\x42\xad\x2c\xd1\xde\x15\xc5\xb7\x50\xaa\x31\x3a\x6d\x1b\xb4\xb1\xdc\xc1\xb1\x43\x0b\xb5\x47\x15\xb5\xdd\x83\x02\x8b\x47\x30\xda\xb2\xe1\x98\x56\x50\x3d\x82\x6c\x17\x05\x93\xd6\x05\x00\x0c\x1e\x0f\xda\x8d\x81\x4f\x6c\x8b\xe2\xa6\xc1\x56\x8d\x26\xc2\x41\x99\x11\x77\x50\x3a\x5b\xce\x2c\x83\x3a\x60\xb9\x03\x56\x09\x8e\xda\x18\xa0\x2f\x4c\xab\x1a\xdb\x16\x3d\xe0\x01\xfd\x04\x7f\x80\x80\xb5\xb3\x4d\x00\x3a\xd5\xab\xa8\x6b\x65\xcc\xb4\x05\xbe\x16\x62\xab\x4c\x48\x14\x4e\x76\x08\x3d\x65\x1b\xf8\xe7\xa8\xa3\x68\x46\xca\xe3\x67\xfa\xa5\x63\xe7\xc6\x08\x2a\x3c\x69\xbb\xdf\xc2\xf7\x48\x94\x6a\xe5\xb1\x1d\x8d\xec\x1d\x03\x99\x20\x76\x3a\x40\x8b\x2a\x8e\x1e\x37\x50\x61\xad\xc8\x12\x44\xa7\xd7\xfb\x2e\x82\xaa\x6b\xcd\xc6\x58\x38\x42\xab\x0d\x6e\x88\x9e\x3b\xa0\x3f\x7a\xcd\xb6\x3c\x92\xf1\x8f\x62\x2d\x8f\x50\x61\xeb\xfc\x65\x23\xb5\xad\x58\xa9\x76\xc6\xf9\xda\x99\xb1\xb7\xe5\x8e\x1c\x85\x65\x59\x5c\x03\xa2\x83\xef\x36\xc0\xda\x18\x03\x8d\x0e\x83\x51\x13\x28\x90\x33\xa0\x22\xf1\x2a\x80\x3d\x4d\xb7\x1a\x9b\xb4\xb2\x85\x4f\x89\xd2\x18\x58\x5f\xdd\xb2\x46\x47\x65\x63\x3e\xfc\x87\xef\x88\x7c\x85\xd0\xe9\x7d\x67\x48\x55\x6c\x32\x29\x65\xa0\x75\x1e\xf0\xb3\xea\x07\x73\x51\x87\xef\x56\x1a\x84\xba\xc3\x9e\xae\xda\x38\xd5\xe4\x10\x99\xbf\x4b\x8c\x36\x14\x85\x64\xb1\xdf\xdd\x8b\x33\xbf\xd5\xfe\xe1\xd5\x6a\x5b\x78\x55\x8a\x17\x97\x5b\xf6\x98\x8d\xa8\x10\x30\xb2\x71\x75\x80\x72\x6f\x5c\xa5\x0c\x38\x6b\xa6\xf2\x92\x4c\xe9\x77\x59\x14\x37\x3f\xba\x88\x12\x0d\x24\x4d\xde\xb8\x66\x07\xf7\xe9\xeb\x06\x82\x33\xca\xeb\x2f\xd8\x6c\xd8\x99\xe6\x9f\x8f\xb1\x7e\x28\x6e\x28\xc6\xe8\x3e\x8c\xab\x55\x14\x3d\x66\x0d\x16\x7f\x89\x1d\x4e\x1c\x8e\xd8\x57\xd8\x34\xb2\x8f\x78\x8b\xfb\x57\xda\x2a\x0e\xdb\x9b\x4f\x67\xd6\xa1\x48\xad\x10\x02\x1a\xac\x89\x7c\xeb\x5d\xcf\xf9\x8c\x0e\x93\x9f\x85\x4c\xa9\xb8\x39\xcb\x13\xa7\xe6\x5b\x27\x22\x49\x68\xb5\x23\x3d\xab\x69\xd6\x9f\x62\x02\x62\xe7\x11\x8b\x9b\xf5\xd9\x5d\x51\xdc\xfc\x35\x65\x0d\x8f\xaa\x81\xde\x51\x72\xa9\x28\x7e\x98\xd3\x5d\x38\xb5\x5d\x92\x28\x5d\x7f\x09\x1d\x9a\x01\xa2\x1b\x74\x5d\xdc\xdc\x97\xfc\x2b\x2d\x3d\x6c\xc5\x4f\x46\x1f\x9c\xa7\xac\x51\xee\x16\x87\x63\x22\x9c\x7c\xe6\xab\x92\x8d\x74\xdd\x92\xb8\x15\x34\x9a\x72\x05\xda\x74\x7d\xe4\x43\xf7\xb3\x8b\xd1\xc6\x06\x5b\x6d\xb1\x21\x45\xcf\x5d\x8f\x7c\x9e\x2e\x85\x23\xfd\xe1\x5a\xc2\x42\xd7\x5a\x3c\x26\x01\x57\x29\xeb\x34\xe1\xa8\xa6\x91\x94\x29\x42\xbb\xf9\x92\x2e\x91\x6e\x95\x09\x28\xd4\x5b\x15\x62\xa3\x7d\x9c\xca\x9d\xc4\x78\x83\x11\x7d\xaf\x2d\x06\x49\x1b\x4f\xda\x36\x54\xc1\x94\xd9\x3b\xaf\x63\xd7\x27\x19\xa4\x26\xb9\x65\x3f\xe8\x96\x33\x62\x4e\xa1\x3a\x40\xef\x1a\x89\x7d\xe7\xc9\x51\xb7\xf0\xdf\x94\xdc\x56\x3c\xc5\x9a\x9b\x44\xf2\x1f\x63\x88\x42\x57\x11\xa5\xca\x39\x83\xca\x42\x99\xc9\x94\x72\x19\x12\x7b\xc4\xbb\x8c\x7e\x44\x2e\x7e\xc1\x2d\xe5\x80\xeb\x6c\xaf\x9e\x88\x8e\x05\x6c\x74\xdc\x12\xb9\x9c\x77\x88\xfb\x06\xaa\x31\x66\x07\xd7\x56\xd5\x35\xd5\x4c\xdc\xc2\xfb\xf6\x99\x78\x6d\xbb\x21\xb2\x76\x65\x7b\x22\xd7\xa9\xd0\x65\xbf\x60\x1f\x48\x6a\xab\xbd\xd2\x36\x44\x50\xb2\x23\xd5\x7e\xe7\xf5\x5e\x5b\x4a\x5e\xda\x20\xdc\x73\x95\xc3\x46\x92\xbd\x24\xca\x7c\x9e\xd2\x34\x65\x2b\x6c\x1e\x96\x5c\x29\x5e\x9f\xa4\x64\xd9\x5d\xc5\xe5\xce\x4c\xb2\xe6\x31\xb8\xd1\xd7\x4c\x48\xdb\x88\x36\xe8\x03\xa6\xf3\x92\xbc\xc4\xd4\x66\xe2\xf4\x39\xa0\x1b\x0c\xc2\xb1\x73\x14\x55\xe4\x3f\x54\x7e\x52\x5c\x75\xea\xa0\xed\x9e\xef\x32\x73\x9c\x2f\x32\x44\x15\xc7\x70\xcd\x5d\x49\xc1\xd6\xf9\x5e\xc5\xaf\x79\x14\x7b\x2a\xda\x46\xdb\x7d\x58\x3b\x36\x25\x2d\x12\x32\xd9\x85\x9d\x18\xfe\xf2\xe3\xfb\x9f\x4f\x4f\x90\xc0\xec\x31\xe5\xdf\x6c\x09\xf7\xa6\x7d\x20\x73\x7a\x54\x01\x1a\x17\x9e\xed\x25\x52\xe5\xdf\x3c\xef\xad\xbd\x69\xd9\xba\x08\xf1\xe8\x60\x70\x21\xe8\xca\xa0\xe8\x12\x12\xf3\xc5\x72\xc4\xa9\x1c\xad\xfe\x5c\x72\x16\x2e\x1b\x17\xca\xe4\x52\x12\x63\xa2\xaf\x48\x5f\xe1\x59\x64\x92\xfa\x9c\x3f\xe9\x6c\x2a\x94\x14\x12\x92\xa8\xc4\xa0\x24\xac\xf8\x40\x3c\xe1\xfc\xbc\x4c\xba\xd1\x34\x60\xf4\x13\xc7\x78\xdd\x29\xbb\xc7\x25\x57\x65\x75\x29\xfb\x70\x30\xe6\x2c\x13\xa2\xf2\x2b\x54\xf5\x52\x5e\x60\x1d\xe7\x5b\x8c\xd3\x40\x29\x27\x60\x0c\x73\x36\xa1\x6f\xf9\x72\xce\x3c\x7f\x7b\x5e\x16\xd9\xe2\x54\x9b\x5e\x2e\x8c\xac\xeb\x65\xb3\x51\x88\x37\x38\x88\x4a\xd9\x5a\x1c\x3d\xa4\x54\xa7\x0e\x58\xdc\xb8\x01\x2d\x8b\xab\xf7\xd6\x79\xac\x55\x20\x81\x07\xf4\x74\x21\x40\x3f\x1f\xb5\x0d\x14\x0c\x51\x1f\xa8\x92\x29\x5f\x77\x78\xd9\x7d\x33\xf2\x11\x7c\x59\x77\xca\xaf\x75\x5f\xa3\x4e\x5a\x53\x75\x44\x7f\x89\x0e\x64\x2a\xad\xab\x98\x04\x5a\x55\x99\x04\xdf\xf9\x92\x52\x39\xa9\x5c\x8c\xae\xcf\xf9\x81\xb2\x94\xf3\xe2\xc0\xd0\x63\x08\x6a\x8f\xb3\xdb\x0e\x9e\x42\xba\x79\x16\xce\x5f\x85\x1d\x39\x26\x9f\x10\x87\xe7\x50\x5b\x40\xe6\xf2\x7d\x03\xc7\x4e\x47\x0c\x83\xaa\x91\xc8\x2b\x06\x0b\x74\xd9\x93\x1b\x85\x39\x03\x4b\xe1\xbf\x8a\x6a\xdd\x2e\x08\xb7\x77\x87\xb9\xfc\x58\xfc\x1c\x45\xe7\x19\xf2\xda\x09\xe8\x46\xbc\xb4\x4a\x00\xbc\x6f\xc5\x36\x66\xa4\x2a\xcc\x43\xc7\xfe\x5e\x11\x50\x32\xc8\x36\xf8\x7e\x01\x0d\x74\x76\x11\x9f\xa8\x9d\x2a\x90\xce\x08\x7c\x4d\xd6\xe7\xf4\x8a\x6d\x04\xec\x87\x38\x5d\xf5\x84\x27\x9c\x7a\xb4\x63\xb9\x9b\xe1\x2d\x2b\xa5\xac\x7b\x0c\x71\x32\x08\x4f\x38\x01\xed\xb8\x7c\xa5\xa1\xf6\x88\x76\x0b\x04\xf8\x44\x53\x15\xe1\x93\xdb\xef\x0d\xfe\x09\xa7\x0f\x74\x4e\x07\xa8\xdc\x68\x1b\xae\x65\x6f\x4c\x7c\xdc\x97\x6b\x50\x44\x09\x23\xe3\xee\x25\x71\x68\x9b\xed\xb6\xe4\x8e\x2d\x7c\x72\xb4\x85\x5c\x8d\x8f\x6c\x20\xe8\x7e\x30\x13\x91\xcb\x94\x89\xc9\x5f\x6c\xa5\x6d\xf3\x27\x7c\xc1\x5f\xb2\xea\xbd\x1b\x39\x94\x8e\x1d\x52\xcb\x40\x47\xc5\x8f\x81\x57\x20\x8c\xc3\xe0\x7c\x2e\xe8\x27\xdf\x92\xb0\xb4\xb9\xe1\x46\x64\x0c\x23\x07\x34\x49\x2c\x2e\xa3\xcc\x12\xf3\x2c\xb0\xa3\x4a\x83\x21\x24\x4a\x78\x40\x1b\xa9\x58\xe8\xba\xcb\x45\x5a\xd2\x20\x97\xb7\x55\xc3\x40\x39\xd0\x0d\x93\x40\xd3\x13\x06\x54\x83\x09\x2f\xba\x56\x16\xa5\xbe\xdc\xeb\x96\x1b\x23\x08\xa1\x23\xcf\x26\x7a\xa9\x95\x38\x01\xcc\x0b\x9d\x8e\x7c\x51\x84\x4b\x5e\x2d\x19\xad\x36\x7a\xa8\x9c\xf2\x92\xd6\xfb\xdc\x0f\x36\x0e\xb9\x47\xba\x8a\xe8\x06\x33\xee\xb5\xa5\xe4\x6d\xd1\x84\x72\x47\xa8\x3d\x12\x6a\x98\xd1\x75\x5e\x9b\x31\xae\x1c\x81\x5e\x59\xb5\x27\x90\xc0\x3d\x2b\xa7\x33\x2e\x91\x54\xd2\x79\x07\x01\xe0\x2d\xbc\xc9\x04\x18\x2b\x89\x23\x28\x30\x3a\x44\xb2\xc7\x9d\xc7\xc1\x05\xca\x37\xd3\x1d\xfc\x23\x38\x9b\xc0\x3c\xdb\x9b\x5b\x51\x11\x07\x7a\x8c\xaa\x51\x51\x25\x5c\x40\x82\xed\xf5\x01\x6d\xe2\xb5\x85\x9f\x50\xac\x55\xfe\x59\xc4\xfb\x20\xe2\x95\xd4\x36\x73\x92\x70\x6d\xf6\xd5\xa4\xf4\x09\x22\x67\xb9\x19\xbe\x50\xba\xa4\x12\xaa\x9d\xbd\x64\xb8\x2e\xc6\x21\xec\x5e\xbd\xda\xeb\xd8\x8d\xd5\xb6\x76\xbd\xb4\x19\x8f\x92\x36\x5f\x09\xed\xc7\xa4\xf4\xda\xc8\xac\xea\x25\x0b\x2f\x46\xd0\x18\xee\xae\xd9\x99\x34\x10\x53\x5f\xb0\xf3\x62\x4a\x62\x11\x74\x88\x81\xc1\x32\x94\xb4\xb2\x25\xeb\x96\x52\xb5\xce\xad\x1b\x16\xf3\x12\x59\x05\x94\x8d\x0d\x66\xdb\xbe\x5c\x5a\x7c\x1f\xbd\xd2\x46\xdb\xfd\x31\x5c\xeb\x08\xa2\xd7\x3d\xe4\xad\xab\xcc\x18\x28\x5d\xa1\x33\x5f\x69\x0c\xfc\x68\xd0\xaf\x72\x1f\x67\x4f\x3b\xf6\x15\xfa\xab\xf8\x2f\xa8\x03\x4a\xab\x54\xee\xc0\x63\x4f\x5d\x67\x2e\x6c\xab\x36\x8a\xf3\xb0\x0a\x11\xa2\xee\x71\xa9\xed\xf4\x99\xaa\xba\xc0\x25\x2e\x7e\x63\x04\x1d\xd3\xe4\x62\x2e\x33\xb4\x67\x39\xc5\x98\xfb\x6a\x42\x23\xa9\x3a\x4d\xfd\xfe\xb4\x16\xab\x76\x7d\x4f\xf1\x9b\x96\xa0\xc2\x78\x44\xb4\x50\x1b\x27\xc5\xd1\x36\xe0\xf1\x91\xb8\x25\x48\xcc\xe6\xde\x16\xf4\x27\x5c\x33\xc1\x68\x1b\x97\x0b\x6d\x3c\x47\xe1\x1b\xa0\x65\x0e\x4e\x75\xc0\x86\x13\x1e\xa8\x36\xa2\x97\x11\x99\x71\x21\xcf\x72\xd8\xfb\x5c\x4e\x7a\x69\x85\xa5\x62\x13\xa4\x81\xcf\x3c\x59\xa3\x4a\xcf\xc4\xb5\xdd\x5f\x37\x48\xed\x9d\x31\xbd\xf2\x7b\x6d\xcb\x1d\xa8\xde\x8d\x36\x66\x54\x1e\x2e\x60\xcd\x80\xdc\x1f\xa4\xb1\x56\x85\xc6\x1d\x33\x42\x97\x2b\xbd\xc4\xee\x5f\xd6\xcc\xc2\x80\xd8\x5c\xe0\x45\xc4\x79\x03\x07\x82\xb3\x98\x7f\x72\x1d\xb8\x44\xf6\xf7\x89\xac\x6b\xe3\xd1\xab\x81\x80\x9a\x00\x85\x14\x0c\x5e\x0d\x99\x36\x15\x5d\x9e\x45\x3a\x07\xc6\xd9\x3d\x71\x6b\x75\x9c\xe1\xb7\x14\xe9\xab\x96\x1a\x8c\x8e\x52\xda\xf3\x85\x2a\xe8\x9c\xd7\x5f\x28\x90\x0d\xf0\x3a\xdd\x65\x6a\xea\x36\x59\x18\x1d\xa9\x70\xe5\x56\x8f\x2d\x96\xb3\x61\x46\xce\x7c\xf6\x5f\xaf\x45\x13\x6d\xf0\x7a\xdf\xc5\x85\xf7\x81\xe0\x53\xfd\xdb\x39\x4b\xdd\x22\xd6\x4c\x28\xe3\x93\xdf\x2e\xc3\x0c\x33\xce\xa0\x90\x2c\x5c\x41\xb5\x57\xac\x9b\x69\x4f\x36\xaa\xcf\xd4\x29\x8e\xde\x06\x90\x9f\x74\x39\xe4\x09\x6d\x7b\xf5\xe8\x58\xf7\xe4\x4e\x79\xc2\x28\x10\x3b\x8c\x03\xfa\x3c\x6a\xe7\xe0\xde\xc2\x47\x82\x28\x21\x42\x98\x42\xc4\x3e\xcc\x98\xea\x36\x8c\x8d\xbb\xa5\xa6\x8b\x71\xad\x85\xef\x7f\x7a\x4b\xb6\x4b\x90\xe3\xb6\x71\x2a\x6c\x6f\x4f\x50\x77\x5a\xaa\xc7\x10\x5d\xaf\xbf\xa4\xae\x2e\xb7\xd6\x3c\x19\xa7\x5b\xe2\xa8\xe5\x36\x5a\x26\x5b\x61\xbc\xa4\x09\xb1\x17\x5d\xa2\xaa\x08\x38\xf7\x82\xce\xad\x3a\xe8\x3d\xb5\xdd\x4b\xbe\x66\xdb\xe2\x5e\x5b\xcb\xdd\x50\x0e\x1d\x15\x12\xb8\x95\x09\x5f\x54\x15\x83\xea\x7b\xdc\xee\xb7\x02\xc5\x19\xed\xbc\x5e\x51\x72\xb6\xc6\x87\xd3\x56\x82\x65\x67\xe4\xa2\xec\x14\x3b\xee\xde\xb8\x70\x93\x5c\x21\x3a\x39\x9c\x86\x35\x57\x63\x85\xf6\xeb\x2f\x27\x5d\x63\x54\x15\xd0\x37\x86\x9f\x69\x8e\x7a\x81\xc4\xeb\x85\xc0\xcc\x70\xc7\xa3\x80\x24\xfa\x0a\xd0\xb1\x9a\xd7\xa4\x40\xdf\x47\x1d\x0d\xfb\x2b\x8f\xe0\xc2\x8c\x64\x65\x12\x45\xf9\xcd\xcf\x20\xef\x2e\x00\x6f\x9f\x51\x29\xf5\x9e\xd5\xb4\xa0\x3a\x0e\x3c\x29\x4b\x57\xd5\x1f\x03\x0e\x5e\xf7\xca\x4f\x25\xdc\x67\x8f\xa0\xee\xdd\x59\xf8\xd6\xea\xcf\x0f\x2f\xca\x73\x36\xfe\x48\xf1\x9a\x88\xad\xc0\x66\x06\xbc\x32\x94\xe5\x97\x95\x34\xf1\xac\x54\xfd\xb4\xf7\xd4\x4d\xa4\xcb\xcd\x50\x14\x54\xdb\x62\x1d\x73\xea\xb1\x04\xb4\xd6\xf8\x55\xda\xc0\x1f\xa2\x37\x8f\x3f\xb0\x37\xf3\x9f\xff\xf5\x62\xe8\x3d\x3e\x3e\x16\xc5\xdb\xb4\x92\xf0\x52\x7a\xe5\x59\x1e\x75\xb8\x50\x51\xae\x3f\x81\x24\x52\xbe\xca\x5f\x7e\x2d\xa1\xbc\x7f\x28\xa1\xfc\x9f\xff\x2d\xa1\xbc\xbd\x2d\xa1\xbc\xbb\x2b\xb7\xf0\x67\xef\x0e\xba\x99\x07\xa6\xec\x82\x0b\xb5\xc4\xec\xda\xec\x29\x26\x41\xca\xdd\xaa\x8f\xda\x9c\x3c\xf4\x60\x84\xe0\xfa\xe5\x61\xaa\x52\x61\x99\xc6\xe4\x11\xc7\x16\xde\xcc\x06\xeb\x5d\xcf\xcd\xf1\xf9\x15\xa9\x4a\x26\x45\xbd\x7a\x42\x01\xd0\x3c\xa2\x17\x6f\x65\xa4\x38\xc5\xce\x59\xfe\x3a\xa9\xde\xe4\x59\x56\x00\x8f\x7b\xe5\x1b\x43\x3d\x85\x6b\xc5\x15\xd3\xd4\x24\xf0\x04\xf2\x79\xf1\x5d\xb7\x76\x50\x61\xa7\x0e\x5a\x9a\x17\x4a\x9b\x27\xf8\xe2\x2b\x49\xd3\x68\x1b\x19\xd6\xbd\x39\xb9\x18\xfa\x3c\x0f\x23\x05\x53\x65\x70\xf2\xec\x56\x66\x22\xec\xa1\x2f\xa2\x55\xe6\xf8\xc6\x4e\x59\x30\x52\x8a\x8c\x9f\xdc\x35\x0f\x3c\x72\xc4\x31\x0e\x5a\x8d\xad\xa1\x38\x7f\x52\x98\x4d\xc4\x2d\x4b\x70\x1b\x22\x85\xec\xdb\x1b\x31\xe2\xe9\xeb\xa7\xe0\xc9\x44\xbf\xc8\xc5\x70\x1e\x67\x88\x9d\xef\x16\x1b\x47\xf5\x84\x97\xe8\x70\x02\x27\xe9\xa9\x4d\xb5\x8e\xa2\xb6\xe8\x55\xdd\x69\x8b\x73\x97\xcd\x31\xc9\xe5\xe7\x44\xc8\xa4\x0f\x9f\x81\x74\x66\x5b\x14\xc5\x37\xdf\xc0\x3b\x19\xdd\x90\x73\x48\x43\x99\x4f\x16\xc5\x5f\x97\x57\x52\x3a\x1e\x16\xaa\x80\x9a\x49\xc9\xdc\xc7\x4c\x94\x3d\xf8\xb4\x99\xb6\xf0\x1f\xf2\x07\xf4\xa8\xf2\x7b\x2b\xc5\x50\x9e\xc7\x1d\x9d\xbd\x8b\x27\xa6\x3e\x7f\xdc\x3d\xb5\x70\x99\xc6\x0f\x2a\xce\xaf\x7c\x94\xd1\x8a\x94\x1e\xd3\x35\x9e\x8f\x00\x7f\x4a\xdc\x54\xce\x09\x8b\xac\x3a\xac\x5f\xbc\xf8\x41\xab\x98\x43\x72\x79\x2a\xe6\xa7\x15\xba\x34\xa6\x48\xad\xc6\xa7\xe5\x3d\x47\x9e\xf3\x56\x58\x7a\x35\x01\xdb\x24\x81\x71\x35\xbd\x5c\xed\x64\x3b\x15\xb4\x91\x87\x25\xc4\x74\x11\x32\x19\x71\xc3\x91\x5d\x06\x8c\xfc\xa1\x5c\x17\x1d\xfa\x5a\x6e\x8b\xe2\x7d\x7a\x60\x3a\x33\xd6\x3c\x99\xa4\x9b\xe3\x57\x61\x6a\x5c\x88\x4b\x4e\x34\x89\x07\x45\x91\x40\x96\x89\x0d\x55\x90\x0a\x5b\xe0\x47\x73\x2d\x2f\x16\x32\x90\x48\xf3\x8f\x4e\x85\xf3\x3a\x4c\xce\x4d\x2d\xa3\x31\x29\xa1\xe0\xe7\x1a\x87\x08\xef\x5c\xc1\xbf\xc5\x12\x73\x31\x86\xd7\x97\xb7\xff\xe7\x58\x4d\xf2\x65\x57\x14\x65\x59\x92\x22\xc5\x2f\xc5\xcd\xed\xb7\xdb\xbd\xbb\xdd\xc1\x2f\xc5\xcd\xcd\xed\x9a\xf3\xed\x0e\xb8\x41\x2c\x6e\x7e\xdd\xf0\x36\x5f\xad\xb7\xe9\x2f\x78\xbb\x83\xdf\xa7\xd5\xb3\x83\xd1\x8f\x98\x3f\xcb\xc6\xd7\xc5\xaf\xc4\xb5\x28\xde\x84\xd5\x3f\x06\x20\x08\xa4\xfd\xe7\xa8\x23\x02\xaa\x30\x49\xf3\xf1\xdc\x8e\xf9\x8d\xfc\xd9\x5d\x14\x32\xde\xfe\xff\x00\x00\x00\xff\xff\x19\xd3\x85\xd8\x92\x21\x00\x00") +var _runtimeHelpOptionsMd = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x5a\x5f\x8f\xe4\xb8\x71\x7f\x1e\x7d\x8a\xc2\x9c\x81\x99\x39\xf4\xf4\x1e\x9c\x7d\x30\xfa\x25\xd8\xbb\x4d\xd6\x0b\x67\x6f\x8d\xdc\x3a\x39\x23\x0e\x2c\x4a\x2a\xb5\xe8\xa1\x48\x99\xa4\xba\x57\x7b\xb8\x7c\xf6\xa0\xaa\x48\x49\xdd\xd3\xd3\x7b\x6f\xd3\x22\x59\xff\x58\x7f\x7e\x55\x9c\x6f\xe0\xe3\x10\xb5\xb3\xa1\x28\x3e\xe8\xda\x3b\x08\xd1\x79\x0c\xa0\x8c\x01\xd7\x42\xec\x10\xc6\x80\x1e\x6a\x67\x5b\xbd\x1f\xbd\xa2\xcd\xa0\x2d\xe8\x18\xce\x3e\x36\xda\x63\x1d\x9d\x9f\xb6\x99\xd6\x18\x30\x30\x89\xf2\x77\x3f\xbf\x7d\xf7\xf7\x1f\x3e\xfe\xf8\xef\xef\xdf\xfd\xfd\x8f\x1f\x3f\xfc\xdb\xab\x9e\x36\x94\xa0\x64\xfd\x25\x42\xf0\x26\xc0\x80\xbe\xa0\x3d\x3f\xbf\x7d\x07\x61\xc0\x7a\x03\xba\x7d\x4e\xb0\x04\x1d\xc0\xba\x08\x01\xe3\x06\xca\xff\x7b\xb5\x15\x9a\x99\x91\x0e\x24\x4d\x43\x0c\x8b\x85\xe3\x89\xcc\x7f\x44\x8f\xa0\x3c\xb2\x44\x4e\xac\x02\xb1\x53\x11\x26\x37\x42\xad\x2c\xd1\xde\x15\xc5\xb7\x50\xaa\x31\x3a\x6d\x1b\xb4\xb1\xdc\xc1\xb1\x43\x0b\xb5\x47\x15\xb5\xdd\x83\x02\x8b\x47\x30\xda\xb2\xe1\x98\x56\x50\x3d\x82\x6c\x17\x05\x93\xd6\x05\x00\x0c\x1e\x0f\xda\x8d\x81\x4f\x6c\x8b\xe2\xa6\xc1\x56\x8d\x26\xc2\x41\x99\x11\x77\x50\x3a\x5b\xce\x2c\x83\x3a\x60\xb9\x03\x56\x09\x8e\xda\x18\xa0\x2f\x4c\xab\x1a\xdb\x16\x3d\xe0\x01\xfd\x04\x7f\x80\x80\xb5\xb3\x4d\x00\x3a\xd5\xab\xa8\x6b\x65\xcc\xb4\x05\xbe\x16\x62\xab\x4c\x48\x14\x4e\x76\x08\x3d\x65\x1b\xf8\xe7\xa8\xa3\x68\x46\xca\xe3\x67\xfa\xa5\x63\xe7\xc6\x08\x2a\x3c\x69\xbb\xdf\xc2\xf7\x48\x94\x6a\xe5\xb1\x1d\x8d\xec\x1d\x03\x99\x20\x76\x3a\x40\x8b\x2a\x8e\x1e\x37\x50\x61\xad\xc8\x12\x44\xa7\xd7\xfb\x2e\x82\xaa\x6b\xcd\xc6\x58\x38\x42\xab\x0d\x6e\x88\x9e\x3b\xa0\x3f\x7a\xcd\xb6\x3c\x92\xf1\x8f\x62\x2d\x8f\x50\x61\xeb\xfc\x65\x23\xb5\xad\x58\xa9\x76\xc6\xf9\xda\x99\xb1\xb7\xe5\x8e\x1c\x85\x65\x59\x5c\x03\xa2\x83\xef\x36\xc0\xda\x18\x03\x8d\x0e\x83\x51\x13\x28\x90\x33\xa0\x22\xf1\x2a\x80\x3d\x4d\xb7\x1a\x9b\xb4\xb2\x85\x4f\x89\xd2\x18\x58\x5f\xdd\xb2\x46\x47\x65\x63\x3e\xfc\x87\xef\x88\x7c\x85\xd0\xe9\x7d\x67\x48\x55\x6c\x32\x29\x65\xa0\x75\x1e\xf0\xb3\xea\x07\x73\x51\x87\xef\x56\x1a\x84\xba\xc3\x9e\xae\xda\x38\xd5\xe4\x10\x99\xbf\x4b\x8c\x36\x14\x85\x64\xb1\xdf\xdd\x8b\x33\xbf\xd5\xfe\xe1\xd5\x6a\x5b\x78\x55\x8a\x17\x97\x5b\xf6\x98\x8d\xa8\x10\x30\xb2\x71\x75\x80\x72\x6f\x5c\xa5\x0c\x38\x6b\xa6\xf2\x92\x4c\xe9\x77\x59\x14\x37\x3f\xba\x88\x12\x0d\x24\x4d\xde\xb8\x66\x07\xf7\xe9\xeb\x06\x82\x33\xca\xeb\x2f\xd8\x6c\xd8\x99\xe6\x9f\x8f\xb1\x7e\x28\x6e\x28\xc6\xe8\x3e\x8c\xab\x55\x14\x3d\x66\x0d\x16\x7f\x89\x1d\x4e\x1c\x8e\xd8\x57\xd8\x34\xb2\x8f\x78\x8b\xfb\x57\xda\x2a\x0e\xdb\x9b\x4f\x67\xd6\xa1\x48\xad\x10\x02\x1a\xac\x89\x7c\xeb\x5d\xcf\xf9\x8c\x0e\x93\x9f\x85\x4c\xa9\xb8\x39\xcb\x13\xa7\xe6\x5b\x27\x22\x49\x68\xb5\x23\x3d\xab\x69\xd6\x9f\x62\x02\x62\xe7\x11\x8b\x9b\xf5\xd9\x5d\x51\xdc\xfc\x35\x65\x0d\x8f\xaa\x81\xde\x51\x72\xa9\x28\x7e\x98\xd3\x5d\x38\xb5\x5d\x92\x28\x5d\x7f\x09\x1d\x9a\x01\xa2\x1b\x74\x5d\xdc\xdc\x97\xfc\x2b\x2d\x3d\x6c\xc5\x4f\x46\x1f\x9c\xa7\xac\x51\xee\x16\x87\x63\x22\x9c\x7c\xe6\xab\x92\x8d\x74\xdd\x92\xb8\x15\x34\x9a\x72\x05\xda\x74\x7d\xe4\x43\xf7\xb3\x8b\xd1\xc6\x06\x5b\x6d\xb1\x21\x45\xcf\x5d\x8f\x7c\x9e\x2e\x85\x23\xfd\xe1\x5a\xc2\x42\xd7\x5a\x3c\x26\x01\x57\x29\xeb\x34\xe1\xa8\xa6\x91\x94\x29\x42\xbb\xf9\x92\x2e\x91\x6e\x95\x09\x28\xd4\x5b\x15\x62\xa3\x7d\x9c\xca\x9d\xc4\x78\x83\x11\x7d\xaf\x2d\x06\x49\x1b\x4f\xda\x36\x54\xc1\x94\xd9\x3b\xaf\x63\xd7\x27\x19\xa4\x26\xb9\x65\x3f\xe8\x96\x33\x62\x4e\xa1\x3a\x40\xef\x1a\x89\x7d\xe7\xc9\x51\xb7\xf0\xdf\x94\xdc\x56\x3c\xc5\x9a\x9b\x44\xf2\x1f\x63\x88\x42\x57\x11\xa5\xca\x39\x83\xca\x42\x99\xc9\x94\x72\x19\x12\x7b\xc4\xbb\x8c\x7e\x44\x2e\x7e\xc1\x2d\xe5\x80\xeb\x6c\xaf\x9e\x88\x8e\x05\x6c\x74\xdc\x12\xb9\x9c\x77\x88\xfb\x06\xaa\x31\x66\x07\xd7\x56\xd5\x35\xd5\x4c\xdc\xc2\xfb\xf6\x99\x78\x6d\xbb\x21\xb2\x76\x65\x7b\x22\xd7\xa9\xd0\x65\xbf\x60\x1f\x48\x6a\xab\xbd\xd2\x36\x44\x50\xb2\x23\xd5\x7e\xe7\xf5\x5e\x5b\x4a\x5e\xda\x20\xdc\x73\x95\xc3\x46\x92\xbd\x24\xca\x7c\x9e\xd2\x34\x65\x2b\x6c\x1e\x96\x5c\x29\x5e\x9f\xa4\x64\xd9\x5d\xc5\xe5\xce\x4c\xb2\xe6\x31\xb8\xd1\xd7\x4c\x48\xdb\x88\x36\xe8\x03\xa6\xf3\x92\xbc\xc4\xd4\x66\xe2\xf4\x39\xa0\x1b\x0c\xc2\xb1\x73\x14\x55\xe4\x3f\x54\x7e\x52\x5c\x75\xea\xa0\xed\x9e\xef\x32\x73\x9c\x2f\x32\x44\x15\xc7\x70\xcd\x5d\x49\xc1\xd6\xf9\x5e\xc5\xaf\x79\x14\x7b\x2a\xda\x46\xdb\x7d\x58\x3b\x36\x25\x2d\x12\x32\xd9\x85\x9d\x18\xfe\xf2\xe3\xfb\x9f\x4f\x4f\x90\xc0\xec\x31\xe5\xdf\x6c\x09\xf7\xa6\x7d\x20\x73\x7a\x54\x01\x1a\x17\x9e\xed\x25\x52\xe5\xdf\x3c\xef\xad\xbd\x69\xd9\xba\x08\xf1\xe8\x60\x70\x21\xe8\xca\xa0\xe8\x12\x12\xf3\xc5\x72\xc4\xa9\x1c\xad\xfe\x5c\x72\x16\x2e\x1b\x17\xca\xe4\x52\x12\x63\xa2\xaf\x48\x5f\xe1\x59\x64\x92\xfa\x9c\x3f\xe9\x6c\x2a\x94\x14\x12\x92\xa8\xc4\xa0\x24\xac\xf8\x40\x3c\xe1\xfc\xbc\x4c\xba\xd1\x34\x60\xf4\x13\xc7\x78\xdd\x29\xbb\xc7\x25\x57\x65\x75\x29\xfb\x70\x30\xe6\x2c\x13\xa2\xf2\x2b\x54\xf5\x52\x5e\x60\x1d\xe7\x5b\x8c\xd3\x40\x29\x27\x60\x0c\x73\x36\xa1\x6f\xf9\x72\xce\x3c\x7f\x7b\x5e\x16\xd9\xe2\x54\x9b\x5e\x2e\x8c\xac\xeb\x65\xb3\x51\x88\x37\x38\x88\x4a\xd9\x5a\x1c\x3d\xa4\x54\xa7\x0e\x58\xdc\xb8\x01\x2d\x8b\xab\xf7\xd6\x79\xac\x55\x20\x81\x07\xf4\x74\x21\x40\x3f\x1f\xb5\x0d\x14\x0c\x51\x1f\xa8\x92\x29\x5f\x77\x78\xd9\x7d\x33\xf2\x11\x7c\x59\x77\xca\xaf\x75\x5f\xa3\x4e\x5a\x53\x75\x44\x7f\x89\x0e\x64\x2a\xad\xab\x98\x04\x5a\x55\x99\x04\xdf\xf9\x92\x52\x39\xa9\x5c\x8c\xae\xcf\xf9\x81\xb2\x94\xf3\xe2\xc0\xd0\x63\x08\x6a\x8f\xb3\xdb\x0e\x9e\x42\xba\x79\x16\xce\x5f\x85\x1d\x39\x26\x9f\x10\x87\xe7\x50\x5b\x40\xe6\xf2\x7d\x03\xc7\x4e\x47\x0c\x83\xaa\x91\xc8\x2b\x06\x0b\x74\xd9\x93\x1b\x85\x39\x03\x4b\xe1\xbf\x8a\x6a\xdd\x2e\x08\xb7\x77\x87\xb9\xfc\x58\xfc\x1c\x45\xe7\x19\xf2\xda\x09\xe8\x46\xbc\xb4\x4a\x00\xbc\x6f\xc5\x36\x66\xa4\x2a\xcc\x43\xc7\xfe\x5e\x11\x50\x32\xc8\x36\xf8\x7e\x01\x0d\x74\x76\x11\x9f\xa8\x9d\x2a\x90\xce\x08\x7c\x4d\xd6\xe7\xf4\x8a\x6d\x04\xec\x87\x38\x5d\xf5\x84\x27\x9c\x7a\xb4\x63\xb9\x9b\xe1\x2d\x2b\xa5\xac\x7b\x0c\x71\x32\x08\x4f\x38\x01\xed\xb8\x7c\xa5\xa1\xf6\x88\x76\x0b\x04\xf8\x44\x53\x15\xe1\x93\xdb\xef\x0d\xfe\x09\xa7\x0f\x74\x4e\x07\xa8\xdc\x68\x1b\xae\x65\x6f\x4c\x7c\xdc\x97\x6b\x50\x44\x09\x23\xe3\xee\x25\x71\x68\x9b\xed\xb6\xe4\x8e\x2d\x7c\x72\xb4\x85\x5c\x8d\x8f\x6c\x20\xe8\x7e\x30\x13\x91\xcb\x94\x89\xc9\x5f\x6c\xa5\x6d\xf3\x27\x7c\xc1\x5f\xb2\xea\xbd\x1b\x39\x94\x8e\x1d\x52\xcb\x40\x47\xc5\x8f\x81\x57\x20\x8c\xc3\xe0\x7c\x2e\xe8\x27\xdf\x92\xb0\xb4\xb9\xe1\x46\x64\x0c\x23\x07\x34\x49\x2c\x2e\xa3\xcc\x12\xf3\x2c\xb0\xa3\x4a\x83\x21\x24\x4a\x78\x40\x1b\xa9\x58\xe8\xba\xcb\x45\x5a\xd2\x20\x97\xb7\x55\xc3\x40\x39\xd0\x0d\x93\x40\xd3\x13\x06\x54\x83\x09\x2f\xba\x56\x16\xa5\xbe\xdc\xeb\x96\x1b\x23\x08\xa1\x23\xcf\x26\x7a\xa9\x95\x38\x01\xcc\x0b\x9d\x8e\x7c\x51\x84\x4b\x5e\x2d\x19\xad\x36\x7a\xa8\x9c\xf2\x92\xd6\xfb\xdc\x0f\x36\x0e\xb9\x47\xba\x8a\xe8\x06\x33\xee\xb5\xa5\xe4\x6d\xd1\x84\x72\x47\xa8\x3d\x12\x6a\x98\xd1\x75\x5e\x9b\x31\xae\x1c\x81\x5e\x59\xb5\x27\x90\xc0\x3d\x2b\xa7\x33\x2e\x91\x54\xd2\x79\x07\x01\xe0\x2d\xbc\xc9\x04\x18\x2b\x89\x23\x28\x30\x3a\x44\xb2\xc7\x9d\xc7\xc1\x05\xca\x37\xd3\x1d\xfc\x23\x38\x9b\xc0\x3c\xdb\x9b\x5b\x51\x11\x07\x7a\x8c\xaa\x51\x51\x25\x5c\x40\x82\xed\xf5\x01\x6d\xe2\xb5\x85\x9f\x50\xac\x55\xfe\x59\xc4\xfb\x20\xe2\x95\xd4\x36\x73\x92\x70\x6d\xf6\xd5\xa4\xf4\x09\x22\x67\xb9\x19\xbe\x50\xba\xa4\x12\xaa\x9d\xbd\x64\xb8\x2e\xc6\x21\xec\x5e\xbd\xda\xeb\xd8\x8d\xd5\xb6\x76\xbd\xb4\x19\x8f\x92\x36\x5f\x09\xed\xc7\xa4\xf4\xda\xc8\xac\xea\x25\x0b\x2f\x46\xd0\x18\xee\xae\xd9\x99\x34\x10\x53\x5f\xb0\xf3\x62\x4a\x62\x11\x74\x88\x81\xc1\x32\x94\xb4\xb2\x25\xeb\x96\x52\xb5\xce\xad\x1b\x16\xf3\x12\x59\x05\x94\x8d\x0d\x66\xdb\xbe\x5c\x5a\x7c\x1f\xbd\xd2\x46\xdb\xfd\x31\x5c\xeb\x08\xa2\xd7\x3d\xe4\xad\xab\xcc\x18\x28\x5d\xa1\x33\x5f\x69\x0c\xfc\x68\xd0\xaf\x72\x1f\x67\x4f\x3b\xf6\x15\xfa\xab\xf8\x2f\xa8\x03\x4a\xab\x54\xee\xc0\x63\x4f\x5d\x67\x2e\x6c\xab\x36\x8a\xf3\xb0\x0a\x11\xa2\xee\x71\xa9\xed\xf4\x99\xaa\xba\xc0\x25\x2e\x7e\x63\x04\x1d\xd3\xe4\x62\x2e\x33\xb4\x67\x39\xc5\x98\xfb\x6a\x42\x23\xa9\x3a\x4d\xfd\xfe\xb4\x16\xab\x76\x7d\x4f\xf1\x9b\x96\xa0\xc2\x78\x44\xb4\x50\x1b\x27\xc5\xd1\x36\xe0\xf1\x91\xb8\x25\x48\xcc\xe6\xde\x16\xf4\x27\x5c\x33\xc1\x68\x1b\x97\x0b\x6d\x3c\x47\xe1\x1b\xa0\x65\x0e\x4e\x75\xc0\x86\x13\x1e\xa8\x36\xa2\x97\x11\x99\x71\x21\xcf\x72\xd8\xfb\x5c\x4e\x7a\x69\x85\xa5\x62\x13\xa4\x81\xcf\x3c\x59\xa3\x4a\xcf\xc4\xb5\xdd\x5f\x37\x48\xed\x9d\x31\x02\x51\x96\xe9\x8d\x7c\x85\x4a\xf9\x17\x34\x3c\x3d\xde\x2b\xbf\xd7\xb6\xdc\x81\xea\xdd\x68\x63\x06\xf5\xe1\x02\x54\x0d\xc8\xed\x45\x9a\x8a\x55\x68\xdc\x31\x03\x7c\xf1\x88\x4b\xd2\xfe\xcb\x9a\x59\x18\x10\x9b\x0b\xbc\x88\xb8\x88\x4d\x71\xe4\x2c\xe6\x9f\x5c\x46\x2e\x91\xfd\x7d\x22\xeb\xda\x78\xf4\x6a\x20\x9c\x27\x38\x23\xc5\x92\x57\x43\xa6\x4d\x35\x9b\x47\x99\xce\x81\x71\x76\x4f\xdc\x5a\x1d\x67\xf4\x2e\x35\xfe\xaa\xa1\x07\xa3\xa3\x20\x83\xec\x0f\x0a\x3a\xe7\xf5\x17\xca\x03\x06\x78\x9d\x5c\x21\xf5\x84\x9b\x2c\x8c\x8e\x54\xf7\x72\xa7\xc8\x16\xcb\xc9\x34\x03\x6f\x3e\xfb\xaf\xd7\x82\x91\x36\x78\xbd\xef\xe2\xc2\xfb\x40\xe8\xab\xfe\xed\x9c\xa5\xec\x11\x6b\x26\x94\xe1\xcd\x6f\x97\x61\x46\x29\x67\x48\x4a\x16\xae\x80\xe2\x2b\xd6\xcd\xb4\x27\x1b\xd5\x67\x6a\x34\x47\x6f\x03\xc8\x4f\xba\x1c\xf2\x84\xb6\xbd\x7a\x74\xac\x7b\x72\xa7\x3c\xa0\x14\x84\x1e\xc6\x01\x7d\x9e\xd4\x73\x6e\xd8\xc2\x47\x42\x38\x21\x42\x98\x42\xc4\x3e\xcc\x90\xec\x36\x8c\x8d\xbb\xa5\x9e\x8d\x61\xb1\x85\xef\x7f\x7a\x4b\xb6\x4b\x88\xe5\xb6\x71\x2a\x6c\x6f\x4f\x40\x7b\x5a\xaa\xc7\x10\x5d\xaf\xbf\xa4\xa6\x30\x77\xe6\x3c\x58\xa7\x5b\xe2\xa0\xe7\x2e\x5c\x06\x63\x61\xbc\xa4\x09\xb1\x17\x5d\xa2\xaa\x08\x77\xf7\x02\xee\xad\x3a\xe8\x3d\x75\xed\x4b\xba\x67\xdb\xe2\x5e\x5b\xcb\xcd\x54\x0e\x1d\x15\x12\x36\x96\x01\x61\x54\x15\x63\xf2\x7b\xdc\xee\xb7\x82\xe4\x19\x2c\xbd\x5e\x51\x72\xb6\xc6\x87\xd3\x4e\x84\x65\x67\xe0\xa3\xec\x14\x3b\x6e\xfe\xb8\xee\x93\x5c\x21\x3a\x39\x9c\x66\x3d\x57\x63\x85\xf6\xeb\x2f\x27\x4d\x67\x54\x15\xd0\x37\x46\xaf\x69\x0c\x7b\x81\xc4\xeb\x85\xc0\xcc\x70\xc7\x93\x84\x24\xfa\x0a\x0f\xb2\x9a\xd7\xa4\x40\xdf\x47\x1d\x0d\xfb\x2b\x4f\xf0\xc2\x0c\x84\x65\x90\x45\xf9\xcd\xcf\x18\xf1\x2e\x00\x6f\x9f\x41\x2d\xb5\xae\xd5\xb4\x80\x42\x0e\x3c\xa9\x6a\x57\xd5\x1f\x03\x0e\x5e\xf7\xca\x4f\x25\xdc\x67\x8f\xa0\xe6\xdf\x59\xf8\xd6\xea\xcf\x0f\x2f\xca\x73\x36\x3d\x49\xf1\x9a\x88\xad\xb0\x6a\xc6\xcb\x32\xd3\xe5\x87\x99\x34\x30\xad\x54\xfd\xb4\xf7\xd4\x8c\xa4\xcb\xcd\x48\x16\x54\xdb\x62\x1d\x73\xea\xb1\x84\xd3\xd6\xf0\x57\xba\xc8\x1f\xa2\x37\x8f\x3f\xb0\x37\xf3\x9f\xff\xf5\x62\xe8\x3d\x3e\x3e\x16\xc5\xdb\xb4\x92\xe0\x56\x7a\x24\x5a\xde\x84\xb8\xce\x51\xae\x3f\x41\x34\x52\xfd\xca\x5f\x7e\x2d\xa1\xbc\x7f\x28\xa1\xfc\x9f\xff\x2d\xa1\xbc\xbd\x2d\xa1\xbc\xbb\x2b\xb7\xf0\x67\xef\x0e\xba\x99\xe7\xad\xec\x82\x0b\xb5\xc4\xec\xda\xe8\x2a\x26\x41\xca\xdd\xaa\x0d\xdb\x9c\xbc\x13\x61\x84\xe0\xfa\xe5\x5d\xab\x52\x61\x19\xe6\xe4\x09\xc9\x16\xde\xcc\x06\xeb\x5d\xcf\xbd\xf5\xf9\x15\xa9\x4a\x06\x4d\xbd\x7a\x42\xc1\xdf\x3c\xe1\x17\x6f\x65\xa0\x39\xc5\xce\x59\xfe\x3a\xa9\xde\xe4\x51\x58\x00\x8f\x7b\xe5\x1b\x43\x2d\x89\x6b\xc5\x15\xd3\xd0\x25\xf0\x00\xf3\x79\xf1\x5d\x77\x86\x50\x61\xa7\x0e\x5a\x7a\x1f\x4a\x9b\x27\xf0\xe4\x2b\x49\xd3\x68\x1b\x19\x15\xbe\x39\xb9\x18\xfa\x3c\xcf\x32\x05\x92\x65\x6c\xf3\xec\x56\x66\x22\xec\xa1\x2f\x82\x5d\xe6\xf8\xc6\x4e\x59\x30\x52\x8a\x8c\x9f\xdc\x35\xcf\x4b\x72\xc4\x31\x8c\x5a\x4d\xbd\xa1\x38\x7f\x91\x98\x4d\xc4\x1d\x4f\x70\x1b\x22\x85\xec\xdb\x1b\x31\xe2\xe9\xe3\xa9\xc0\xd1\x44\xbf\xc8\xc5\x70\x9e\x86\x88\x9d\xef\x16\x1b\x47\xf5\x84\x97\xe8\x70\x02\x27\xe9\xa9\xcb\xb5\x8e\xa2\xb6\xe8\x55\xdd\x69\x8b\x73\x93\xce\x31\xc9\xe5\xe7\x44\xc8\xa4\x0f\x9f\x81\x74\x66\x5b\x14\xc5\x37\xdf\xc0\x3b\x99\xfc\x90\x73\x48\x3f\x9a\x4f\x16\xc5\x5f\x97\x47\x56\x3a\x1e\x16\xaa\x80\x9a\x49\xc9\xd8\xc8\x4c\x94\x3d\xf8\xb4\x99\xb6\xf0\x1f\xf2\x07\xf4\xa8\xf2\x73\x2d\xc5\x50\x1e\xe7\x1d\x9d\xbd\x8b\x27\xa6\x3e\x7f\x1b\x3e\xb5\x70\x99\xa6\x17\x2a\xce\x8f\x84\x94\xd1\x8a\x94\x1e\xd3\x35\x9e\x4f\x10\x7f\x4a\xdc\x54\xce\x09\x8b\xac\x3a\xac\x1f\xcc\xf8\x3d\xac\x98\x43\x72\x79\x69\xe6\x97\x19\xba\x34\xa6\x48\x9d\xca\xa7\xe5\x39\x48\x5e\x03\x57\x50\x7c\x35\x40\xdb\x24\x81\x71\x35\xfc\x5c\xed\x64\x3b\x15\xb4\x91\x67\x2d\xc4\x74\x11\x32\x19\x71\xc3\x91\x5d\x06\x8c\xfc\xa1\x5c\x17\x1d\xfa\x5a\x6e\x8b\xe2\x7d\x7a\x9f\x3a\x33\xd6\x3c\xd8\xa4\x9b\xe3\x47\x65\xea\x7b\x88\x4b\x4e\x34\x89\x07\x45\x91\x40\x96\x89\x0d\x55\x90\x0a\x5b\xe0\x37\x77\x2d\x0f\x1e\x32\xcf\x48\xe3\x93\x4e\x85\xf3\x3a\x4c\xce\x4d\x1d\xa7\x31\x29\xa1\xe0\xe7\x1a\x87\x08\xef\x5c\xc1\xbf\xc5\x12\x73\x31\x86\xd7\x97\xb7\xff\xe7\x58\x4d\xf2\x65\x57\x14\x65\x59\x92\x22\xc5\x2f\xc5\xcd\xed\xb7\xdb\xbd\xbb\xdd\xc1\x2f\xc5\xcd\xcd\xed\x9a\xf3\xed\x0e\xb8\xbf\x2c\x6e\x7e\xdd\xf0\x36\x5f\xad\xb7\xe9\x2f\x78\xbb\x83\xdf\xa7\xd5\xb3\x83\xd1\x8f\x98\x3f\xcb\xc6\xd7\xc5\xaf\xc4\xb5\x28\xde\x84\xd5\xff\x15\x20\x08\xa4\xfd\xe7\xa8\x23\x02\xaa\x30\x49\xf3\xf1\xdc\x8e\xf9\x89\xfd\xd9\x5d\x14\x32\x1d\xff\xff\x00\x00\x00\xff\xff\x81\x4c\x32\x0f\xd1\x21\x00\x00") func runtimeHelpOptionsMdBytes() ([]byte, error) { return bindataRead( @@ -2370,7 +2391,7 @@ func runtimeSyntaxLispYaml() (*asset, error) { return a, nil } -var _runtimeSyntaxLuaYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\xdf\x6f\x1c\x35\x10\x7e\xcf\x5f\x71\x84\x46\x4d\x5a\x5d\x28\xe5\x01\x88\x9a\x4a\xa8\x2a\x88\x07\x8a\x00\xa9\x2f\xe7\xa3\xf2\xee\xce\xee\x99\x78\xed\xcd\x78\x9c\xbb\xc0\x07\x7f\x3b\x1a\xef\x5e\x72\xb9\xf6\x10\x48\x95\x58\xe9\xfc\x63\x6c\xcf\x37\xbf\xfc\xf9\x5a\xe7\x49\x6e\x07\xba\x98\xf9\x6c\x8f\x8e\x1a\x12\xaa\xe5\xe2\x68\x36\x9b\xcd\x74\x29\xd8\x9e\x2e\x66\xc7\xc6\x9c\xfb\x6c\x1f\x1d\x1f\x1d\x71\xf6\x94\xc6\xf5\xf9\x2c\x89\x15\xea\x29\x48\xd9\x52\x9d\x36\x11\x14\x1a\xac\x57\xce\x13\x98\x06\xb2\x82\x1c\xc4\x79\xb8\x16\xe4\x13\xb9\x16\xb2\xa2\x50\xc6\x68\x23\xc3\x05\xb4\x39\xd4\xe2\x62\x80\x8f\xb5\xf5\x60\x92\xcc\xe1\xcc\x98\xea\xf8\x00\x4a\x88\x02\x1b\x1a\x44\xfe\xa7\x5d\x0d\x55\xb9\x43\x12\x76\xa1\x43\x6f\x65\x05\xb1\x95\x27\xb8\x88\x3a\x72\xcc\xe2\x02\x21\x26\x64\x69\xbf\x42\xe5\xe4\x8b\xe7\xaa\xcd\x98\xf3\x43\x0a\xdf\xbd\x7e\xf3\x16\xef\xbe\xc3\xbb\xb7\xaf\x7f\xfe\xe5\xfb\x1f\xdf\xc0\xa6\x44\x2c\xa8\xa3\xf7\x54\x4b\x67\xb9\xb2\x1d\xa1\x89\x1a\x37\x10\x73\x64\x74\x24\x2d\x85\x1b\xed\x7b\x12\x3b\x59\x30\x58\xc7\x09\x3e\xda\xa6\x34\x65\x7f\x1f\x9b\xec\x09\x81\x36\x82\x71\x7d\xa8\xad\xf7\x18\xd8\x05\x01\xdb\x35\x5d\x67\x8d\x8e\x5d\x77\x54\xe6\x9e\x82\x76\x49\x67\x74\x9d\x1d\x13\x12\xa9\x21\x48\x13\x68\xda\x05\x95\x18\x72\x5f\x11\x43\xe2\x14\x13\xcd\x3a\x72\x18\x6c\x7d\x85\x4d\x01\x3b\x33\x26\x3d\x31\xe6\x74\x1b\x01\xd7\x50\x10\xd7\x3a\xe2\x8b\xd9\xb1\x8b\xc6\x9c\x6b\x1c\x6a\x1f\x35\x79\x3e\xa7\x15\x5c\x18\xb2\xc0\xbb\x40\x09\x71\xa0\x80\x98\x45\x25\x43\x99\x30\xd9\x06\xd2\x0f\xc5\xc1\x02\xb7\x66\x27\xb4\x9b\xb5\x07\x10\x9a\xa5\x09\xc4\x56\x09\xb6\x8e\x09\x36\xb9\x00\x2b\x36\x3c\x2f\x2d\x6a\x72\x1e\x75\x4c\x2b\x6d\xd0\x50\x07\xda\x0c\x68\x7d\x8c\x8c\xb6\x8f\x0d\x5a\x56\xc1\x2a\x77\x04\xdf\xe8\xd0\xc7\xee\xf3\x67\xda\xa2\xb7\x1b\xfd\xb9\x20\xd4\x11\xa3\x77\x41\x7f\x77\xd3\xd8\xb4\x18\x1c\x86\xb8\x06\xdb\x06\x6c\x43\x13\xfb\xa9\x4b\x44\x0d\x92\x0b\x2b\xa4\x6b\x16\xa8\x25\x12\xb7\x27\xc7\x48\x7a\x39\xe8\x58\x4c\xf7\xb1\xab\xaf\xd0\x58\x21\x34\xae\x6d\xc5\xf5\x04\xda\x50\x9d\x45\x7b\x27\x5a\x28\x9a\x3a\xa6\x3e\xde\xe8\x15\xd2\xfb\xa7\x89\x2c\x77\x83\x50\x0e\x48\x3f\xa8\xf8\x20\x9a\x66\xd4\x76\xb4\x85\x8c\xa1\x75\x1d\xea\x41\xaf\x80\x96\x1b\x8d\x55\xe7\x5d\x85\x22\x1b\x98\x4a\x29\x26\x22\x2d\xb8\x44\x96\xeb\x15\x71\x9a\x46\xba\xe7\x20\xd4\x58\x4a\x13\x52\x75\x2b\x84\x7a\x65\x19\x4d\xee\x07\xb4\x2e\x34\x7a\xc7\x7b\x2b\xe8\x7a\x2b\xf5\x0a\x5d\xca\x15\xb4\x70\x7d\x5c\x6b\xc4\x8b\xb0\x14\xa0\x36\xc9\xfd\x5e\x58\x03\x4c\x37\xc4\x89\xa0\xbb\xa7\x02\xcd\xc3\x40\x7c\xd0\x8c\x52\xe2\xf7\xfe\xd6\x56\xe0\x42\xb9\x9c\xbd\xdd\x04\x94\x58\x16\x35\x53\x5c\x53\x64\x99\x34\x1f\xd4\xa9\xbc\xb0\x55\xa9\x3e\x69\x33\x58\x11\xe2\x80\x3a\x36\x94\x4a\x3b\x68\x11\x14\x97\x62\xdb\x26\x3a\x5c\x02\x77\x9c\xb3\xd5\xc9\xa4\x55\xe0\xd2\xad\x23\xdf\x94\x2b\xca\x94\x72\x4f\xe0\x1c\x82\xde\x4f\xe5\x9f\x9c\xb0\x66\x3b\xa0\x6c\x3a\xa8\xbb\x50\xdd\xa4\x77\xa4\xbd\x1d\xde\x59\xc5\x78\xa5\xbd\x0b\x6d\xd4\x7e\x64\xd9\x07\x84\xd4\x91\x30\x75\x2e\x09\xdf\xea\x38\x0f\x37\xd6\xe7\x22\xce\x89\x78\x9c\xec\x90\x4a\xd1\xb8\xad\xc9\x87\x2c\x93\xee\x4f\xa7\xdd\xd3\xc2\xb6\xa6\x6a\x4c\x64\x91\xb8\x66\x3b\xfa\x2d\xba\x70\xd0\xb3\xc2\xcb\x5b\x4a\xe0\xb4\x72\xad\xa0\x52\xee\xaf\xf4\x11\xa8\x22\xa3\x12\x4a\x82\x6a\x13\x19\xb4\x51\x18\xa5\xc3\xc1\xdb\x9a\xe0\x39\x2a\x85\xc3\x8f\xe7\x78\x9a\x8e\x6a\x0e\x42\x1a\x73\xb1\xcf\x72\x23\xbf\x15\x36\x4b\x44\xc5\xf7\x9b\x2a\xb7\xef\xb3\x59\x1d\x43\x12\x7b\xf7\x62\xb4\x56\x9f\xb9\xe0\x3c\x84\x33\x1d\x7a\xac\x4e\xc7\x97\xb3\x1d\xdf\xcc\x91\xc9\x5d\xa8\x7d\x6e\xe8\x0c\x27\xd7\x38\xf9\x04\x27\x3f\xe1\x84\x71\xb2\xf9\x10\xd6\xf9\xc8\xeb\x13\xe4\xe2\xd9\xfc\xeb\xe5\xd3\x07\x50\xb7\x7d\x15\xfd\x88\x73\x0a\x63\xce\x60\xcc\x02\xc6\x2c\x61\xcc\x1f\x30\xe6\x4f\x18\xf3\xc4\x98\x27\xda\xe1\x33\x9c\xc0\x98\xa7\x98\xc3\x98\x5f\xf1\x12\x2f\x2f\xf1\x02\x2f\x2e\xf1\xd7\x25\x2e\x51\xf2\x70\x7e\x76\x7c\xb4\x6f\xc1\xc8\x02\xe3\x9f\x02\xfd\x92\x58\x2e\x31\x38\x3e\xbe\x93\x51\x68\xf6\x24\xe9\xca\x0d\xc5\xea\xbb\x37\x57\xbf\x9d\xff\x17\xdb\x6f\x17\x69\xa0\xda\x59\xff\x6a\x65\xf9\xfe\xe8\xbf\x35\xe7\xf1\xbe\x35\x8f\xff\x47\x63\x8c\x59\x18\xb3\x78\x2f\x3e\x66\x69\xcc\xf2\x63\x18\x30\xad\x4d\xf2\xc5\xb3\xf9\x97\xcb\xfb\x06\x2a\xdb\x68\xad\xd8\x79\xfb\xcd\xfc\xdb\xe5\xce\xb0\xac\x2d\x6c\x45\x6d\xe0\xb4\xc4\xa9\x4e\xeb\x22\x7c\x35\x2f\xdd\x0f\xdb\x6e\x94\x9d\xed\x3a\xdd\x97\x9a\x7e\xcf\xd9\x4f\xf7\xfd\x7c\xb4\xef\xe2\x6c\xb1\xdc\xd7\x32\xfb\x40\xcc\xe6\xc6\xcc\x3f\xa6\xae\xff\x92\x85\xa2\xf6\xef\x00\x00\x00\xff\xff\x3c\xdc\x4d\xae\x2f\x0b\x00\x00") +var _runtimeSyntaxLuaYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x56\xdf\x6f\x1c\x35\x10\x7e\xcf\x5f\x71\x1c\x8d\x9a\xb4\xba\x50\xca\x03\x10\x35\x95\x50\x55\x10\x0f\x14\x01\x52\x5f\xce\x47\xe5\xdd\x9d\xdd\x33\xf1\xda\x9b\xf1\x38\x77\x81\x0f\xfe\x76\x34\xde\xbd\xe4\x92\xf6\x50\x91\x90\x58\xe9\xfc\x63\x6c\xcf\x37\xbf\xfc\xf9\x5a\xe7\x49\x6e\x06\x3a\x9f\xf9\x6c\x8f\x8e\x1a\x12\xaa\xe5\xfc\x68\x36\x9b\xcd\x74\x29\xd8\x9e\xce\x67\x73\x63\xce\x7c\xb6\x8f\xe6\x47\x47\x9c\x3d\xa5\x71\x7d\x31\x4b\x62\x85\x7a\x0a\x52\xb6\x54\x27\x4d\x04\x85\x06\x9b\xb5\xf3\x04\xa6\x81\xac\x20\x07\x71\x1e\xae\x05\xf9\x44\xae\x85\xac\x29\x94\x31\xda\xc8\x70\x01\x6d\x0e\xb5\xb8\x18\xe0\x63\x6d\x3d\x98\x24\x73\x38\x35\xa6\x9a\x1f\x40\x09\x51\x60\x43\x83\xc8\xff\xb4\xab\xa1\x2a\x77\x48\xc2\x2e\x74\xe8\xad\xac\x21\xb6\xf2\x04\x17\x51\x47\x8e\x59\x5c\x20\xc4\x84\x2c\xed\x57\xa8\x9c\x7c\xf1\x5c\xb5\x19\x73\x76\x48\xe1\xbb\xd7\x6f\xde\xe2\xdd\x77\x78\xf7\xf6\xf5\xcf\xbf\x7c\xff\xe3\x1b\xd8\x94\x88\x05\x75\xf4\x9e\x6a\xe9\x2c\x57\xb6\x23\x34\x51\xe3\x06\x62\x8e\x8c\x8e\xa4\xa5\x70\xad\x7d\x4f\x62\x27\x0b\x06\xeb\x38\xc1\x47\xdb\x94\xa6\xec\xef\x63\x93\x3d\x21\xd0\x56\x30\xae\x0f\xb5\xf5\x1e\x03\xbb\x20\x60\xbb\xa1\xab\xac\xd1\xb1\x9b\x8e\xca\xdc\x53\xd0\x2e\xe9\x8c\xae\xb2\x63\x42\x22\x35\x04\x69\x02\x4d\xfb\xa0\x12\x43\xee\x2b\x62\x48\x9c\x62\xa2\x59\x47\x0e\x83\xad\x2f\xb1\x2d\x60\xa7\xc6\xa4\x27\xc6\x9c\xec\x22\xe0\x1a\x0a\xe2\x5a\x47\x7c\x3e\x9b\xbb\x68\xcc\x99\xc6\xa1\xf6\x51\x93\xe7\x73\x5a\xc3\x85\x21\x0b\xbc\x0b\x94\x10\x07\x0a\x88\x59\x54\x32\x94\x09\x93\x6d\x20\xfd\x50\x1c\x2c\x70\x1b\x76\x42\xfb\x59\xbb\x07\xa1\x59\x9a\x40\x6c\x95\x60\xeb\x98\x60\x93\x0b\xb0\x62\xc3\xf3\xd2\xa2\x26\xe7\x51\xc7\xb4\xd6\x06\x0d\x75\xa0\xed\x80\xd6\xc7\xc8\x68\xfb\xd8\xa0\x65\x15\xac\x73\x47\xf0\x8d\x0e\x7d\xec\x3e\x7f\xa6\x2d\x7a\xbb\xd5\x9f\x0b\x42\x1d\x31\x7a\x17\xf4\x77\x3b\x8d\x4d\x8b\xc1\x61\x88\x1b\xb0\x6d\xc0\x36\x34\xb1\x9f\xba\x44\xd4\x20\xb9\xb0\x46\xba\x62\x81\x5a\x22\x71\x77\x72\x8c\xa4\x97\x83\x8e\xc5\x74\x17\xbb\xfa\x12\x8d\x15\x42\xe3\xda\x56\x5c\x4f\xa0\x2d\xd5\x59\xb4\x77\xa2\x85\xa2\xa9\x63\xea\xe3\xb5\x5e\x21\xbd\x7f\x9a\xc8\x72\x37\x08\xe5\x80\xf4\x83\x8a\x0f\xa2\x69\x46\x6d\x47\x3b\xc8\x18\x5a\xd7\xa1\x1e\xf4\x0a\x68\xb9\xd1\x58\x75\xde\x55\x28\xb2\x81\xa9\x94\x62\x22\xd2\x82\x4b\x64\xb9\x5e\x13\xa7\x69\xa4\x7b\x0e\x42\x8d\xa5\x34\x21\x55\x37\x42\xa8\xd7\x96\xd1\xe4\x7e\x40\xeb\x42\xa3\x77\xbc\xb7\x82\xae\xb7\x52\xaf\xd1\xa5\x5c\x41\x0b\xd7\xc7\x8d\x46\xbc\x08\x4b\x01\x6a\x93\xdc\xef\x85\x35\xc0\x74\x4d\x9c\x08\xba\x7b\x2a\xd0\x3c\x0c\xc4\x07\xcd\x28\x25\x7e\xe7\x6f\x6d\x05\x2e\x94\xcb\xd9\xdb\x6d\x40\x89\x65\x51\x33\xc5\x35\x45\x96\x49\xf3\x41\x9d\xca\x0b\x3b\x95\xea\x93\x36\x83\x15\x21\x0e\xa8\x63\x43\xa9\xb4\x83\x16\x41\x71\x29\xb6\x6d\xa2\xc3\x25\x70\xcb\x39\x3b\x9d\x4c\x5a\x05\x2e\xdd\x38\xf2\x4d\xb9\xa2\x4c\x29\xf7\x04\xce\x21\xe8\xfd\x54\xfe\xc9\x09\x1b\xb6\x03\xca\xa6\x83\xba\x0b\xd5\x4d\x7a\x47\xda\xdb\xe3\x9d\x75\x8c\x97\xda\xbb\xd0\x46\xed\x47\x96\xbd\x47\x48\x1d\x09\x53\xe7\x92\xf0\x8d\x8e\xf3\x70\x6d\x7d\x2e\xe2\x9c\x88\xc7\xc9\x1e\xa9\x14\x8d\xbb\x9a\xbc\xcf\x32\xe9\xee\x74\xda\x3f\x2d\x6c\x6b\xaa\xc6\x44\x16\x89\x6b\x76\xa3\xdf\xa2\x0b\x07\x3d\x2b\xbc\xbc\xa3\x04\x4e\x6b\xd7\x0a\x2a\xe5\xfe\x4a\x1f\x81\x2a\x32\x2a\xa1\x24\xa8\xb6\x91\x41\x5b\x85\x51\x3a\x1c\xbc\xad\x09\x9e\xa3\x52\x38\xfc\x78\x8e\xa7\xe9\xa8\xe6\x20\xa4\x31\xe7\x0f\x59\x6e\xe4\xb7\xc2\x66\x89\xa8\xf8\x7e\x5d\xe5\xf6\x7d\x36\xab\x63\x48\x62\x6f\x5f\x8c\xd6\xea\x33\x17\x9c\x87\x70\xa6\x43\x8f\xd5\xc9\xf8\x72\xb6\xe3\x9b\x39\x32\xb9\x0b\xb5\xcf\x0d\x9d\xe2\xf8\x0a\xc7\x9f\xe0\xf8\x27\x1c\x33\x8e\xb7\x1f\xc2\x3a\x1b\x79\x7d\x82\x5c\x3e\x5b\x7c\xbd\x7a\x7a\x0f\xea\xa6\xaf\xa2\x1f\x71\x4e\x60\xcc\x29\x8c\x59\xc2\x98\x15\x8c\xf9\x03\xc6\xfc\x09\x63\x9e\x18\xf3\x44\x3b\x7c\x86\x63\x18\xf3\x14\x0b\x18\xf3\x2b\x5e\xe2\xe5\x05\x5e\xe0\xc5\x05\xfe\xba\xc0\x05\x4a\x1e\xce\xf0\xe9\xe9\xfc\xe8\xa1\x0d\x23\x0f\x8c\x7f\x0b\xf4\x4b\x62\xb9\x44\x61\x3e\xbf\x95\x51\x68\x1e\x48\xd2\xa5\x1b\x8a\xdd\xb7\xaf\xae\x7e\x7b\xff\x30\x76\xdf\x3e\xd2\x40\xb5\xb3\xfe\xd5\xda\xf2\xdd\xd1\x8f\x35\xe7\xf1\x43\x6b\x1e\xff\x8f\xc6\x18\xb3\x34\x66\xf9\x5e\x7c\xcc\xca\x98\xd5\x7f\x61\xc0\xb4\x36\xc9\x97\xcf\x16\x5f\xae\xee\x1a\xa8\x6c\xab\xd5\x62\x17\xed\x37\x8b\x6f\x57\x7b\xc3\xb2\xb6\xb4\x15\xb5\x81\xd3\x0a\x27\x3a\xad\x8b\xf0\xd5\xa2\x74\x3f\xec\xba\x51\x76\xba\xef\x74\x3f\x56\xf5\x07\xbc\x5d\x18\xb3\x78\xe8\xed\xa3\x87\x8e\xce\x96\xab\x8f\xd5\xf5\x6f\xe2\x57\xd4\xfe\x1d\x00\x00\xff\xff\xce\x53\xf9\xce\xeb\x0a\x00\x00") func runtimeSyntaxLuaYamlBytes() ([]byte, error) { return bindataRead( @@ -3574,6 +3595,7 @@ var _bindata = map[string]func() (*asset, error){ "runtime/colorschemes/solarized-tc.micro": runtimeColorschemesSolarizedTcMicro, "runtime/colorschemes/solarized.micro": runtimeColorschemesSolarizedMicro, "runtime/colorschemes/symbian-tc.micro": runtimeColorschemesSymbianTcMicro, + "runtime/colorschemes/twilight.micro": runtimeColorschemesTwilightMicro, "runtime/colorschemes/zenburn.micro": runtimeColorschemesZenburnMicro, "runtime/help/colors.md": runtimeHelpColorsMd, "runtime/help/commands.md": runtimeHelpCommandsMd, @@ -3781,6 +3803,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "solarized-tc.micro": &bintree{runtimeColorschemesSolarizedTcMicro, map[string]*bintree{}}, "solarized.micro": &bintree{runtimeColorschemesSolarizedMicro, map[string]*bintree{}}, "symbian-tc.micro": &bintree{runtimeColorschemesSymbianTcMicro, map[string]*bintree{}}, + "twilight.micro": &bintree{runtimeColorschemesTwilightMicro, map[string]*bintree{}}, "zenburn.micro": &bintree{runtimeColorschemesZenburnMicro, map[string]*bintree{}}, }}, "help": &bintree{nil, map[string]*bintree{ diff --git a/cmd/micro/scrollbar.go b/cmd/micro/scrollbar.go new file mode 100644 index 00000000..1310112b --- /dev/null +++ b/cmd/micro/scrollbar.go @@ -0,0 +1,18 @@ +package main + +type ScrollBar struct { + view *View +} + +func (sb *ScrollBar) Display() { + style := defStyle.Reverse(true) + screen.SetContent(sb.view.x+sb.view.Width-1, sb.view.y+sb.Pos(), ' ', nil, style) +} + +func (sb *ScrollBar) Pos() int { + numlines := sb.view.Buf.NumLines + h := sb.view.Height + filepercent := float32(sb.view.Topline) / float32(numlines) + + return int(filepercent * float32(h)) +} diff --git a/cmd/micro/settings.go b/cmd/micro/settings.go index f35a3beb..4a508e93 100644 --- a/cmd/micro/settings.go +++ b/cmd/micro/settings.go @@ -213,6 +213,7 @@ func DefaultGlobalSettings() map[string]interface{} { "savecursor": false, "savehistory": true, "saveundo": false, + "scrollbar": false, "scrollmargin": float64(3), "scrollspeed": float64(2), "softwrap": false, @@ -248,6 +249,7 @@ func DefaultLocalSettings() map[string]interface{} { "ruler": true, "savecursor": false, "saveundo": false, + "scrollbar": false, "scrollmargin": float64(3), "scrollspeed": float64(2), "softwrap": false, diff --git a/cmd/micro/view.go b/cmd/micro/view.go index 37acf3f5..b0100ceb 100644 --- a/cmd/micro/view.go +++ b/cmd/micro/view.go @@ -62,7 +62,7 @@ type View struct { // The buffer Buf *Buffer // The statusline - sline Statusline + sline *Statusline // Since tcell doesn't differentiate between a mouse release event // and a mouse move event with no keys pressed, we need to keep @@ -92,6 +92,8 @@ type View struct { cellview *CellView splitNode *LeafNode + + scrollbar *ScrollBar } // NewView returns a new fullscreen view @@ -117,7 +119,11 @@ func NewViewWidthHeight(buf *Buffer, w, h int) *View { v.messages = make(map[string][]GutterMessage) - v.sline = Statusline{ + v.sline = &Statusline{ + view: v, + } + + v.scrollbar = &ScrollBar{ view: v, } @@ -1008,6 +1014,11 @@ func (v *View) Display() { screen.HideCursor() } _, screenH := screen.Size() + + if v.Buf.Settings["scrollbar"].(bool) { + v.scrollbar.Display() + } + if v.Buf.Settings["statusline"].(bool) { v.sline.Display() } else if (v.y + v.Height) != screenH-1 { diff --git a/runtime/help/options.md b/runtime/help/options.md index 1690f849..0dbc4a23 100644 --- a/runtime/help/options.md +++ b/runtime/help/options.md @@ -146,6 +146,10 @@ Here are the options that you can set: default value: `off` +* `scrollbar`: display a scroll bar + + default value: `off` + * `scrollmargin`: amount of lines you would like to see above and below the cursor.