FindDoc
Find documentation in Sublime Text
Details
Installs
- Total 3K
- Win 2K
- Mac 573
- Linux 395
| Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 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 |
Readme
- Source
- raw.githubusercontent.com
FindDoc - Sublime Text plugin
This is a Sublime Text plugins that allows you to search the documentation on your favorites urls.
How to install
The easiest way to install this is with Package Control.
Or you can download the zip archive and unzip in your packages directory (by Preferences->Browse Packages…).
How to configure
The default shortcut to call the plugin is : ctrl + alt + d.
The default used url is : http://devdocs.io/#q=%s.
But you can set multiple shortcuts and urls by your key bindings.
Examples :
{ "keys": ["ctrl+alt+d"], "command": "find_doc_selection", "args" : {"url" : "http://devdocs.io/#q=%s"} }
{ "keys": ["ctrl+alt+g"], "command": "find_doc_selection", "args" : {"url" : "http://google.fr/search?q=%s"} }
{ "keys": ["ctrl+alt+k"], "command": "find_doc_selection", "args" : {"url" : "http://php.net/%s"} }
Others examples : you can open cheat sheet or what do you want
{ "keys": ["ctrl+alt+c"], "command": "find_doc_selection", "args" : {"url" : "http://www.cheatography.com/fredv/cheat-sheets/gmail-cheat-sheet/"} }
{ "keys": ["ctrl+alt+n"], "command": "find_doc_selection", "args" : {"url" : "http://www.nyan.cat/"} }
You can also use the same shorcut but do differents action based on the current context:
- this is the default key binding
{
"keys": ["ctrl+alt+d"],
"command": "find_doc_selection",
"args" : {"url" : "http://devdocs.io/#q=%s"}
}
- Context-based key binding for Python code…
{
"keys": ["ctrl+alt+d"],
"command": "find_doc_selection",
"args" : {"url" : "http://devdocs.io/#q=python%%20%s"},
"context": [
{
"key": "selector",
"operator": "equal",
"operand": "source.python"
}
]
}
- Another one for JavaScript code…
{
"keys": ["ctrl+alt+d"],
"command": "find_doc_selection",
"args" : {"url" : "https://developer.mozilla.org/fr/search?q=%s"},
"context": [
{
"key": "selector",
"operator": "equal",
"operand": "source.js"
}
]
}
Note: you need to put context-specific key binding after the default
How to use
Highlight the function(s)/method(s)/text(s) to search and use the shortcut to open a new tab(s).
If you don't highlight text, the plugin selects the current word at cursor by camelCase.
How to contribute
If you have some problems or improvements, contact me via GitHub.