Gregory Anders

Results 251 comments of Gregory Anders

> > tmux doesn't know you didn't type the response. You can't realistically use passthrough for anything that requires a response, that is not what it is intended for. >...

For anyone else with this issue, `patchelf --set-rpath` can be used to update the rpath in the binary back to an absolute path.

I'm also running into this recently (I am not sure what's changed, as I've been using GOPACKAGESDRIVER for a while successfully). @kylepl's suggestion to set `GOPACKAGESDRIVER_BAZEL_BUILD_FLAGS` to `-c dbg` worked...

Disabling CGO specifically for GOPACKAGESDRIVER also seems to work: ``` GOPACKAGESDRIVER_BAZEL_BUILD_FLAGS="--@io_bazel_rules_go//go/config:static --@io_bazel_rules_go//go/config:pure" ``` **EDIT:** Perhaps an even better option is setting the `osusergo` and `netgo` build tags to force the...

We shouldn't need to parse escape sequences ourselves, we can use `nvim_open_term()` and copy/pipe data from stdin into the terminal channel. Here's a rudimentary example (probably missing a lot of...

> Currently `nvim_open_term` expects the buffer it is given to be empty. What if that was changed so that if it is given a buffer that is non-empty it starts...

> Yeah, just verified in OSX and it also leaves the process alive after neovim shutsdown. The OS will not automatically kill an orphaned process. It is reparented to the...

One possible short term course of action would be to move the default grepprg setting out of _defaults.lua and into a plugin file, which can be opted out of somehow.

FYI there are a couple of follow-up proposals to the specification. If Wezterm implements this then I suggest also following these threads: - https://github.com/contour-terminal/contour/discussions/1657 - https://github.com/contour-terminal/contour/issues/1659

If all of those conditions are true then Nvim will send the XTGETTCAP query to determine if the terminal emulator even supports OSC 52. If your terminal emulator doesn't support...