Update repository URLs with new org namespace

See https://github.com/preservim/nerdcommenter/issues/400

Old URLs will continue to work for the foreseeable future since Github
forwards them, but new users in particular should be encouraged to use
the new org namespace when installing the plugin.
This commit is contained in:
Caleb Maclennan 2019-12-29 11:01:36 +03:00
parent f5525720ec
commit 8786861a3c
No known key found for this signature in database
GPG Key ID: 63CC496475267693
3 changed files with 10 additions and 10 deletions

View File

@ -8,19 +8,19 @@ Comment functions so powerful—no comment necessary.
#### [Vim-Plug](https://github.com/junegunn/vim-plug) #### [Vim-Plug](https://github.com/junegunn/vim-plug)
1. Add `Plug 'scrooloose/nerdcommenter'` to your vimrc file. 1. Add `Plug 'preservim/nerdcommenter'` to your vimrc file.
2. Reload your vimrc or restart 2. Reload your vimrc or restart
3. Run `:PlugInstall` 3. Run `:PlugInstall`
#### [Vundle](https://github.com/VundleVim/Vundle.vim) or similar #### [Vundle](https://github.com/VundleVim/Vundle.vim) or similar
1. Add `Plugin 'scrooloose/nerdcommenter'` to your vimrc file. 1. Add `Plugin 'preservim/nerdcommenter'` to your vimrc file.
2. Reload your vimrc or restart 2. Reload your vimrc or restart
3. Run `:BundleInstall` 3. Run `:BundleInstall`
#### [NeoBundle](https://github.com/Shougo/neobundle.vim) #### [NeoBundle](https://github.com/Shougo/neobundle.vim)
1. Add `NeoBundle 'scrooloose/nerdcommenter'` to your vimrc file. 1. Add `NeoBundle 'preservim/nerdcommenter'` to your vimrc file.
2. Reload your vimrc or restart 2. Reload your vimrc or restart
3. Run `:NeoUpdate` 3. Run `:NeoUpdate`
@ -28,7 +28,7 @@ Comment functions so powerful—no comment necessary.
```sh ```sh
cd ~/.vim/bundle cd ~/.vim/bundle
git clone https://github.com/scrooloose/nerdcommenter.git git clone https://github.com/preservim/nerdcommenter.git
``` ```
### Manual Installation ### Manual Installation
@ -39,9 +39,9 @@ git clone https://github.com/scrooloose/nerdcommenter.git
```sh ```sh
curl -fLo ~/.vim/plugin/NERD_Commenter.vim --create-dirs \ curl -fLo ~/.vim/plugin/NERD_Commenter.vim --create-dirs \
https://raw.githubusercontent.com/scrooloose/nerdcommenter/master/plugin/NERD_commenter.vim https://raw.githubusercontent.com/preservim/nerdcommenter/master/plugin/NERD_commenter.vim
curl -fLo ~/.vim/doc/NERD_Commenter.txt --create-dirs \ curl -fLo ~/.vim/doc/NERD_Commenter.txt --create-dirs \
https://raw.githubusercontent.com/scrooloose/nerdcommenter/master/doc/NERD_commenter.txt https://raw.githubusercontent.com/preservim/nerdcommenter/master/doc/NERD_commenter.txt
``` ```
#### Windows (PowerShell) #### Windows (PowerShell)
@ -49,8 +49,8 @@ curl -fLo ~/.vim/doc/NERD_Commenter.txt --create-dirs \
```powershell ```powershell
md ~\vimfiles\plugin md ~\vimfiles\plugin
md ~\vimfiles\doc md ~\vimfiles\doc
$pluguri = 'https://raw.githubusercontent.com/scrooloose/nerdcommenter/master/plugin/NERD_commenter.vim' $pluguri = 'https://raw.githubusercontent.com/preservim/nerdcommenter/master/plugin/NERD_commenter.vim'
$docsuri = 'https://raw.githubusercontent.com/scrooloose/nerdcommenter/master/doc/NERD_commenter.txt' $docsuri = 'https://raw.githubusercontent.com/preservim/nerdcommenter/master/doc/NERD_commenter.txt'
(New-Object Net.WebClient).DownloadFile($pluguri, $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath("~\vimfiles\plugin\NERD_commenter.vim")) (New-Object Net.WebClient).DownloadFile($pluguri, $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath("~\vimfiles\plugin\NERD_commenter.vim"))
(New-Object Net.WebClient).DownloadFile($docsuri, $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath("~\vimfiles\doc\NERD_commenter.txt")) (New-Object Net.WebClient).DownloadFile($docsuri, $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath("~\vimfiles\doc\NERD_commenter.txt"))
``` ```

View File

@ -941,7 +941,7 @@ The latest stable versions can be found at
http://www.vim.org/scripts/script.php?script_id=1218 http://www.vim.org/scripts/script.php?script_id=1218
The latest dev versions are on github The latest dev versions are on github
http://github.com/scrooloose/nerdcommenter http://github.com/preservim/nerdcommenter
============================================================================== ==============================================================================
8. Changelog *NERDCommenterChangelog* 8. Changelog *NERDCommenterChangelog*

View File

@ -3090,7 +3090,7 @@ inoremap <silent> <plug>NERDCommenterInsert <SPACE><BS><ESC>:call NERDComment('i
nnoremap <plug>NERDCommenterAltDelims :call <SID>SwitchToAlternativeDelimiters(1)<cr> nnoremap <plug>NERDCommenterAltDelims :call <SID>SwitchToAlternativeDelimiters(1)<cr>
" This is a workaround to enable lazy-loading from supported plugin managers: " This is a workaround to enable lazy-loading from supported plugin managers:
" See https://github.com/scrooloose/nerdcommenter/issues/176 " See https://github.com/preservim/nerdcommenter/issues/176
call s:SetUpForNewFiletype(&filetype, 1) call s:SetUpForNewFiletype(&filetype, 1)
" vim: set foldmethod=marker : " vim: set foldmethod=marker :