hkupty / nvimux

Neovim as a TMUX replacement
Apache License 2.0
445 stars 17 forks source link

Remove references to the old `open-term-by-default` var #26

Closed hkupty closed 6 years ago

hkupty commented 6 years ago

Additionally, add a variable for controlling new tabs sepparately from new windows.

This should fix #25

The new way of setting a new tab to open a term is by setting:

lua << EOF
local nvimux = require("nvimux")

nvimux.config.set_all{
  -- ...
  new_tab = "term",
  -- ...
}

-- ...

nvimux.bootstrap()