nikvdp/neomux

Not an editor command: NeomuxTerm

Closed this issue · 1 comments

I installed neomux using vimplug for neovim. But when I run :NeomuxTerm on the vim command bar, it shows up an error saying E492: Not an editor command: NeomuxTerm

Am I missing some other dependencies /plugins here?

My init.vim looks like this:

" Plugins will be downloaded under the specified directory.
call plug#begin(has('nvim') ? stdpath('data') . '/plugged' : '~/.vim/plugged')

" Declare the list of plugins.
Plug 'tpope/vim-sensible'
Plug 'junegunn/seoul256.vim'
Plug 'glepnir/spaceline.vim'
"Plug 'kyazdani42/nvim-tree.lua'
Plug 'preservim/nerdtree'

" Use the icon plugin for better behavior
Plug 'ryanoasis/vim-devicons'
Plug 'kyazdani42/nvim-web-devicons'

" for showing a fancy home page.
Plug 'mhinz/vim-startify'

Plug 'preservim/nerdtree' |
\ Plug 'Xuyuanp/nerdtree-git-plugin'

Plug 'nikvdp/neomux'

" for file search
Plug 'https://github.com/ctrlpvim/ctrlp.vim.git'

" List ends here. Plugins become visible to Vim after this call.
call plug#end()

autocmd VimEnter *
\   if !argc()
\ |   Startify
\ |   NERDTree
\ |   wincmd w
\ | endif


" Other regular settings
set nu
set ai
set ts=2
set shiftwidth=2

Hey @rv-nath, glad to hear from you! Nope, you weren't missing anything, the docs were just not up to date. I've updated the docs now, to answer your question if you run :Neomux instead of :NeomuxTerm everything should work as expected.

Let me know if you have any other issues!