-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Visual Mode
Stephen Blott edited this page Jan 26, 2016
·
8 revisions
Visual mode is used for selecting text on the page.
- use
v
to enter visual mode - use
V
to enter visual line mode
Visual mode implements a number of vim-like movements, j
, k
, h
, l
, w
, e
, b
, etc. Counts are also supported, for example 3e
.
Exiting visual mode:
-
Esc
- just exit visual mode -
y
- yank the selected text to the clipboard -
p
/P
- send the selected text to the default search engine
- If there is no existing selection when entering visual mode, then Vimium first enters caret mode. In caret mode, you can position the caret before entering visual-mode proper with
v
. -
v
andc
can be used to move back and forward between visual and caret modes. - In visual mode,
o
swaps the anchor and the focus, so you can also move the "other end" of the selection.