Results 236 comments of Junegunn Choi

According to their doc, it looks like `cd -` is not going to be a built-in feature of fish. > Fish also ships a wrapper function around the builtin cd...

I really have no idea what's going on your side. Some pointers you might want to take a look: * https://stackoverflow.com/questions/71755990/ctrl-j-is-always-changed-to-ctrl-m-in-session-started-by-aws-session-manager * https://github.com/vim/vim/issues/2031 Anyway, if the issue is constantly bothering...

Cannot reproduce the problem.

Did you setup `autocmd`s as well?

What about the other lines of code in the function? (set ..., Limelight) Are they executed as expected?

Goyo doesn't know what lualine is. I can't update Goyo whenever a new statusline plugin comes into being. You have to call its API for disabling/enabling it on `GoyoEnter` and...

Using `--tac` ```sh seq 10 | fzf --tac --layout=reverse --height=~50% seq 10 | fzf --tac --layout=reverse-list --height=~50% ```

fzf prints its UI using STDERR, and prints the selected item to STDOUT. So redirecting STDERR will surely break it.

Implementing it is trivial, I have a working copy locally, but I had some concerns. fzf consumes the input asynchronously, so triggering the event immediately is probably not what you...

They are "actions", not "hooks". `down` action is triggered when you hit the down arrow key, and you don't expect your arrow key to do more than moving your cursor...