A gap buffer implementation in Go.
at main 38 lines 721 B view raw
1{ 2 "folders": [ 3 { 4 "path": "." 5 } 6 ], 7 "settings": { 8 "go.coverOnSave": true, 9 "go.coverageDecorator": { 10 "type": "gutter", 11 "coveredHighlightColor": "rgba(64,128,128,0.5)", 12 "uncoveredHighlightColor": "rgba(128,64,64,0.25)", 13 "coveredGutterStyle": "blockgreen", 14 "uncoveredGutterStyle": "blockred" 15 }, 16 "go.coverOnSingleTest": true 17 }, 18 "launch": { 19 "version": "0.2.0", 20 "configurations": [ 21 { 22 "name": "Launch Package", 23 "type": "go", 24 "request": "launch", 25 "mode": "auto", 26 "console": "integratedTerminal", 27 "program": "${fileDirname}" 28 }, 29 { 30 "name": "Attach to Process", 31 "type": "go", 32 "request": "attach", 33 "mode": "local", 34 "processId": 0 35 } 36 ] 37 } 38}