Results 638 comments of Junegunn Choi

@LangLangBart Wow, thanks, the patch works great with both the "sleep" example and the original fd command we discussed. Are there any concerns with it?

I'm not sure how we can do this. OSC 10/11 querying requires 1. directly writing to `/dev/tty`, 2. making it spit out some escape sequence, 3. and directly reading from...

You can't pass a list to `system` and `systemlist` on regular Vim. Also, when `&shell` is set to `nu`, `system` doesn't work at all on Vim. ```sh set shell=nu echo...

I know it's not ideal but it's the intended behavior. You can read more about it in https://github.com/junegunn/fzf/issues/3280#issuecomment-1535720030. The behavior was introduced when I tried to fix #3113. While working...

We use `open` on macOS and `xdg-open` in other systems to open URLs. https://github.com/junegunn/fzf-git.sh/blob/23a74efafac72b0a131a9f897a5da2fc9bbc04ee/fzf-git.sh#L107-L110 Maybe `xdg-open` is not available on your system? Please open a pull request if a different...

A pull request is welcome. By the way, I'm not sure why you're mentioning `$BROWSER`. This project doesn't use the variable.

> it is common practice Maybe, but not on this project. > Note: There is no space between `$BROWSER` and `"$url$path"` The examples shown in the linked SO thread all...

I don't know what "winbar" is and what it looks like. Is it a recent addtion to Vim/Neovim? Can you post some screenshots? If you think it makes sense to...

Thanks, I'll review the code when I get some time. A few things. * We also have to update tcell renderer for Windows * man page needs to be updated...

> Or is there a way to do this on Linux? You can run `go run -tags tcell main.go`.