Alexander Jeurissen
Alexander Jeurissen
I really like this idea and have wanted this for a while as well. I think that the only way to achieve this is create a custom FZF source that...
Ok so I've investigated it some more, and what I found so far is: Creating a custom source where we execute the default `FZF_DEFAULT_COMMAND` and prepend the icon for each...
@ryanoasis DONE. code: ``` vim " Files + devicons function! Fzf_dev() function! s:files() let files = split(system($FZF_DEFAULT_COMMAND), '\n') return s:prepend_icon(files) endfunction function! s:prepend_icon(candidates) let result = [] for candidate in...
as I said the only downside of this approach is that people have to use this function.. as we require control over the `source` and `sink` options 😢 But it...
I'll tackle some of the problems mentioned in my previous comment and refine the code. Expect a PullRequest somewhere this weekend. In the mean time people like ( @mhartington )...
@michaelmior the code snippet that i shared in a previous comment still works. However it is required that the user specifies this in their vimrc. I so far haven't found...
I think the issue lies in the fact that `-` is part of the default keys that are limited. ``` let g:list_of_normal_keys = ["h", "j", "k", "l", "-", "+", "",...
@tpope mentioning you here so you are aware of this issue.
I agree, @altercation this PR should be merged. the sign-column looks awful now especially in solarized-dark. I cherry-picked this commit and tested it in my config and it works.
@eskin can you include a screenshot of the change ? currently it's quite hard to review the intended change / behaviour that your trying to fix.