Googler
Sublime Text插件,简化Google搜索。
详情
安装
- 总计 953
- Win 557
- Mac 200
- Linux 196
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 |
Mac | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
读取me
Googler
Sublime Text插件,简化Google搜索。
功能和能力
- 打开Google首页
- 谷歌当前选择
- 将选择的内容作为文件类型自动加前缀
- 在搜索之前可编辑选择/查询
- 为每种文件类型配置搜索查询的前缀和后缀
用法
按super
键,然后输入og
- 没有任何选择时,将带您到Google
- 如果有选择,它将打开一个面板,您可以在此编辑查询(确认后按
Enter
键)
设置
从菜单栏
Sublime Text -> 偏好设置 -> 软件包设置 -> Googler -> 设置 - 用户
默认和示例设置可以在设置 - 默认
文件中找到。
查找文件类型
按ctrl + `
在Sublime Text中打开控制台。粘贴以下命令并按Enter
键以找到文件类型。
self.view.scope_name(region.begin()).rpartition('.')[2].strip()
然后您可以使用此作为设置文件中的键。
配置
在您的设置 - 用户
文件中
{
"includeScope": false, // Disables file type configs
"ruby": { // For .rb files the file type is 'ruby'
"prefix": "rails", // Useful if you are working on a Rails project
"suffix": "site:api.rubyonrails.org" // Restrict results to a site
},
"js": {
"prefix": "", // Disable the prefix for this scope
"suffix": "react docs"
}
}