Results 638 comments of Junegunn Choi

```vim function! Foo() let opts = {} function! opts.on_exit(...) bd echom 'This message will be cleared' sleep 1 endfunction tabnew call termopen('sleep 1', opts) startinsert endfunction call Foo() ``` ```vim...

Are you running terminal Vim or GVim? fzf doesn't support `ctrl-enter` natively as the chord is not recognized by standard terminals. See "AVAILABLE KEY" section of `man fzf`. But if...

Files can open files even in that case when the user presses `CTRL-X`, `CTRL-T`, or `CTRL-V`, so not opening fzf at all is not desirable. If you really must, It...

I personally don't need it. Are you interested in contributing?

Thanks for the pointers. Here's the background. 1. fzf was originally written for *nix systems only using ncurses. 2. Windows support was added by @kelleyma49 using the [tcell](https://github.com/gdamore/tcell) library. We...

Thanks for the detailed comment. I need some time to process this, as the whole issue is quite new to me. > * The default should be to use GetConsoleOutputCP()...

> I agree. fzf should respect the current setting of the terminal. Having said that, I can understand @skarasov's reluctance. We need to assess the amount of code needed to...

> The only ugly thing is now that `--with-nth` and `--accept-nth` behave differently without templates. Fair enough. The inconsistency can surprise the users. My thought was there are cases, albeit...

Please take a look at the updated methods in https://github.com/apache/hbase/pull/7074/commits/86ca728b3baef1263a12896bfa51dfec86c02ffb. * Null-safety * Support for HTTPS addresses With the updated method signatures, it's going to be easier for users to...