Comandos comunes de Vimium

Objetivo: ¡Bájate del ratón!

Vimium es un complemento útil para Chrome. Puede usar comandos de teclado para realizar varias operaciones en el navegador. Es una gran ayuda para los usuarios de vim. ¡Puedes trabajar de manera eficiente sin el mouse!

El siguiente es principalmente el resumen del autor de las instrucciones de vimium, que incluye dos partes: instrucciones que deben practicarse e instrucciones comunes.

necesito practicar

# Navigating the current page
f  open a link in the current tab
F  open a link in a new tab
r  reload
yy copy the current url to the clipboard
yf copy a link url to the clipboard

# Navigating to new pages
o  Open URL, bookmark, or history entry
O  Open URL, bookmark, history entry in a new tab
b  Open bookmark
B  Open bookmark in a new tab


# Manipulating tabs:
t       create tab
yt      duplicate current tab
T       search through your open tabs
X       restore closed tab (i.e. unwind the 'x' command)
W       move current tab to new window
<a-p>   pin/unpin current tab


# Additional advanced browsing commands
]], [[  Follow the link labeled 'next' or '>' ('previous' or '<')
          - helpful for browsing paginated sites
gi      focus the first (or n-th) text input box on the page. Use <tab> to cycle through options.
gu      go up one level in the URL hierarchy
gU      go up to root of the URL hierarchy
ge      edit the current URL
gE      edit the current URL and open in a new tab

otro

Navegando por la página actual

?       show the help dialog for a list of all available keys
h       scroll left
j       scroll down
k       scroll up
l       scroll right
gg      scroll to top of the page
G       scroll to bottom of the page
d       scroll down half a page
u       scroll up half a page
f       open a link in the current tab
F       open a link in a new tab
r       reload
gs      view source
i       enter insert mode -- all commands will be ignored until you hit Esc to exit
yy      copy the current url to the clipboard
yf      copy a link url to the clipboard
gf      cycle forward to the next frame
gF      focus the main/top frame

Navegando a nuevas páginas

o       Open URL, bookmark, or history entry
O       Open URL, bookmark, history entry in a new tab
b       Open bookmark
B       Open bookmark in a new tab

Usando encontrar:

/       enter find mode
          -- type your search query and hit enter to search, or Esc to cancel
n       cycle forward to the next find match
N       cycle backward to the previous find match

Manipulación de pestañas:

J, gT   go one tab left
K, gt   go one tab right
g0      go to the first tab. Use ng0 to go to n-th tab
g$      go to the last tab
^       visit the previously-visited tab
t       create tab
yt      duplicate current tab
x       close current tab
X       restore closed tab (i.e. unwind the 'x' command)
T       search through your open tabs
W       move current tab to new window
<a-p>   pin/unpin current tab

usando marcas

ma, mA  set local mark "a" (global mark "A")
`a, `A  jump to local mark "a" (global mark "A")
``      jump back to the position before the previous jump
          -- that is, before the previous gg, G, n, N, / or `a

Comandos adicionales de navegación avanzada

]], [[  Follow the link labeled 'next' or '>' ('previous' or '<')
          - helpful for browsing paginated sites
<a-f>   open multiple links in a new tab
gi      focus the first (or n-th) text input box on the page. Use <tab> to cycle through options.
gu      go up one level in the URL hierarchy
gU      go up to root of the URL hierarchy
ge      edit the current URL
gE      edit the current URL and open in a new tab
zH      scroll all the way left
zL      scroll all the way right
v       enter visual mode; use p/P to paste-and-go, use y to yank
V       enter visual line mode

Supongo que te gusta

Origin blog.csdn.net/qq_37768971/article/details/118492677
Recomendado
Clasificación