Garret Buell

Results 3 issues of Garret Buell

I would love to use this under alpine linux which does not have glibc. Unfortunately, the resolver mode does not work in the non-cgo version. Linking with musl libc should...

blocked
release-engineering

Currently the :prefix argument to sp-local-pair allows specifying a prefix regex for the opening delimiter. It would be useful to also allow one for the closing delimiter. For example, in...

enhancement
specific-mode-support
language:c

Minimal sqlite.go ```go package main import ( "database/sql" "fmt" _ "github.com/mattn/go-sqlite3" ) func main() { fmt.Println("Started") db, err := sql.Open("sqlite3", ":memory:") if err != nil { fmt.Printf("Error: %v\n", err) }...