kevinhwang91 / rnvimr

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

E363: pattern uses more memory than 'maxmempattern' #21

Closed ChristianChiarulli closed 4 years ago

ChristianChiarulli commented 4 years ago

I'm seeing the error on my mac but not linux,

one solution was to:

set mmp=2000

Increasing this also increases lag though so, it's not an ideal solution.

I though it was devicons but I was wrong

kevinhwang91 commented 4 years ago

I can't believe this issue caused by rnvimr. rnvimr never use regex pattern in vimscript for now.

Please try this mini.vim. nvim -u mini.vim.

call plug#begin('~/.config/nvim/plugged')
Plug 'kevinhwang91/rnvimr'
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()