Robertus Chris
Robertus Chris
> No, this bug still exists, and is definitely quite annoying. If i have some free time I may try my hand at fixing it. I see, I thought the...
From your description, I'm guessing that fzf was not installed properly. I'm not using packer myself, but looking at [packer readme](https://github.com/wbthomason/packer.nvim#updateinstall-hooks): > If an element of `run` is a string,...
You might want to read junegunn explanation here: https://github.com/junegunn/fzf.vim/issues/1345#issuecomment-963743146
By forward/backward you mean something like `n` or `N` normal mode command after using search command? If that's what you mean, AFAIK there's no such feature and I'm not sure...
> I didn't mean n, N. I just mean if I cursor is at line X, i want to search for a string all lines numbered >= X, similarly
Looking at the source code: https://github.com/junegunn/fzf.vim/blob/bd703a7a7d7afd113634a346290acc27dd314bfc/autoload/fzf/vim.vim#L621-L628 I think it was hardcoded, so it's kind of tricky to configure. And using `:GFiles .` doesn't seem to do anything. The best I...
I just realized that there's a PR for it. You can take a look here: https://github.com/junegunn/fzf.vim/pull/1290, and see if it works or not.
> I think plug was specific to vim-plug No, `` is not specific to vim-plug. You can check it with `:help ` Maybe you can do something like this: ```vim...
Maybe you can use `iabbrev` inside of `:Files` command, but I'm not sure if it works or not. `iabbrev` usually used for typo, for example: ```vim iabbrev teh the ```...
AFAIK, preview doesn't work with `:Lines` and `:BLines`, you can check it here: https://github.com/junegunn/fzf.vim/issues/374#issuecomment-301983281. There's a work around for `:BLines` to have preview (also in the above url) but not...