commit
ef0cb2b0a0
10
README.md
10
README.md
@ -46,7 +46,7 @@ highlighted.
|
|||||||
|
|
||||||
EasyMotion is triggered by the provided mappings. This readme only covers the
|
EasyMotion is triggered by the provided mappings. This readme only covers the
|
||||||
basics; please refer to
|
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.
|
to see all the available mappings.
|
||||||
|
|
||||||
Important notes
|
Important notes
|
||||||
@ -267,17 +267,17 @@ Installation
|
|||||||
------------
|
------------
|
||||||
### Pathogen (https://github.com/tpope/vim-pathogen)
|
### 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)
|
### Vundle (https://github.com/gmarik/vundle)
|
||||||
```
|
```
|
||||||
Plugin 'Lokaltog/vim-easymotion'
|
Plugin 'easymotion/vim-easymotion'
|
||||||
```
|
```
|
||||||
|
|
||||||
### NeoBundle (https://github.com/Shougo/neobundle.vim)
|
### NeoBundle (https://github.com/Shougo/neobundle.vim)
|
||||||
```
|
```
|
||||||
NeoBundle 'Lokaltog/vim-easymotion'
|
NeoBundle 'easymotion/vim-easymotion'
|
||||||
```
|
```
|
||||||
|
|
||||||
Minimal Configuration Tutorial
|
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...
|
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.
|
||||||
|
@ -3,7 +3,7 @@ scriptencoding utf-8
|
|||||||
"
|
"
|
||||||
" Author: Kim Silkebækken <kim.silkebaekken+vim@gmail.com>
|
" Author: Kim Silkebækken <kim.silkebaekken+vim@gmail.com>
|
||||||
" haya14busa <hayabusa1419@gmail.com>
|
" haya14busa <hayabusa1419@gmail.com>
|
||||||
" Source: https://github.com/Lokaltog/vim-easymotion
|
" Source: https://github.com/easymotion/vim-easymotion
|
||||||
"=============================================================================
|
"=============================================================================
|
||||||
" Saving 'cpoptions' {{{
|
" Saving 'cpoptions' {{{
|
||||||
let s:save_cpo = &cpo
|
let s:save_cpo = &cpo
|
||||||
@ -73,7 +73,7 @@ function! EasyMotion#reset()
|
|||||||
" because 'f' & 't' forward find motion is inclusive, but 'F' & 'T'
|
" because 'f' & 't' forward find motion is inclusive, but 'F' & 'T'
|
||||||
" backward find motion is exclusive
|
" backward find motion is exclusive
|
||||||
" count_dot_repeat: -> dot repeat with count
|
" 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 = {
|
let s:current = {
|
||||||
\ 'is_operator' : 0,
|
\ 'is_operator' : 0,
|
||||||
\ 'is_search' : 0,
|
\ 'is_search' : 0,
|
||||||
|
@ -634,7 +634,7 @@ Vi-compatible mode must be disabled.
|
|||||||
If your vim version is causing you problems with using this plugin, feel free
|
If your vim version is causing you problems with using this plugin, feel free
|
||||||
to open an issue on github!
|
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*
|
Configuration *easymotion-configuration*
|
||||||
@ -1075,7 +1075,7 @@ SOFTWARE.
|
|||||||
==============================================================================
|
==============================================================================
|
||||||
Known bugs *easymotion-known-bugs*
|
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! :)
|
Pull Requests are welcome! :)
|
||||||
|
|
||||||
@ -1088,7 +1088,7 @@ have any code improvements.
|
|||||||
|
|
||||||
Author: Kim Silkebækken <kim.silkebaekken+vim@gmail.com>
|
Author: Kim Silkebækken <kim.silkebaekken+vim@gmail.com>
|
||||||
haya14busa <hayabusa1419@gmail.com> (since version 2.0)
|
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
|
- mattn: fix multibyte handling
|
||||||
- yuex: fix visual mode selection bug (o command)
|
- 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
|
EasyMotion is based on Bartlomiej Podolak's great PreciseJump script, which
|
||||||
can be downloaded here:
|
can be downloaded here:
|
||||||
|
@ -3,7 +3,7 @@ scriptencoding utf-8
|
|||||||
"
|
"
|
||||||
" Author: Kim Silkebækken <kim.silkebaekken+vim@gmail.com>
|
" Author: Kim Silkebækken <kim.silkebaekken+vim@gmail.com>
|
||||||
" haya14busa <hayabusa1419@gmail.com>
|
" haya14busa <hayabusa1419@gmail.com>
|
||||||
" Source: https://github.com/Lokaltog/vim-easymotion
|
" Source: https://github.com/easymotion/vim-easymotion
|
||||||
" == Script initialization {{{
|
" == Script initialization {{{
|
||||||
if expand("%:p") ==# expand("<sfile>:p")
|
if expand("%:p") ==# expand("<sfile>:p")
|
||||||
unlet! g:EasyMotion_loaded
|
unlet! g:EasyMotion_loaded
|
||||||
|
Loading…
x
Reference in New Issue
Block a user