mattn

Results 1010 comments of mattn

make sense. I'll look this into it in later.

go's reflect is not fast. go-sqlite3 is wrapper of sqlite3 API. So code works on many layers. ### CLI database sqlite3 API ### go-sqlite3 database sqlite3 API cgo binding reflect

I can reproduce this. and I created wrapper command dummy-ffmpeg which replace `-b:a copy` to `-b:a 128k`. ```go package main import ( "context" "log" "os" "os/exec" "os/signal" ) func main()...

Or specify "128" or "bitrate" in config.json

Currently, No. Need to make client.doAPI public.

Since you have a `var` declaration, you are likely writing Vim9script. In Vim9script, the syntax for lambdas differs from that in vim8 script.

``` #include class A { public: A() {} void foo(); // LspDeclaration }; void A::foo() { // LspDefinition std::cout

For example, Vim also can fix this easily. ```diff diff --git a/src/os_unix.c b/src/os_unix.c index 1edc7e66b..9e64e6a77 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -4231,6 +4231,8 @@ set_child_environment( setenv("COLUMNS", (char *)envbuf, 1); sprintf((char...

> Your suggested fix still has side effects. If user has set VIMRUNTIME before running vim, then I would expect VIMRUNTIME to set in the terminal. Did you try this...