-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not an editor command: PlugInstall #1030
Comments
Pls help |
Did you install vim-plug by putting in your https://github.com/junegunn/vim-plug#windows-powershell-1
You should never put vim-plug plugins in an |
did you have git installed? |
I face the same issue on gVim in Windows. I put plug in |
A common mistake people make on GVim is to put the configuration code in gvimrc instead of in vimrc. |
i have same error. but i tried unix Url and it's working. |
try unix url it will work. |
I just had to move my init.vim file to AppData/Local/nvim/init.vim |
No comment from @RaCs5 and others have mentioned workarounds for this recurring issue so I'm closing this. |
I have the same problem, vim catch the file "plug.vim", but it also show the problem "Not an editor command :PlugInstall" |
I had this issue because I had .vimrc open in a separate tab. I tried using the 'e' command to reload it. I tried closing out of the tab and opening it again. I needed to close all tabs and reopen .vimrc for this to install. |
I had this issue because I used the Neovim "Windows (PowerShell)" install from https://github.com/junegunn/vim-plug#windows-powershell-1 instead of the Vim one. Running the right install solved it. |
I'm having the same issue on Linux with the automatic installation commands. It downloads the file fine, but then that command fails. Maybe that's a NeoVim command? I'm using plain vim. |
This worked. |
This worked for me thanks. Since this worked for multple people, maybe the installaton guide should be updated? |
I need help I'm using vim-pug on Windows 10 and it won't let me use: PlugInstall I get error E492: Not an editor command: PlugInstall
this is the configuration that I put
call plug#begin('~/AppData/local/nvim/autoload')
2 Plug 'fatih/vim-go', { 'do': ':GoInstallBinaries', 'for': 'go' }
3 Plug 'tpope/vim-surround'
4 Plug 'scrooloose/nerdtree'
5 Plug 'sheerun/vim-polyglot'
6 Plug 'PProvost/vim-ps1'
7 Plug 'tomasr/molokai'
8 Plug 'vim-airline/vim-airline'
9 Plug 'tpope/vim-fugitive'
10 Plug 'stamblerre/gocode'
11 Plug 'dense-analysis/ale'
12 Plug 'neoclide/coc.nvim', {'branch': 'release'}
13 call plug#end()
14
15 let g:go_addtags_transform = "snakecase"
16 " " Copy to clipboard
17 vnoremap y "+y
18 nnoremap Y "+yg_
19 nnoremap y "+y
20 nnoremap yy "+yy
21 " " Paste from clipboard
21 nnoremap p "+p
22 nnoremap P "+P
24 vnoremap p "+p
25 vnoremap P "+P
26 let g:go_auto_sameids = 1
27 let g:go_auto_info = 1`
The text was updated successfully, but these errors were encountered: