@@ -8,27 +8,27 @@ Comment functions so powerful—no comment necessary.
8
8
9
9
#### [ Vim-Plug] ( https://github.com/junegunn/vim-plug )
10
10
11
- 1 . Add ` Plug 'scrooloose /nerdcommenter' ` to your vimrc file.
11
+ 1 . Add ` Plug 'preservim /nerdcommenter' ` to your vimrc file.
12
12
2 . Reload your vimrc or restart
13
13
3 . Run ` :PlugInstall `
14
14
15
15
#### [ Vundle] ( https://github.com/VundleVim/Vundle.vim ) or similar
16
16
17
- 1 . Add ` Plugin 'scrooloose /nerdcommenter' ` to your vimrc file.
17
+ 1 . Add ` Plugin 'preservim /nerdcommenter' ` to your vimrc file.
18
18
2 . Reload your vimrc or restart
19
19
3 . Run ` :BundleInstall `
20
20
21
21
#### [ NeoBundle] ( https://github.com/Shougo/neobundle.vim )
22
22
23
- 1 . Add ` NeoBundle 'scrooloose /nerdcommenter' ` to your vimrc file.
23
+ 1 . Add ` NeoBundle 'preservim /nerdcommenter' ` to your vimrc file.
24
24
2 . Reload your vimrc or restart
25
25
3 . Run ` :NeoUpdate `
26
26
27
27
#### [ Pathogen] ( https://github.com/tpope/vim-pathogen )
28
28
29
29
``` sh
30
30
cd ~ /.vim/bundle
31
- git clone https://github.com/scrooloose /nerdcommenter.git
31
+ git clone https://github.com/preservim /nerdcommenter.git
32
32
```
33
33
34
34
### Manual Installation
@@ -39,18 +39,18 @@ git clone https://github.com/scrooloose/nerdcommenter.git
39
39
40
40
``` sh
41
41
curl -fLo ~ /.vim/plugin/NERD_Commenter.vim --create-dirs \
42
- https://raw.githubusercontent.com/scrooloose /nerdcommenter/master/plugin/NERD_commenter.vim
42
+ https://raw.githubusercontent.com/preservim /nerdcommenter/master/plugin/NERD_commenter.vim
43
43
curl -fLo ~ /.vim/doc/NERD_Commenter.txt --create-dirs \
44
- https://raw.githubusercontent.com/scrooloose /nerdcommenter/master/doc/NERD_commenter.txt
44
+ https://raw.githubusercontent.com/preservim /nerdcommenter/master/doc/NERD_commenter.txt
45
45
```
46
46
47
47
#### Windows (PowerShell)
48
48
49
49
``` powershell
50
50
md ~\vimfiles\plugin
51
51
md ~\vimfiles\doc
52
- $pluguri = 'https://raw.githubusercontent.com/scrooloose /nerdcommenter/master/plugin/NERD_commenter.vim'
53
- $docsuri = 'https://raw.githubusercontent.com/scrooloose /nerdcommenter/master/doc/NERD_commenter.txt'
52
+ $pluguri = 'https://raw.githubusercontent.com/preservim /nerdcommenter/master/plugin/NERD_commenter.vim'
53
+ $docsuri = 'https://raw.githubusercontent.com/preservim /nerdcommenter/master/doc/NERD_commenter.txt'
54
54
(New-Object Net.WebClient).DownloadFile($pluguri, $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath("~\vimfiles\plugin\NERD_commenter.vim"))
55
55
(New-Object Net.WebClient).DownloadFile($docsuri, $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath("~\vimfiles\doc\NERD_commenter.txt"))
56
56
```
0 commit comments