chrome vim插件vimnum快捷键与使用
Navigating the page
j : Scroll down (scrollDown)
k : Scroll up (scrollUp)
h : Scroll left (scrollLeft)
l : Scroll right (scrollRight)
gg : Scroll to the top of the page (scrollToTop)
G : Scroll to the bottom of the page (scrollToBottom)
d : Scroll a page down (scrollPageDown)
u : Scroll a page up (scrollPageUp)
Scroll a full page up (scrollFullPageUp)
Scroll a full page down (scrollFullPageDown)
r : Reload the page (reload)
gs : View page source (toggleViewSource)
yy : Copy the current URL to the clipboard (copyCurrentUrl)
yf : Copy a link URL to the clipboard (LinkHints.activateModeToCopyLinkUrl)
p : Open the clipboard's URL in the current tab (openCopiedUrlInCurrentTab)
P : Open the clipboard's URL in a new tab (openCopiedUrlInNewTab)
i : Enter insert mode (enterInsertMode)
v : Enter visual mode (beta feature) (enterVisualMode)
V : Enter visual line mode (beta feature) (enterVisualLineMode)
f : Open a link in the current tab (LinkHints.activateMode)
F : Open a link in a new tab (LinkHints.activateModeToOpenInNewTab)
Open a link in a new tab & switch to it (LinkHints.activateModeToOpenInNewForegroundTab)
gf : Cycle forward to the next frame on the page (nextFrame)
gF : Select the tab's main/top frame (mainFrame)
Using the vomnibar
o : Open URL, bookmark, or history entry (Vomnibar.activate)
O : Open URL, bookmark, history entry, in a new tab (Vomnibar.activateInNewTab)
T : Search through your open tabs (Vomnibar.activateTabSelection)
b : Open a bookmark (Vomnibar.activateBookmarks)
B : Open a bookmark in a new tab (Vomnibar.activateBookmarksInNewTab)
Using find
/ : Enter find mode (enterFindMode)
n : Cycle forward to the next find match (performFind)
N : Cycle backward to the previous find match (performBackwardsFind)
Navigating history
H : Go back in history (goBack)
L : Go forward in history (goForward)
Manipulating tabs
K, gt : Go one tab right (nextTab)
J, gT : Go one tab left (previousTab)
g0 : Go to the first tab (firstTab)
g$ : Go to the last tab (lastTab)
t : Create new tab (createTab)
yt : Duplicate current tab (duplicateTab)
x : Close current tab (removeTab)
X : Restore closed tab (restoreTab)
<a-p> : Pin/unpin current tab (togglePinTab)
Miscellaneous
? : Show help (showHelp)
chrome vim插件vimnum快捷键与使用的更多相关文章
- Sublime编辑器上的Linux Vim插件常用快捷键
Sublime编辑器上的 Vim 插件常用快捷键 vim 的设置: 在Reference-> User Settings(首选项--> 设置用户) 选项,点击进入配置文件编辑状态,默认的用 ...
- chrome浏览器插件的开启快捷键
用鼠标去打开chrome浏览器右上角的插件,总是感觉太麻烦,例如你想用有道词典的插件查一个单词的意思,用鼠标把有道插件打开,然后再回到键盘上敲单词,真的好麻烦.现在只要设置一下插件的快捷键就OK了. ...
- cVim—Chrome上更强大的vim插件
cVim——Chrome上更强大的vim插件 介绍 也许很多人在chrome上都用过类似Vimium, ViChrome的插件,这些插件的目的都差不多,就是在浏览器中提供一些类似vim的操作来提高效率 ...
- 【转载】跟我一起学习VIM - vim插件
目录 写在前面:Life Changing Editor 什么是VIM 为什么选VIM 为什么选其它 为什么犹豫选择它们 VIM >= SUM(现代编辑器) 如何学习VIM 一秒钟变记事本 VI ...
- 跟我一起学习VIM - vim插件合集
2016-06-14 15:04 13333人阅读 评论(0) 收藏 举报 分类: Linux(104) 目录(?)[+] 前两天同事让我在小组内部分享一下VIM,于是我花了一点时间写了个简短的教 ...
- 常用vim插件的安装、使用和管理
1.Ctags Ctags工具是用来遍历源代码文件生成tags文件,这些tags文件能被编辑器或者其他工具用来快速查找定位源代码中的符号,入变量名,函数名等.比如,tags文件就是Taglist和 ...
- 常用的Firefox浏览器插件、Chrome浏览器插件收藏
[血的教训] 不要去下载“Firefox中国版(谋智网络)”,默认情况下会给你安装好多的莫名其妙的插件,推荐去Firefox官方下载原版. Firefox 原版官方网址: https://www.mo ...
- VIM插件攻略
工欲善其事,必先利其器.一个强大的开发环境可以大大提高工作效率.好吧,我知道这是废话...不过,我想一定有很多跟我一样打算进入Linux平台开发的新手,一开始都为找不到一个像Windows下的VS那样 ...
- 「个人vim插件+配置」
2016.10.4 filetype indent on syntax on set nu ai ci si set sw= ts= set autochdir set backspace= colo ...
随机推荐
- usb.ids
# # List of USB ID's # # Maintained by Vojtech Pavlik <vojtech@suse.cz> # If you have any new ...
- Android ContentProvider和getContentResolver
安卓系统中的数据库SqlLite操作和java中mysql的数据库操作很不一样,造成这样的原因是因为在安卓中数据库是属于进程的不存在数据库客户端,也不存在数据库服务器. 关于SqlLite数据库的文章 ...
- hadoop多机安装YARN
hadoop伪分布安装称为测试环境安装,多机分布称为生成环境安装.以下安装没有进行HA(热备)和Federation(联邦).除非是性能需要,否则没必要安装Federation,HA可以一试,涉及到Z ...
- bzoj1085
肯定是搜索题无疑问, 首先要求在15步以内(包括15步)到达目标状态,也就是限定了搜索的深度,于是我们用dfs更合适 但这样复杂度仍然太大,原因就是我们在搜索中做了很多很不优的尝试 考虑当前状态若与目 ...
- 总结@ 在C# 中的用法
一 字符串中的用法 1.地球人都知道 C# 中 字符串常量可以以 @ 开头声名,这样的优点是转义序列“不”被处理,按“原样”输出,即我们不需要对转义字符加上 \ (反斜扛),就可以轻松coding.如 ...
- Ajax长连接应用
所谓的长连接,就是不断去发送请求,把请求阻塞在服务器端,每次超过请求时间就去重新发送请求,保持连接,随时获取服务器端的响应的数据 function connection(){ $.ajax({ typ ...
- “面包屑导航”——SiteMapPath控件的使用(ASP.NET)(转)
转自:http://www.cnblogs.com/ball-head/archive/2010/09/28/1837253.html 最近在博客里写了一些日志,主要都是我在实际编程过程中遇到的问题. ...
- jQuery 分步引导 插件
转自:http://blog.libnav.com/js/57.html 很多时候一个网站或者一个Web应用出品,为了让你的用户知道你的站点(或应用)有些什么?如何操作?为了让你的用户有更好的体验.往 ...
- 各种工具使得数据分析工作使用python变得越来越流行
请参看文章:http://strata.oreilly.com/2013/03/python-data-tools-just-keep-getting-better.html
- 解决Scrapy抓取中文结果保存为文件时的编码问题
import json import codecs # Define your item pipelines here # # Don't forget to add your pipeline to ...