kevinhwang91 / rnvimr

Make Ranger running in a floating window to communicate with Neovim via RPC
BSD 3-Clause "New" or "Revised" License
800 stars 17 forks source link

Magenta background #126

Closed Mirkopoj closed 1 year ago

Mirkopoj commented 1 year ago

My config file:


" use your plugin manager, here is `vim-plug`
call plug#begin('~/.config/nvim/plugged')
Plug 'kevinhwang91/rnvimr', {'do':  'make sync'}
call plug#end()
let g:rnvimr_ex_enable = 1
nmap <space>r :RnvimrToggle<CR>

Expected behavior Getting the same window as standalone ranger, this used to be the case.

Screenshots How it looks now RangerPlugin How ranger looks, and how it used to look, prior to nvim v0.8.0 Ranger

kevinhwang91 commented 1 year ago

can't reproduce it, please use a min config.

Mirkopoj commented 1 year ago

I'm sorry if I miss understood, I tried using this as my config file with no luck.

call plug#begin('~/.config/nvim/plugged')
Plug 'kevinhwang91/rnvimr'
let g:rnvimr_vanilla = 1
tnoremap <silent> <M-i> <C-\><C-n>:RnvimrResize<CR>
nnoremap <silent> <M-o> :RnvimrToggle<CR>
tnoremap <silent> <M-o> <C-\><C-n>:RnvimrToggle<CR>
call plug#end()

I had the same issue on an ubuntu machine at an office, running an older veersion of nvim, tomorrow I'll be able to check which. I'm guessing the problem may be in my QTile config, as thats the main thing this two PCs have in common.

RangerPluginMinConf

Mirkopoj commented 1 year ago

Came to the office, the ubuntu machine is running nvim v0.8.0-dev, guess it builtit from source so I would be stuck with nvim v0.4.0.

kevinhwang91 commented 1 year ago

hi link NormalFloat NONE

Mirkopoj commented 1 year ago

It worked! Thanks a lot, love this plugin, awesome work.