Alejandro Bernal

Results 15 comments of Alejandro Bernal

@bandithedoge 's workaround works, in my case i had `` as my localleader, so i changed it to this in order to make it work. ```lua vim.g.maplocalleader = "\\" vim.api.nvim_set_keymap("n",...

The options above didn't work for me so I created one that works for me ``` #!/bin/sh _file="$(rg --color=always --line-number --no-heading --smart-case "${@:-^[^\n]}" \ | fzf -d ':' --preview 'bat...

> > > @Akuseru1 ExpandSnippet doesn't work from `:normal`, see [junegunn/fzf.vim#796 (comment)](https://github.com/junegunn/fzf.vim/issues/796#issuecomment-738448709) and [junegunn/fzf.vim#1196](https://github.com/junegunn/fzf.vim/pull/1196) > Been fighting with this whole day yesterday. :-( That would explain the weird behaviors I've...

I think this could be done by using a user defined variable for the pattern

I'm not having issues with behavior, is a feature request. I want to have a list that changes with branch, and a different list that only changes with cwd

An alternative I'm thinking is to have the list_name as an argument of the key function, and then we could use that if we wanted to

I'm getting this with a clean build and no conf, running nvim with `nvim -u NORC`, so yeah, just packer and octo installed, no nvim-cmp and I do use tab,...

happens to me too, I was able to fix it by adding this autocmd: ```lua vim.api.nvim_create_autocmd("CmdWinEnter", { callback = function() require("cmp").close() end, }) ```