diff --git a/README.md b/README.md index ec0491f..02f51eb 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ highlighted. EasyMotion is triggered by the provided mappings. This readme only covers the basics; please refer to -[`:help easymotion.txt`](https://github.com/Lokaltog/vim-easymotion/blob/master/doc/easymotion.txt#L86) +[`:help easymotion.txt`](https://github.com/easymotion/vim-easymotion/blob/master/doc/easymotion.txt#L86) to see all the available mappings. Important notes @@ -267,17 +267,17 @@ Installation ------------ ### Pathogen (https://github.com/tpope/vim-pathogen) ``` -git clone https://github.com/Lokaltog/vim-easymotion ~/.vim/bundle/vim-easymotion +git clone https://github.com/easymotion/vim-easymotion ~/.vim/bundle/vim-easymotion ``` ### Vundle (https://github.com/gmarik/vundle) ``` -Plugin 'Lokaltog/vim-easymotion' +Plugin 'easymotion/vim-easymotion' ``` ### NeoBundle (https://github.com/Shougo/neobundle.vim) ``` -NeoBundle 'Lokaltog/vim-easymotion' +NeoBundle 'easymotion/vim-easymotion' ``` Minimal Configuration Tutorial @@ -318,4 +318,4 @@ Now, all you need to remember is `s` and JK motions bindings, and it's good enou Of course you can use any key you want instead of `s` such as ``, `s`, etc... -If you want to use more useful mappings, please see [:h easymotion.txt](https://github.com/Lokaltog/vim-easymotion/blob/master/doc/easymotion.txt) for more detail. +If you want to use more useful mappings, please see [:h easymotion.txt](https://github.com/easymotion/vim-easymotion/blob/master/doc/easymotion.txt) for more detail. diff --git a/autoload/EasyMotion.vim b/autoload/EasyMotion.vim index 4135b4f..c8e684e 100644 --- a/autoload/EasyMotion.vim +++ b/autoload/EasyMotion.vim @@ -3,7 +3,7 @@ scriptencoding utf-8 " " Author: Kim Silkebækken " haya14busa -" Source: https://github.com/Lokaltog/vim-easymotion +" Source: https://github.com/easymotion/vim-easymotion "============================================================================= " Saving 'cpoptions' {{{ let s:save_cpo = &cpo @@ -73,7 +73,7 @@ function! EasyMotion#reset() " because 'f' & 't' forward find motion is inclusive, but 'F' & 'T' " backward find motion is exclusive " count_dot_repeat: -> dot repeat with count - " https://github.com/Lokaltog/vim-easymotion/issues/164 + " https://github.com/easymotion/vim-easymotion/issues/164 let s:current = { \ 'is_operator' : 0, \ 'is_search' : 0, diff --git a/doc/easymotion.txt b/doc/easymotion.txt index f965b59..f18ac58 100644 --- a/doc/easymotion.txt +++ b/doc/easymotion.txt @@ -634,7 +634,7 @@ Vi-compatible mode must be disabled. If your vim version is causing you problems with using this plugin, feel free to open an issue on github! -Link: https://github.com/Lokaltog/vim-easymotion/issues +Link: https://github.com/easymotion/vim-easymotion/issues ============================================================================== Configuration *easymotion-configuration* @@ -1075,7 +1075,7 @@ SOFTWARE. ============================================================================== Known bugs *easymotion-known-bugs* -See: https://github.com/Lokaltog/vim-easymotion/issues +See: https://github.com/easymotion/vim-easymotion/issues Pull Requests are welcome! :) @@ -1088,7 +1088,7 @@ have any code improvements. Author: Kim Silkebækken haya14busa (since version 2.0) -Source repository: https://github.com/Lokaltog/vim-easymotion +Source repository: https://github.com/easymotion/vim-easymotion ============================================================================== @@ -1107,7 +1107,7 @@ Credits *easymotion-credits* - mattn: fix multibyte handling - yuex: fix visual mode selection bug (o command) -and more!: https://github.com/Lokaltog/vim-easymotion/graphs/contributors +and more!: https://github.com/easymotion/vim-easymotion/graphs/contributors EasyMotion is based on Bartlomiej Podolak's great PreciseJump script, which can be downloaded here: diff --git a/plugin/EasyMotion.vim b/plugin/EasyMotion.vim index b6c9554..5fc1c62 100644 --- a/plugin/EasyMotion.vim +++ b/plugin/EasyMotion.vim @@ -3,7 +3,7 @@ scriptencoding utf-8 " " Author: Kim Silkebækken " haya14busa -" Source: https://github.com/Lokaltog/vim-easymotion +" Source: https://github.com/easymotion/vim-easymotion " == Script initialization {{{ if expand("%:p") ==# expand(":p") unlet! g:EasyMotion_loaded