Samuel Nelson
Samuel Nelson
The line `GOLANG_PACKAGE_USE_CGO` seems to force elvish to depend on gcc[go]. Since elvish doesn't need gccgo to run, and cgo isn't exactly the same as gccgo, I think it should...
After messing around with elvish for a few days, I decided to set it as my default shell for a while, see if I want it to become my main...
`sqlrows` panics when parsing the following code: ```go var rows *sql.Rows if foo { rows, err = queryFoo() } else { rows, err = queryBar() } if err != nil...
The following code seems to cause `sqlrows` to panic: ```go rows, err := db.Query(a, b, c) if err != nil { return err } func() { defer rows.Close() // read...
**Use case** As an engineer working on a project with multiple languages I want to be able to preserve directory higherarchy in COPY So that I can copy files relevant...
The specific use case that we need to tackle here is when the output is _MASSIVE_ and it needs to be separated onto multiple lines. This isn't an option that...
### Description In addition to standard yaml/toml/json highlighting, we need to provide some additional information for files that vidar loads as settings files. Follow-up for #15 ### Expected behavior Opening...
### Description When a user wants to edit their config, they should be able to easily open the config files without necessarily knowing where they are located. Follow-up for #15...
This issue has only shown up recently, AFAIK. If this is an issue in gocode, I need to dig further; if it's an issue in vidar, I need to fix...
Because of the change to how key bindings work, the command box is using an outdated style of input handling, resulting in most key bindings just not working against it....