Closed ghost closed 4 years ago
:auto RnvimrFileExplorer
in neovim?call plug#begin('~/.config/nvim/plugged')
Plug 'kevinhwang91/rnvimr'
let g:rnvimr_enable_ex = 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()
Do the other features work as expected? Yes.
What is the message output by using :auto RnvimrFileExplorer in neovim? `--- Autocommands --- RnvimrFileExplorer BufEnter
- if isdirectory(expand('
')) && v:vim_did_enter | bwip eout! | call rnvimr#open(expand(' ')) | endif` try this mini config. the config didn't work.
run nvim -u ~/mini.vim .
mini.vim is above snippet.
run nvim +'checkhealth rnvimr'
and post the output.
- run
nvim -u ~/mini.vim .
Running the above command didn't work. I currently using the tutorial from ChrisAtMachine i don't know if that config may encounter problems with your plugin
I can't reproduce, and you didn't feedback any useful information.
I had the same issue not being able to replace ranger with netrw on startup, I too followed the tutorial from ChrisAtMachine.
Removing NERDTree resolved the issue for me.
I had the same issue not being able to replace ranger with netrw on startup, I too followed the tutorial from ChrisAtMachine.
Removing NERDTree resolved the issue for me.
Nice, I forget that people maybe install other file manager plugin such as NERDTree will cause this issue.
You don't need to uninstall NERDTree, let g:NERDTreeHijackNetrw = 0
will make it to be compatible with rnvimr.
It should be listed in FAQ.
I wanna replace netrw with Ranger, i have set this option in my configs but whenever i open nvim into a folder the manager is the default.
I'm currently using Arch linux.