ctrl+shift+p filters: :st2 :st3 :win :osx :linux
浏览

Web搜索

kallookoo 全部 需要审查

Sublime Text插件,可在全球范围内进行搜索

详细信息

  • 2.0.3
  • github.com
  • github.com
  • 6年前
  • 1年前
  • 12年前

安装量

  • 总数 987
  • Win 598
  • Mac 211
  • Linux 178
8月7日 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日
Windows 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 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 0 0 0 0 0 0 0 0 0 0 0 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

说明

来源
raw.githubusercontent.com

WebSearch

将不再更新。如果有人希望继续更新它,请与我联系。

Sublime Text插件,可在全球范围内进行搜索。

本软件包添加

  • 视图上下文菜单中的“Web搜索”命令
  • 当前选定的单词或文本的命令面板
  • 询问您要搜索什么的命令面板
  • 在会话期间更改引擎的命令面板(关闭Sublime Text,返回到活动引擎)

默认使用Google进行网页搜索,但搜索引擎是可以配置的。

安装

使用Package Control

  • 从命令面板中,选择 Package Control: Install Package
  • 查找“WebSearch”

用法

  • 在视图上下文中使用,查看context_menu选项以进行自定义。
  • 将光标放入单词或选择一些文本,然后按Ctrl+Shift+s.
  • 使用命令面板:查找 WebSearch… 并选择可用选项

设置

{
    // Select current engine
    "current_engine": "Google",
    // Default engines defined inside of plugin
    // is possible overwritte any engine using same name
    // "engines":
    // {
    //     "Ask": "https://www.ask.com/web?q=",
    //     "Bing": "https://www.bing.com/search?q=",
    //     "DuckDuckGo": "https://duckduckgo.com/?q=",
    //     "Google": "https://google.com/search?q=",
    //     "Wikipedia": "https://wikipedia.org/w/index.php?search=",
    //     "Yahoo": "https://search.yahoo.com/search?p="
    // },
    "engines": {},
    // Enable developer engines
    "use_developer_engines": false,
    // Default developer enfines inside of plugin
    // is possible overwritte any engine using same name.
    // They are the ones that have occurred to me ;)
    // "developer_engines":
    // {
    //     "MDN": "https://mdn.org.cn/search?q=",
    //     "PHP": "https://www.php.ac.cn/search.php?show=quickref&pattern=",
    //     "Python": "https://docs.pythonlang.cn/3/search.html?q=",
    //     "Python2": "https://docs.pythonlang.cn/2/search.html?q=",
    //     "WordPress": "https://developer.wordpress.org/?s="
    // },
    "developer_engines": {},
    // Exclude available engines for show
    // Default to exclude: ["Ask", "Bing", "Yahoo", "Python2"]
    "exclude_engines_from_list": ["Ask", "Bing", "Yahoo", "Python2"],
    // Change mode of the context menu
    "context_menu_with_children": false,
    // Show context menu with different caption:
    // 1 - default text caption "Web Search" (disabled if "context_menu_with_children": true)
    // 2 - Custom text "Search on <engine>"
    // 3 - Custom text with excerpt "Search on <engine> for <excerpt>..."
    "context_menu_description": 3,
    // Length of the selected text for view in context menu
    "context_menu_description_length": 10,
    // Mode to open browser, tab or window
    "browser_mode": "tab",
    // Select and change the search engine when the Command Palette is used
    // Command palette option on execute:
    // - WebSearch: Search selected text
    // - WebSearch: Search text
    // Note:
    // It does change globally, to maintain the "current_engine" and not have to change it again.
    "engine_change": false,
    // Add "WebSearch: <engine>" on status bar
    "show_current_engine_on_status_bar": true,
    // Use for remove or change status bar text prefix
    "status_bar_text_prefix": "WebSearch:"
}

添加新的或重写现有的搜索引擎

  • 打开首选项 > 包设置 > Web搜索 > 设置 - 用户
  • engines下添加新条目

代码

{
    "engines": {
        "EngineName": "EngineUrl"
    }
}

可用的快捷键

  • 使用当前引擎启动搜索:ctrl+shift+s
  • 使用自定义查询启动搜索:ctrl+alt+s
  • 仅在本会话中更改当前引擎:ctrl+shift+e

更改默认快捷键

打开首选项 > 包设置 > Web搜索 > 键盘快捷方式 - 用户