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

Doc​PHPManualer

garveen ST3

DocPHPManualer:在 Sublime Text 3 中显示 PHP 文档

标签 文档PHP手册

详细信息

安装次数

  • 总计 38K
  • Win 30K
  • Mac 2K
  • Linux 6K
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 2 0 1 1 1 1 0 0 3 0 0 2 0 3 0 1 0 1 1 0 1 0 3 0 2 2 2 0 0 0 0 0 2 0 0 1 4 0 1 0 0 2
Mac 1 1 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 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 1 0 0 0 0 0 2 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0

自述文件

源代码
raw.​githubusercontent.​com

适用于 Sublime Text 3 的 DocPHPManualer

Packagecontrol total downloads

在 Sublime Text 上显示当前函数的文档

Popup manual

用法

安装后,此包将显示可用的语言列表,您可以从其中选择您正在使用的语言。如果您以后想更改语言包,请使用 DocPHP: checkout language 命令。所有这些操作都将根据您的互联网连接状况可能需要几分钟。

默认快捷键为 ctrl + alt + d 用于 显示定义,以及 ctrl + alt + s 用于 搜索手册

注意

DocPHPManualer 将生成缓存文件,这些文件通常位于 SUBLIME_PATH/Data/Cache/DocPHPManualer。删除包时,应自动删除这些缓存文件。

设置

{
    // Show manual automatically
    "auto": false,

    // Delay after cursor finish moving, in microseconds
    "auto_delay": 500,

    // Debug mode
    "debug": false,

    // Select language
    "language": false,

    // Select fallback language
    "language_fallback": false,

    // Available languages
    "languages": {},

    // Max height and width of popup
    "popup_max_height": 1080,
    "popup_max_width": 1280,

    // Prompt "not found" when symbol not found
    // default false because new ST3 version has user-defined symbols prompt
    "prompt_when_not_found": false,

    // Use the panel on the bottom instead of popup
    "use_panel": false
}

命令

[
    {"caption": "DocPHP: Show Definition", "command": "docphp_show_definition"},
    {"caption": "DocPHP: Checkout Language", "command": "docphp_checkout_language"},
    {"caption": "DocPHP: Select Language", "command": "docphp_select_language"},
    {"caption": "DocPHP: Open Manual Index Page", "command": "docphp_open_manual_index"},
    {"caption": "DocPHP: Search Manual", "command": "docphp_search"},
]

快捷键

[
    { "keys": ["ctrl+alt+d"], "command": "docphp_show_definition"},
    { "keys": ["ctrl+alt+s"], "command": "docphp_search"},
]