I installed the bracey plug-in on Vim, but the :Bracey command does not work.

Asked 2 years ago, Updated 2 years ago, 81 views

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

vim

2022-09-29 21:39

1 Answers

Bracey instead of bracey, would it be the same if it starts with capital letters?


2022-09-29 21:39

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.