Merge pull request #232 from rhysd/organization

Organization URL
This commit is contained in:
haya14busa 2015-06-22 23:10:04 +09:00
commit ef0cb2b0a0
4 changed files with 12 additions and 12 deletions

View File

@ -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 `<Space>`, `<Leader>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.

View File

@ -3,7 +3,7 @@ scriptencoding utf-8
"
" Author: Kim Silkebækken <kim.silkebaekken+vim@gmail.com>
" haya14busa <hayabusa1419@gmail.com>
" 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,

View File

@ -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 <kim.silkebaekken+vim@gmail.com>
haya14busa <hayabusa1419@gmail.com> (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:

View File

@ -3,7 +3,7 @@ scriptencoding utf-8
"
" Author: Kim Silkebækken <kim.silkebaekken+vim@gmail.com>
" haya14busa <hayabusa1419@gmail.com>
" Source: https://github.com/Lokaltog/vim-easymotion
" Source: https://github.com/easymotion/vim-easymotion
" == Script initialization {{{
if expand("%:p") ==# expand("<sfile>:p")
unlet! g:EasyMotion_loaded