R-nvim / R.nvim

Neovim plugin to edit R files
GNU General Public License v3.0
128 stars 15 forks source link

setting object browser and console verticallly #148

Closed ConYel closed 2 weeks ago

ConYel commented 2 weeks ago

Hello and thank you very much for the updated version of Nvim-R/Rnvim! I just moved to the R.nvim and I'm trying to figure out how to make the console and the obj browser spawn right of the editor window while being being in horizontal split between them. Something like that -> | console Editor | console | obj browser

Thank you in advance!

jalvesaq commented 2 weeks ago

Choose an editor width that leaves enough room for the R console to be on the right. Then, put the Object Browser below the R Console. Depending on your screen width, this might work:

  min_editor_width = 81,
  objbr_place = "console,below",
ConYel commented 2 weeks ago

Great thank you very much!!!