Skip to content

Commit f536709

Browse files
committed
Update repository URLs with new org namespace
See #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.
1 parent 4f247d1 commit f536709

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@ Comment functions so powerful—no comment necessary.
88

99
#### [Vim-Plug](https://github.com/junegunn/vim-plug)
1010

11-
1. Add `Plug 'scrooloose/nerdcommenter'` to your vimrc file.
11+
1. Add `Plug 'preservim/nerdcommenter'` to your vimrc file.
1212
2. Reload your vimrc or restart
1313
3. Run `:PlugInstall`
1414

1515
#### [Vundle](https://github.com/VundleVim/Vundle.vim) or similar
1616

17-
1. Add `Plugin 'scrooloose/nerdcommenter'` to your vimrc file.
17+
1. Add `Plugin 'preservim/nerdcommenter'` to your vimrc file.
1818
2. Reload your vimrc or restart
1919
3. Run `:BundleInstall`
2020

2121
#### [NeoBundle](https://github.com/Shougo/neobundle.vim)
2222

23-
1. Add `NeoBundle 'scrooloose/nerdcommenter'` to your vimrc file.
23+
1. Add `NeoBundle 'preservim/nerdcommenter'` to your vimrc file.
2424
2. Reload your vimrc or restart
2525
3. Run `:NeoUpdate`
2626

2727
#### [Pathogen](https://github.com/tpope/vim-pathogen)
2828

2929
```sh
3030
cd ~/.vim/bundle
31-
git clone https://github.com/scrooloose/nerdcommenter.git
31+
git clone https://github.com/preservim/nerdcommenter.git
3232
```
3333

3434
### Manual Installation
@@ -39,18 +39,18 @@ git clone https://github.com/scrooloose/nerdcommenter.git
3939

4040
```sh
4141
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
4343
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
4545
```
4646

4747
#### Windows (PowerShell)
4848

4949
```powershell
5050
md ~\vimfiles\plugin
5151
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'
5454
(New-Object Net.WebClient).DownloadFile($pluguri, $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath("~\vimfiles\plugin\NERD_commenter.vim"))
5555
(New-Object Net.WebClient).DownloadFile($docsuri, $ExecutionContext.SessionState.Path.GetUnresolvedProviderPathFromPSPath("~\vimfiles\doc\NERD_commenter.txt"))
5656
```

doc/NERD_commenter.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -941,7 +941,7 @@ The latest stable versions can be found at
941941
http://www.vim.org/scripts/script.php?script_id=1218
942942

943943
The latest dev versions are on github
944-
http://github.com/scrooloose/nerdcommenter
944+
http://github.com/preservim/nerdcommenter
945945

946946
==============================================================================
947947
8. Changelog *NERDCommenterChangelog*

plugin/NERD_commenter.vim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3090,7 +3090,7 @@ inoremap <silent> <plug>NERDCommenterInsert <SPACE><BS><ESC>:call NERDComment('i
30903090
nnoremap <plug>NERDCommenterAltDelims :call <SID>SwitchToAlternativeDelimiters(1)<cr>
30913091
30923092
" This is a workaround to enable lazy-loading from supported plugin managers:
3093-
" See https://github.com/scrooloose/nerdcommenter/issues/176
3093+
" See https://github.com/preservim/nerdcommenter/issues/176
30943094
call s:SetUpForNewFiletype(&filetype, 1)
30953095

30963096
" vim: set foldmethod=marker :

0 commit comments

Comments
 (0)