From 30323b167d87918905cf9b72cfd479544afe9a46 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Tue, 21 Feb 2023 16:04:16 +0300 Subject: [PATCH] chore: Change GitHub namespace to new home under PreserVIM --- README.markdown | 2 +- autoload/color_helper.vim | 2 +- autoload/indent_guides.vim | 2 +- doc/indent_guides.txt | 4 ++-- plugin/indent_guides.vim | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.markdown b/README.markdown index a248fb3..5fdf0f3 100644 --- a/README.markdown +++ b/README.markdown @@ -24,7 +24,7 @@ If you have [Pathogen](http://www.vim.org/scripts/script.php?script_id=2332) ins ```bash cd ~/.vim/bundle -git clone git://github.com/nathanaelkane/vim-indent-guides.git +git clone git://github.com/preservim/vim-indent-guides.git ``` ### Vundle diff --git a/autoload/color_helper.vim b/autoload/color_helper.vim index 54d18c0..9b1ede9 100644 --- a/autoload/color_helper.vim +++ b/autoload/color_helper.vim @@ -1,5 +1,5 @@ " Author: Nate Kane -" Homepage: http://github.com/nathanaelkane/vim-indent-guides +" Homepage: http://github.com/preservim/vim-indent-guides " " Return hex string equivalent to given decimal string or number. diff --git a/autoload/indent_guides.vim b/autoload/indent_guides.vim index 482d0ad..34cd662 100644 --- a/autoload/indent_guides.vim +++ b/autoload/indent_guides.vim @@ -1,5 +1,5 @@ " Author: Nate Kane -" Homepage: http://github.com/nathanaelkane/vim-indent-guides +" Homepage: http://github.com/preservim/vim-indent-guides " " Toggles the indent guides on and off. diff --git a/doc/indent_guides.txt b/doc/indent_guides.txt index d51a394..82d955c 100644 --- a/doc/indent_guides.txt +++ b/doc/indent_guides.txt @@ -248,8 +248,8 @@ Why did I build this plugin?~ * I wanted to learn me some VimL. Links:~ - * Github: https://github.com/nathanaelkane/vim-indent-guides - * Bugs & Issues: https://github.com/nathanaelkane/vim-indent-guides/issues + * Github: https://github.com/preservim/vim-indent-guides + * Bugs & Issues: https://github.com/preservim/vim-indent-guides/issues Credits:~ * Matt Wozniski (godlygeek) for letting me use the list of color names and diff --git a/plugin/indent_guides.vim b/plugin/indent_guides.vim index c94079b..f4b2bdb 100644 --- a/plugin/indent_guides.vim +++ b/plugin/indent_guides.vim @@ -1,5 +1,5 @@ " Author: Nate Kane -" Homepage: http://github.com/nathanaelkane/vim-indent-guides +" Homepage: http://github.com/preservim/vim-indent-guides " Do not load if vim is too old if (v:version == 701 && !exists('*matchadd')) || (v:version < 701)