Yanpas / vscode-dash

Dash and Zeal documentation integration in Visual Studio Code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Visual Studio Code Dash

Dash documentation integration for Visual Studio Code

Dash is an API Documentation Browser and Code Snippet Manager for MacOS

Also support Zeal for Windows and Linux.

Build Status Coverage Status All Contributors

vscode dash

Installation

Type cmd + shift + p to launch command palette and choose Extensions: Install Extension. Search this package and install.

Usage

Get the text under your cursor or selected first:

  • Pressing ctrl + h. It will search for current specific documentation depends on language.
  • Pressing ctrl + alt + h. It will search for all documentation.

No need to select the text:

  • Pressing ctrl + shift + h. It will open dash with current file's docset.
  • Pressing alt + h. It will open dash with custom string and current file's docset.

Supported Docsets

This plugin supports almost all docset configuration based on Dash Mapping

NOTE

For other languages that are not supported by default in VS Code, you probably need to install language plugins first in order to allow VS Code to detect the language.

Language Dash Docset Keys Docset Setting Language Plugin
Ansible ansible dash.docset.ansible, dash.docset.ansible-advanced link
C++ cpp,net,boost,qt,cvcpp,cocos2dx,c,manpages dash.docset.cpp link
C# net,mono,unity3d dash.docset.csharp
Clojure clojure dash.docset.clojure
CoffeeScript coffee dash.docset.coffee
CSS css,bootstrap,foundation,less,awesome,
cordova,phonegap
dash.docset.css
Dart dartlang,polymerdart,angulardart dash.docset.dart link
Elixir elixir dash.docset.elixir link
Erlang erlang dash.docset.erlang
Go go,godoc dash.docset.go link
Haskell haskell dash.docset.haskell
Haml haml dash.docset.haml link
Haxe haxe dash.docset.haxe link
HTML html,svg,css,bootstrap,foundation,
awesome,statamic,javascript,jquery,jqueryui,
jquerym,angularjs,backbone,marionette,
meteor,moo,prototype,ember,lodash,
underscore,sencha,extjs,knockout,
zepto,cordova,phonegap,yui
dash.docset.html
Jade jade dash.docset.jade
Java java,javafx,grails,groovy,playjava,spring,
cvj,processing
dash.docset.java link
JavaScript javascript,jquery,jqueryui,jquerym,react,
angularjs,backbone,marionette,meteor,
sproutcore,moo,prototype,bootstrap,
foundation,lodash,underscore,ember,
sencha,extjs,titanium,knockout,zepto,
yui,d3,svg,dojo,coffee,nodejs,express,
grunt,mongoose,moment,require,
awsjs,jasmine,sails,sinon,chai,
html,css,cordova,phonegap,unity3d
dash.docset.javascript
Julia julia dash.docset.julia link
Less less dash.docset.less
Lua lua,corona dash.docset.lua link
Markdown markdown dash.docset.markdown
Objective-C iphoneos,macosx,watchos,tvos,
appledoc,cocos2d,cocos3d,
kobold2d,sparrow,c,manpages
dash.docset.objective-c
Perl perl,manpages dash.docset.perl
PHP php,wordpress,drupal,zend,laravel,yii,joomla,ee,
codeigniter,cakephp,phpunit,symfony,typo3,
twig,smarty,craft,phpp,html,statamic,mysql,
sqlite,mongodb,psql,redis
dash.docset.php
Processing processing dash.docset.pde link
Puppet puppet dash.docset.puppet link
Python python,django,twisted,sphinx,flask,tornado,
sqlalchemy,numpy,scipy,salt,pandas,matplotlib,cvp
dash.docset.python link
R r dash.docset.r
Ruby ruby,rubygems,rails dash.docset.ruby link
Rust rust dash.docset.rust link
Sass sass,compass,bourbon,neat,susy,css dash.docset.sass
Scala scala,akka,playscala dash.docset.scala
Shell Scripts bash,manpages dash.docset.shellscript
SQL mysql,sqlite,psql dash.docset.sql
Stylus stylus dash.docset.stylus link
Swift swift,iphoneos,macosx,watchos,tvos,appledoc dash.docset.swift link
Tcl tcl dash.docset.tcl link
Terraform terraform dash.docset.terraform link
TypeScript typescript dash.docset.typescript
YAML chef,ansible dash.docset.yaml

Added docset in this plugin

Language Dash Docset Keys Docset Setting Language Plugin
Elm elm dash.docset.elm link
React react dash.docset.javascriptreact link

What is Dash Docset Keys?

You can find dash docset key in Dash application.

dash docset key

Change Docset Configuration

You can change docset in settings.json or pressing cmd + ,. Every configuration start with dash.docset. See Docset Setting column in Supported Docset table above.

Example Case:

Based on default docset configuration, if we search in typescript files (.ts), it will search in typescript docset. But now we want to make it able to search in javascript docset too.

Type cmd + , then we change typescript docset by adding new dash docset key "javascript". So, whenever we search from typescript files, it will search in typescript and javascript docset.

The result will look like below:

// settings.json, add lines below
"dash.docset.typescript": [
    "typescript",
    "javascript" // we add new dash docset key here
]

Change Keyboard Shortcut

You can bind default shortcut to another shortcut keys

Choose in top menu Code -> Preferences -> Keyboard Shortcuts or using shortcuts cmd + K, cmd + S

Add one or two lines below

{ "key": "your_shortcut", "command": "extension.dash.specific" }, // search selection in corresponding docset
{ "key": "your_shortcut", "command": "extension.dash.all" } // search in all docset
{ "key": "your_shortcut", "command": "extension.dash.emptySyntax" } // open dash with current file's docset open
{ "key": "your_shortcut", "command": "extension.dash.searchSyntax" } // open dash with custom string and current file's docset

Contributors

Thank you for these awesome contributors


Budi Irawan

πŸ’» πŸ“–

Dima Granetchi

πŸ’» πŸ“–

Logan Saso

πŸ’» πŸ“–

Zhongren Shao

πŸ’» πŸ“–

dingweifeng

πŸ“–

Seth Bromberger

πŸ’» πŸ“–

License

MIT Β© Budi Irawan

About

Dash and Zeal documentation integration in Visual Studio Code

License:MIT License


Languages

Language:TypeScript 100.0%