symptoms
After installing a plug-in similar to Vim's live server, Vim's :Bracey
command did not start the browser, and the error message E117: Unknown function:bracey#start
appeared.
Expectations
Run the :Bracey
command on Vim to allow the browser to stand up and see the HP in production.
Reproduction Steps
.vimrc
set incompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call bundle#begin()
US>"Configuring
set number
set title
set showmatch
syntax on
set tabstop = 4
set smartindent
set fenc = utf-8
Plugin 'VundleVim/Vundle.vim'
Plugin'mattn/emmet-vim'
Plugin'hail2u/vim-css3-syntax'
Plugin'pangloss/vim-javascript'
Plugin'turbio/bracey.vim', {'do':'npm install --prefix server'}
call bundle#end()
filetype plugin indent on
Reference Links
Tutorial for bracey
Bracey instead of bracey, would it be the same if it starts with capital letters?
© 2024 OneMinuteCode. All rights reserved.