vim-easymotion/doc/easymotion.txt

287 lines
11 KiB
Plaintext
Raw Normal View History

2011-04-01 10:05:08 +02:00
*easymotion.txt* Version 1.1.1. Last change: 2011 Apr 1
2011-03-28 12:04:43 +02:00
______ __ ___ __ _
/ ____/____ ________ __/ |/ /____ / /_(_)____ ____
/ __/ / __ `/ ___/ / / / /|_/ // __ \/ __/ // __ \/ __ \
/ /___ / /_/ (__ ) /_/ / / / // /_/ / /_/ // /_/ / / / /
/_____/ \__,_/____/\__, /_/ /_/ \____/\__/_/ \____/_/ /_/
/____/
- Vim motions on speed!
==============================================================================
CONTENTS *easymotion-contents*
1. Introduction ....................... |easymotion-introduction|
2. Usage .............................. |easymotion-usage|
2011-03-31 08:23:40 +02:00
2.1 Default mappings ............... |easymotion-default-mappings|
2011-03-28 12:04:43 +02:00
3. Requirements ....................... |easymotion-requirements|
4. Configuration ...................... |easymotion-configuration|
4.1 EasyMotion_keys ................ |EasyMotion_keys|
4.2 EasyMotion_target_hl ........... |EasyMotion_target_hl|
4.3 EasyMotion_shade_hl ............ |EasyMotion_shade_hl|
4.4 EasyMotion_do_shade ............ |EasyMotion_do_shade|
4.5 EasyMotion_do_mapping .......... |EasyMotion_do_mapping|
2011-04-02 17:14:38 +02:00
4.6 EasyMotion_grouping ............ |EasyMotion_grouping|
4.7 Custom mappings ................ |easymotion-custom-mappings|
2011-03-28 12:04:43 +02:00
5. License ............................ |easymotion-license|
6. Known bugs ......................... |easymotion-known-bugs|
7. Contributing ....................... |easymotion-contributing|
8. Credits ............................ |easymotion-credits|
==============================================================================
1. Introduction *easymotion* *easymotion-introduction*
EasyMotion provides a much simpler way to use some motions in vim. It takes
the <number> out of <number>w or <number>f{char} by highlighting all possible
choices and allowing you to press one key to jump directly to the target.
When one of the available motions is triggered, all visible text preceding or
following the cursor is faded, and motion targets are highlighted.
==============================================================================
2. Usage *easymotion-usage*
2011-03-31 08:23:40 +02:00
EasyMotion is triggered by one of the provided mappings (see
2011-04-01 10:02:10 +02:00
|easymotion-default-mappings| for details).
2011-03-28 12:04:43 +02:00
Example: >
2011-03-31 08:23:40 +02:00
<cursor>Lorem ipsum dolor sit amet.
2011-03-28 12:04:43 +02:00
2011-03-31 08:23:40 +02:00
Type <Leader>w to trigger the word motion |w|. See |mapleader| for details
about the leader key. When the motion is triggered, the text is updated (no
braces are actually added, the text is highlighted in red by default): >
2011-03-28 12:04:43 +02:00
2011-03-31 08:23:40 +02:00
<cursor>Lorem {a}psum {b}olor {c}it {d}met.
2011-03-28 12:04:43 +02:00
2011-03-29 15:40:20 +02:00
Press "c" to jump to the beginning of the word "sit": >
2011-03-28 12:04:43 +02:00
2011-03-31 08:23:40 +02:00
Lorem ipsum dolor <cursor>sit amet.
Similarly, if you're looking for an "o", you can use the |f| motion.
Type <Leader>fo, and all "o" characters are highlighted: >
<cursor>L{a}rem ipsum d{b}l{c}r sit amet.
Press "b" to jump to the second "o": >
Lorem ipsum d<cursor>olor sit amet.
2011-03-28 12:04:43 +02:00
And that's it!
2011-03-31 08:23:40 +02:00
------------------------------------------------------------------------------
2.1 Default mappings *easymotion-default-mappings*
2011-03-31 17:24:55 +02:00
The default configuration defines the following mappings in normal,
visual and operator-pending mode:
2011-03-31 08:23:40 +02:00
Mapping | Details
------------------|----------------------------------------------
<Leader>f{char} | Find {char} to the right. See |f|.
<Leader>F{char} | Find {char} to the left. See |F|.
<Leader>t{char} | Till before the {char} to the right. See |t|.
<Leader>T{char} | Till after the {char} to the left. See |T|.
<Leader>w | Beginning of word forward. See |w|.
<Leader>W | Beginning of WORD forward. See |W|.
2011-03-31 08:23:40 +02:00
<Leader>b | Beginning of word backward. See |b|.
<Leader>B | Beginning of WORD backward. See |B|.
2011-03-31 08:23:40 +02:00
<Leader>e | End of word forward. See |e|.
<Leader>E | End of WORD forward. See |E|.
<Leader>ge | End of word backward. See |ge|.
<Leader>gE | End of WORD backward. See |gE|.
2011-03-31 08:23:40 +02:00
<Leader>j | Line downward. See |j|.
<Leader>k | Line upward. See |k|.
See |mapleader| for details about the leader key.
2011-04-01 08:01:48 +02:00
See |easymotion-custom-mappings| for customizing default mappings.
2011-03-31 08:23:40 +02:00
2011-03-28 12:04:43 +02:00
==============================================================================
3. Requirements *easymotion-requirements*
2011-03-29 15:40:20 +02:00
EasyMotion has been developed and tested in vim 7.3, but it should run without
any problems in vim 7.2.
Vi-compatible mode must be disabled.
2011-03-28 12:04:43 +02:00
==============================================================================
4. Configuration *easymotion-configuration*
2011-03-31 08:23:40 +02:00
EasyMotion will work fine without any configuration, but you can override the
default behavior by setting configuration variables globally in your |vimrc|
file.
2011-03-29 15:40:20 +02:00
2011-03-31 08:23:40 +02:00
Example (this will change the target keys and disable shading): >
2011-03-29 15:40:20 +02:00
2011-03-31 08:23:40 +02:00
let g:EasyMotion_keys = '1234567890'
let g:EasyMotion_do_shade = 0
2011-03-29 15:40:20 +02:00
2011-03-28 12:04:43 +02:00
------------------------------------------------------------------------------
4.1 EasyMotion_keys *EasyMotion_keys*
2011-03-29 15:40:20 +02:00
Set the keys which will be used for motion targets. Add as many keys as you
2011-03-31 08:23:40 +02:00
want. There's a lower chance that the motion targets will be grouped if many
keys are available.
2011-03-28 12:04:43 +02:00
Default: 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
------------------------------------------------------------------------------
4.2 EasyMotion_target_hl *EasyMotion_target_hl*
2011-03-31 08:23:40 +02:00
Set the highlighting group for motion targets. You can override the default
target highlighting by either changing this variable to another highlighting
group (e.g. |ErrorMsg|), or by using |hi| to override the default syntax
colors: >
hi EasyMotionTarget ctermfg=green ctermbg=black cterm=reverse
2011-03-28 12:04:43 +02:00
Default: 'EasyMotionTarget'
------------------------------------------------------------------------------
4.3 EasyMotion_shade_hl *EasyMotion_shade_hl*
2011-03-31 08:23:40 +02:00
Set the highlighting group for shaded text (see |EasyMotion_do_shade|). You
can override the default shade highlighting by either changing this variable
to another highlighting group, or by using |hi| to override the default syntax
colors: >
hi EasyMotionShade ctermfg=red ctermbg=black cterm=none
2011-03-28 12:04:43 +02:00
Default: 'EasyMotionShade'
------------------------------------------------------------------------------
4.4 EasyMotion_do_shade *EasyMotion_do_shade*
2011-03-31 08:23:40 +02:00
The default behavior is to shade the text following the cursor (forward
motions) or preceding the cursor (backward motions) to make the motion targets
more visible. Set this option to 0 if you want to disable text shading.
2011-03-28 12:04:43 +02:00
Default: 1
------------------------------------------------------------------------------
4.5 EasyMotion_do_mapping *EasyMotion_do_mapping*
2011-03-31 08:23:40 +02:00
Set this option to 0 if you want to disable the default mappings. See
|easymotion-default-mappings| for details about the default mappings.
2011-03-29 15:40:20 +02:00
Note: If you disable this option, you'll have to map the motions yourself. See
2011-04-01 08:01:48 +02:00
the plugin source code for mapping details. You usually shouldn't need to do
this, see |easymotion-custom-mappings| for customizing the default mappings.
2011-03-29 15:40:20 +02:00
2011-03-31 08:23:40 +02:00
Default: 1
2011-04-01 08:01:48 +02:00
------------------------------------------------------------------------------
2011-04-02 17:14:38 +02:00
4.6 EasyMotion_grouping *EasyMotion_grouping*
When there are too many possible targets on the screen, the results have to be
grouped. This configuration option lets you change which grouping algorithm
you want to use. There are two grouping algorithms available:
* Single-key priority (value: 1)
-------------------
This algorithm prioritizes single-key jumps for the targets closest to
the cursor and only groups the last jump targets to maximize the amount
of single-key jumps.
This algorithm works recursively and will work with as few keys as two.
Example (with |EasyMotion_keys| = "abcdef"): >
x x x x x x x x x
<
The |w| motion is triggered: >
a b c d e f f f f
^ ^ ^ ^ ^ Direct jump to target
^ ^ ^ ^ Enter group "f"
<
* Original (value: 2)
--------
This is the original algorithm which always groups all targets if there
are too many possible motion targets.
Example (with |EasyMotion_keys| = "abcdef"): >
x x x x x x x x x
<
The |w| motion is triggered: >
a a a a a a b b b
^ ^ ^ ^ ^ ^ Enter group "a"
^ ^ ^ Enter group "b"
Default: 1
------------------------------------------------------------------------------
4.7 Custom mappings *easymotion-custom-mappings*
2011-04-01 08:01:48 +02:00
EasyMotion allows you to customize all default mappings to avoid conflicts
2011-04-02 14:30:25 +02:00
with existing mappings. First, it is possible to change the default <leader>
key of all mappings to another key or sequence. It is also possible to fine
tune this plugin to your need by changing every single sequence.
2011-04-02 17:18:30 +02:00
4.7.1 EasyMotion_leader_key *easymotion-leader-key*
2011-04-02 14:30:25 +02:00
Set this option to the key sequence to use as the prefix of the mappings
described in |easymotion-default-mappings|.
Default: '<Leader>'
2011-04-02 17:18:30 +02:00
4.7.2 Custom Keys
2011-04-02 14:30:25 +02:00
All custom mappings follow the same variable format: >
2011-04-01 08:01:48 +02:00
EasyMotion_mapping_{motion} = {mapping}
Example: >
let g:EasyMotion_mapping_f = '_f'
let g:EasyMotion_mapping_T = '<C-T>'
See |easymotion-default-mappings| for a table of motions that can be mapped
and their default values.
2011-04-02 14:30:25 +02:00
Note: The leader key defined by EasyMotion_leader_key is not prepended to your
customized mappings. You have to give full key sequences.
2011-03-28 12:04:43 +02:00
==============================================================================
5. License *easymotion-license*
Creative Commons Attribution-ShareAlike 3.0 Unported
http://creativecommons.org/licenses/by-sa/3.0/
==============================================================================
6. Known bugs *easymotion-known-bugs*
2011-04-01 10:03:17 +02:00
None.
2011-03-28 12:04:43 +02:00
==============================================================================
7. Contributing *easymotion-contributing*
2011-03-29 15:40:20 +02:00
If you experience any bugs or have feature requests, please open an issue on
GitHub. Fork the source repository on GitHub and send a pull request if you
have any code improvements.
2011-03-28 12:04:43 +02:00
2011-03-29 14:10:00 +02:00
Author: Kim Silkebækken <kim.silkebaekken+vim@gmail.com>
Source repository: https://github.com/Lokaltog/vim-easymotion
2011-03-28 12:04:43 +02:00
==============================================================================
8. Credits *easymotion-credits*
- Ben Boeckel: ge and WORD motions
2011-03-31 17:20:49 +02:00
- Drew Neil: operator-pending mappings
2011-04-01 08:01:54 +02:00
- Rob O'Dwyer: customizable mappings without giving up all defaults
2011-04-02 17:18:43 +02:00
- Michel D'Hooge: customizable leader
2011-03-30 17:59:53 +02:00
2011-03-28 12:04:43 +02:00
EasyMotion is based on Bartlomiej Podolak's great PreciseJump script, which
can be downloaded here:
http://www.vim.org/scripts/script.php?script_id=3437
==============================================================================
vim:tw=78:sw=4:ts=8:ft=help:norl: