mirror of
https://github.com/zebrajr/HomeLab.git
synced 2025-12-06 00:20:22 +01:00
Updated: atom packages
This commit is contained in:
parent
80ea31de0f
commit
8e1fe519c4
|
|
@ -1,6 +1,9 @@
|
|||
"*":
|
||||
core:
|
||||
autoHideMenuBar: true
|
||||
disabledPackages: [
|
||||
"language-gfm"
|
||||
]
|
||||
telemetryConsent: "no"
|
||||
themes: [
|
||||
"atom-material-ui"
|
||||
|
|
|
|||
12
dotfiles/.atom/packages/atom-beautify/.codeclimate.yml
Normal file
12
dotfiles/.atom/packages/atom-beautify/.codeclimate.yml
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
engines:
|
||||
coffeelint:
|
||||
enabled: true
|
||||
eslint:
|
||||
enabled: true
|
||||
|
||||
ratings:
|
||||
paths:
|
||||
- "**.coffee"
|
||||
- "**.js"
|
||||
|
||||
exclude_paths:
|
||||
12
dotfiles/.atom/packages/atom-beautify/.codoopts
Normal file
12
dotfiles/.atom/packages/atom-beautify/.codoopts
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
--name "Atom-Beautify"
|
||||
--readme README.md
|
||||
--title "Atom-Beautify Documentation"
|
||||
--private
|
||||
--quiet
|
||||
--undocumented
|
||||
--extension coffee
|
||||
--output ./docs/code
|
||||
./src
|
||||
-
|
||||
LICENSE
|
||||
CHANGELOG.md
|
||||
328
dotfiles/.atom/packages/atom-beautify/.csscomb.json
Normal file
328
dotfiles/.atom/packages/atom-beautify/.csscomb.json
Normal file
|
|
@ -0,0 +1,328 @@
|
|||
{
|
||||
"exclude": [
|
||||
".git/**",
|
||||
"node_modules/**",
|
||||
"bower_components/**"
|
||||
],
|
||||
"always-semicolon": true,
|
||||
"block-indent": " ",
|
||||
"color-case": "lower",
|
||||
"color-shorthand": true,
|
||||
"element-case": "lower",
|
||||
"eof-newline": true,
|
||||
"leading-zero": false,
|
||||
"quotes": "single",
|
||||
"remove-empty-rulesets": true,
|
||||
"space-after-colon": " ",
|
||||
"space-after-combinator": " ",
|
||||
"space-after-opening-brace": "\n",
|
||||
"space-after-selector-delimiter": "\n",
|
||||
"space-before-closing-brace": "\n",
|
||||
"space-before-colon": "",
|
||||
"space-before-combinator": " ",
|
||||
"space-before-opening-brace": "\n",
|
||||
"space-before-selector-delimiter": "",
|
||||
"strip-spaces": true,
|
||||
"unitless-zero": true,
|
||||
"vendor-prefix-align": true,
|
||||
"sort-order": [
|
||||
[
|
||||
"font",
|
||||
"font-family",
|
||||
"font-size",
|
||||
"font-weight",
|
||||
"font-style",
|
||||
"font-variant",
|
||||
"font-size-adjust",
|
||||
"font-stretch",
|
||||
"font-effect",
|
||||
"font-emphasize",
|
||||
"font-emphasize-position",
|
||||
"font-emphasize-style",
|
||||
"font-smooth",
|
||||
"line-height"
|
||||
],
|
||||
[
|
||||
"position",
|
||||
"z-index",
|
||||
"top",
|
||||
"right",
|
||||
"bottom",
|
||||
"left"
|
||||
],
|
||||
[
|
||||
"display",
|
||||
"visibility",
|
||||
"float",
|
||||
"clear",
|
||||
"overflow",
|
||||
"overflow-x",
|
||||
"overflow-y",
|
||||
"-ms-overflow-x",
|
||||
"-ms-overflow-y",
|
||||
"clip",
|
||||
"zoom",
|
||||
"flex-direction",
|
||||
"flex-order",
|
||||
"flex-pack",
|
||||
"flex-align"
|
||||
],
|
||||
[
|
||||
"-webkit-box-sizing",
|
||||
"-moz-box-sizing",
|
||||
"box-sizing",
|
||||
"width",
|
||||
"min-width",
|
||||
"max-width",
|
||||
"height",
|
||||
"min-height",
|
||||
"max-height",
|
||||
"margin",
|
||||
"margin-top",
|
||||
"margin-right",
|
||||
"margin-bottom",
|
||||
"margin-left",
|
||||
"padding",
|
||||
"padding-top",
|
||||
"padding-right",
|
||||
"padding-bottom",
|
||||
"padding-left"
|
||||
],
|
||||
[
|
||||
"table-layout",
|
||||
"empty-cells",
|
||||
"caption-side",
|
||||
"border-spacing",
|
||||
"border-collapse",
|
||||
"list-style",
|
||||
"list-style-position",
|
||||
"list-style-type",
|
||||
"list-style-image"
|
||||
],
|
||||
[
|
||||
"content",
|
||||
"quotes",
|
||||
"counter-reset",
|
||||
"counter-increment",
|
||||
"resize",
|
||||
"cursor",
|
||||
"-webkit-user-select",
|
||||
"-moz-user-select",
|
||||
"-ms-user-select",
|
||||
"user-select",
|
||||
"nav-index",
|
||||
"nav-up",
|
||||
"nav-right",
|
||||
"nav-down",
|
||||
"nav-left",
|
||||
"-webkit-transition",
|
||||
"-moz-transition",
|
||||
"-ms-transition",
|
||||
"-o-transition",
|
||||
"transition",
|
||||
"-webkit-transition-delay",
|
||||
"-moz-transition-delay",
|
||||
"-ms-transition-delay",
|
||||
"-o-transition-delay",
|
||||
"transition-delay",
|
||||
"-webkit-transition-timing-function",
|
||||
"-moz-transition-timing-function",
|
||||
"-ms-transition-timing-function",
|
||||
"-o-transition-timing-function",
|
||||
"transition-timing-function",
|
||||
"-webkit-transition-duration",
|
||||
"-moz-transition-duration",
|
||||
"-ms-transition-duration",
|
||||
"-o-transition-duration",
|
||||
"transition-duration",
|
||||
"-webkit-transition-property",
|
||||
"-moz-transition-property",
|
||||
"-ms-transition-property",
|
||||
"-o-transition-property",
|
||||
"transition-property",
|
||||
"-webkit-transform",
|
||||
"-moz-transform",
|
||||
"-ms-transform",
|
||||
"-o-transform",
|
||||
"transform",
|
||||
"-webkit-transform-origin",
|
||||
"-moz-transform-origin",
|
||||
"-ms-transform-origin",
|
||||
"-o-transform-origin",
|
||||
"transform-origin",
|
||||
"-webkit-animation",
|
||||
"-moz-animation",
|
||||
"-ms-animation",
|
||||
"-o-animation",
|
||||
"animation",
|
||||
"-webkit-animation-name",
|
||||
"-moz-animation-name",
|
||||
"-ms-animation-name",
|
||||
"-o-animation-name",
|
||||
"animation-name",
|
||||
"-webkit-animation-duration",
|
||||
"-moz-animation-duration",
|
||||
"-ms-animation-duration",
|
||||
"-o-animation-duration",
|
||||
"animation-duration",
|
||||
"-webkit-animation-play-state",
|
||||
"-moz-animation-play-state",
|
||||
"-ms-animation-play-state",
|
||||
"-o-animation-play-state",
|
||||
"animation-play-state",
|
||||
"-webkit-animation-timing-function",
|
||||
"-moz-animation-timing-function",
|
||||
"-ms-animation-timing-function",
|
||||
"-o-animation-timing-function",
|
||||
"animation-timing-function",
|
||||
"-webkit-animation-delay",
|
||||
"-moz-animation-delay",
|
||||
"-ms-animation-delay",
|
||||
"-o-animation-delay",
|
||||
"animation-delay",
|
||||
"-webkit-animation-iteration-count",
|
||||
"-moz-animation-iteration-count",
|
||||
"-ms-animation-iteration-count",
|
||||
"-o-animation-iteration-count",
|
||||
"animation-iteration-count",
|
||||
"-webkit-animation-direction",
|
||||
"-moz-animation-direction",
|
||||
"-ms-animation-direction",
|
||||
"-o-animation-direction",
|
||||
"animation-direction",
|
||||
"text-align",
|
||||
"-webkit-text-align-last",
|
||||
"-moz-text-align-last",
|
||||
"-ms-text-align-last",
|
||||
"text-align-last",
|
||||
"vertical-align",
|
||||
"white-space",
|
||||
"text-decoration",
|
||||
"text-emphasis",
|
||||
"text-emphasis-color",
|
||||
"text-emphasis-style",
|
||||
"text-emphasis-position",
|
||||
"text-indent",
|
||||
"-ms-text-justify",
|
||||
"text-justify",
|
||||
"letter-spacing",
|
||||
"word-spacing",
|
||||
"-ms-writing-mode",
|
||||
"text-outline",
|
||||
"text-transform",
|
||||
"text-wrap",
|
||||
"text-overflow",
|
||||
"-ms-text-overflow",
|
||||
"text-overflow-ellipsis",
|
||||
"text-overflow-mode",
|
||||
"-ms-word-wrap",
|
||||
"word-wrap",
|
||||
"word-break",
|
||||
"-ms-word-break",
|
||||
"-moz-tab-size",
|
||||
"-o-tab-size",
|
||||
"tab-size",
|
||||
"-webkit-hyphens",
|
||||
"-moz-hyphens",
|
||||
"hyphens",
|
||||
"pointer-events"
|
||||
],
|
||||
[
|
||||
"opacity",
|
||||
"filter:progid:DXImageTransform.Microsoft.Alpha(Opacity",
|
||||
"-ms-filter:\\'progid:DXImageTransform.Microsoft.Alpha",
|
||||
"-ms-interpolation-mode",
|
||||
"color",
|
||||
"border",
|
||||
"border-width",
|
||||
"border-style",
|
||||
"border-color",
|
||||
"border-top",
|
||||
"border-top-width",
|
||||
"border-top-style",
|
||||
"border-top-color",
|
||||
"border-right",
|
||||
"border-right-width",
|
||||
"border-right-style",
|
||||
"border-right-color",
|
||||
"border-bottom",
|
||||
"border-bottom-width",
|
||||
"border-bottom-style",
|
||||
"border-bottom-color",
|
||||
"border-left",
|
||||
"border-left-width",
|
||||
"border-left-style",
|
||||
"border-left-color",
|
||||
"-webkit-border-radius",
|
||||
"-moz-border-radius",
|
||||
"border-radius",
|
||||
"-webkit-border-top-left-radius",
|
||||
"-moz-border-radius-topleft",
|
||||
"border-top-left-radius",
|
||||
"-webkit-border-top-right-radius",
|
||||
"-moz-border-radius-topright",
|
||||
"border-top-right-radius",
|
||||
"-webkit-border-bottom-right-radius",
|
||||
"-moz-border-radius-bottomright",
|
||||
"border-bottom-right-radius",
|
||||
"-webkit-border-bottom-left-radius",
|
||||
"-moz-border-radius-bottomleft",
|
||||
"border-bottom-left-radius",
|
||||
"-webkit-border-image",
|
||||
"-moz-border-image",
|
||||
"-o-border-image",
|
||||
"border-image",
|
||||
"-webkit-border-image-source",
|
||||
"-moz-border-image-source",
|
||||
"-o-border-image-source",
|
||||
"border-image-source",
|
||||
"-webkit-border-image-slice",
|
||||
"-moz-border-image-slice",
|
||||
"-o-border-image-slice",
|
||||
"border-image-slice",
|
||||
"-webkit-border-image-width",
|
||||
"-moz-border-image-width",
|
||||
"-o-border-image-width",
|
||||
"border-image-width",
|
||||
"-webkit-border-image-outset",
|
||||
"-moz-border-image-outset",
|
||||
"-o-border-image-outset",
|
||||
"border-image-outset",
|
||||
"-webkit-border-image-repeat",
|
||||
"-moz-border-image-repeat",
|
||||
"-o-border-image-repeat",
|
||||
"border-image-repeat",
|
||||
"outline",
|
||||
"outline-width",
|
||||
"outline-style",
|
||||
"outline-color",
|
||||
"outline-offset",
|
||||
"background",
|
||||
"filter:progid:DXImageTransform.Microsoft.AlphaImageLoader",
|
||||
"background-color",
|
||||
"background-image",
|
||||
"background-repeat",
|
||||
"background-attachment",
|
||||
"background-position",
|
||||
"background-position-x",
|
||||
"-ms-background-position-x",
|
||||
"background-position-y",
|
||||
"-ms-background-position-y",
|
||||
"-webkit-background-clip",
|
||||
"-moz-background-clip",
|
||||
"background-clip",
|
||||
"background-origin",
|
||||
"-webkit-background-size",
|
||||
"-moz-background-size",
|
||||
"-o-background-size",
|
||||
"background-size",
|
||||
"box-decoration-break",
|
||||
"-webkit-box-shadow",
|
||||
"-moz-box-shadow",
|
||||
"box-shadow",
|
||||
"filter:progid:DXImageTransform.Microsoft.gradient",
|
||||
"-ms-filter:\\'progid:DXImageTransform.Microsoft.gradient",
|
||||
"text-shadow"
|
||||
]
|
||||
]
|
||||
}
|
||||
15
dotfiles/.atom/packages/atom-beautify/.github/issuecomplete.yml
vendored
Normal file
15
dotfiles/.atom/packages/atom-beautify/.github/issuecomplete.yml
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
labelName: waiting-for-user-information
|
||||
|
||||
labelColor: f7c6c7
|
||||
|
||||
commentText: >
|
||||
Please follow the [issue template](https://github.com/Glavin001/atom-beautify/blob/master/ISSUE_TEMPLATE.md) provided.
|
||||
More specifically, update the original comment for this issue by adding a link to the
|
||||
required [debug.md](https://github.com/Glavin001/atom-beautify/blob/master/docs/troubleshooting.md#how-to-create-debugmd-gist)
|
||||
gist which includes debugging information that answers our most commonly asked questions.
|
||||
Thank you.
|
||||
|
||||
checkCheckboxes: true
|
||||
|
||||
keywords:
|
||||
- gist.github.com
|
||||
13
dotfiles/.atom/packages/atom-beautify/.github/no-response.yml
vendored
Normal file
13
dotfiles/.atom/packages/atom-beautify/.github/no-response.yml
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
# Configuration for probot-no-response - https://github.com/probot/no-response
|
||||
|
||||
# Number of days of inactivity before an Issue is closed for lack of response
|
||||
daysUntilClose: 7
|
||||
# Label requiring a response
|
||||
responseRequiredLabel: waiting-for-user-information
|
||||
# Comment to post when closing an Issue for lack of response. Set to `false` to disable
|
||||
closeComment: >
|
||||
This issue has been automatically closed because there has been no response
|
||||
to our request for more information from the original author. With only the
|
||||
information that is currently in the issue, we don't have enough information
|
||||
to take action. Please reach out if you have or find the answers we need so
|
||||
that we can investigate further.
|
||||
19
dotfiles/.atom/packages/atom-beautify/.github/stale.yml
vendored
Normal file
19
dotfiles/.atom/packages/atom-beautify/.github/stale.yml
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# Number of days of inactivity before an issue becomes stale
|
||||
daysUntilStale: 60
|
||||
# Number of days of inactivity before a stale issue is closed
|
||||
daysUntilClose: 7
|
||||
# Issues with these labels will never be considered stale
|
||||
exemptLabels:
|
||||
- high priority
|
||||
- pending-publication
|
||||
- add-language
|
||||
- add-beautifier
|
||||
# Label to use when marking an issue as stale
|
||||
staleLabel: stale
|
||||
# Comment to post when marking an issue as stale. Set to `false` to disable
|
||||
markComment: >
|
||||
This issue has been automatically marked as stale because it has not had
|
||||
recent activity. If this is still an issue, please add a comment. It will be closed if no further activity occurs. Thank you
|
||||
for your contributions.
|
||||
# Comment to post when closing a stale issue. Set to `false` to disable
|
||||
closeComment: false
|
||||
22
dotfiles/.atom/packages/atom-beautify/.jshintrc
Normal file
22
dotfiles/.atom/packages/atom-beautify/.jshintrc
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"node": true,
|
||||
"esnext": true,
|
||||
"bitwise": true,
|
||||
"camelcase": true,
|
||||
"curly": true,
|
||||
"eqeqeq": true,
|
||||
"immed": true,
|
||||
"indent": 2,
|
||||
"newcap": true,
|
||||
"noarg": true,
|
||||
"quotmark": "single",
|
||||
"regexp": true,
|
||||
"undef": true,
|
||||
"unused": true,
|
||||
"strict": true,
|
||||
"trailing": true,
|
||||
"smarttabs": true,
|
||||
"globals": {
|
||||
"atom": true
|
||||
}
|
||||
}
|
||||
10
dotfiles/.atom/packages/atom-beautify/.mention-bot
Normal file
10
dotfiles/.atom/packages/atom-beautify/.mention-bot
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
|
||||
{
|
||||
"userBlacklist": [
|
||||
"Glavin001"
|
||||
],
|
||||
"fileBlacklist": [
|
||||
"*.md",
|
||||
"package.json"
|
||||
]
|
||||
}
|
||||
9
dotfiles/.atom/packages/atom-beautify/.npmignore
Normal file
9
dotfiles/.atom/packages/atom-beautify/.npmignore
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
.DS_Store
|
||||
.npmignore
|
||||
npm-debug.log
|
||||
spec/
|
||||
docs/
|
||||
examples/
|
||||
.travis.yml
|
||||
appveyor.yml
|
||||
*.md
|
||||
88
dotfiles/.atom/packages/atom-beautify/.travis.yml
Normal file
88
dotfiles/.atom/packages/atom-beautify/.travis.yml
Normal file
|
|
@ -0,0 +1,88 @@
|
|||
notifications:
|
||||
webhooks:
|
||||
urls:
|
||||
- https://webhooks.gitter.im/e/a7cbe520877895f3154a
|
||||
on_success: change # options: [always|never|change] default: always
|
||||
on_failure: always # options: [always|never|change] default: always
|
||||
on_start: true # default: false
|
||||
email:
|
||||
on_success: never
|
||||
on_failure: change
|
||||
|
||||
script: sh build-package.sh
|
||||
|
||||
language: generic
|
||||
|
||||
cache:
|
||||
timeout: 1000
|
||||
|
||||
git:
|
||||
depth: 1
|
||||
|
||||
os:
|
||||
- linux
|
||||
- osx
|
||||
sudo: required
|
||||
|
||||
env:
|
||||
global:
|
||||
matrix:
|
||||
- ATOM_SCRIPT_NAME=atom-beta APM_SCRIPT_NAME=apm-beta
|
||||
- ATOM_SCRIPT_NAME=atom APM_SCRIPT_NAME=apm
|
||||
|
||||
addons:
|
||||
apt:
|
||||
sources:
|
||||
- sourceline: 'deb http://dist.crystal-lang.org/apt crystal main'
|
||||
- sourceline: 'deb http://ppa.launchpad.net/avsm/ppa/ubuntu trusty main'
|
||||
- sourceline: 'deb http://ppa.launchpad.net/ubuntu-lxc/lxd-stable/ubuntu trusty main'
|
||||
packages:
|
||||
- build-essential
|
||||
- git
|
||||
- libgnome-keyring-dev
|
||||
- fakeroot
|
||||
- aspcud
|
||||
- php5-cli
|
||||
- golang
|
||||
|
||||
cache:
|
||||
pip: true
|
||||
bundler: true
|
||||
directories:
|
||||
- vendor/bundle # gems are installed here, https://docs.travis-ci.com/user/languages/ruby/#Dependency-Management
|
||||
- node_modules
|
||||
- $HOME/.atom
|
||||
- $HOME/.opam
|
||||
|
||||
before_install:
|
||||
# linux: Install Nix, Nix packages, upgrade pip, and install python packages
|
||||
# osx: Update Homebrew, remove conflicting cask, brew bundle, symlink elm-format,
|
||||
# upgrade pip, and install python packages
|
||||
- echo $TRAVIS_COMMIT_MESSAGE
|
||||
- export TRAVIS_COMMIT_MESSAGE=""
|
||||
- echo $TRAVIS_COMMIT_MESSAGE
|
||||
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
||||
curl https://nixos.org/nix/install | sh &&
|
||||
. ~/.nix-profile/etc/profile.d/nix.sh &&
|
||||
nix-env -i uncrustify R elm-format terraform atom atom-beta &&
|
||||
pip install --user -r requirements.txt;
|
||||
elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||
brew update && brew cask zap oclint && brew bundle &&
|
||||
ln -s /usr/local/bin/elm-format-0.17 /usr/local/bin/elm-format &&
|
||||
pip2 install -r requirements.txt;
|
||||
else
|
||||
echo Error:TRAVIS_OS_NAME && exit 1;
|
||||
fi
|
||||
# Ruby language support
|
||||
- bundle install
|
||||
# R
|
||||
- Rscript --version
|
||||
# PHP
|
||||
- composer install
|
||||
# OCaml
|
||||
# - opam init --auto-setup
|
||||
# Init environment variables for opam
|
||||
# - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
||||
# eval `opam config env`;
|
||||
# fi
|
||||
# - opam install --yes ocp-indent
|
||||
9
dotfiles/.atom/packages/atom-beautify/Brewfile
Normal file
9
dotfiles/.atom/packages/atom-beautify/Brewfile
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
tap 'caskroom/versions'
|
||||
brew 'uncrustify'
|
||||
brew 'r'
|
||||
brew 'composer'
|
||||
brew 'crystal-lang'
|
||||
brew 'terraform'
|
||||
brew 'elm-format'
|
||||
cask 'atom'
|
||||
cask 'atom-beta'
|
||||
888
dotfiles/.atom/packages/atom-beautify/CHANGELOG.md
Normal file
888
dotfiles/.atom/packages/atom-beautify/CHANGELOG.md
Normal file
|
|
@ -0,0 +1,888 @@
|
|||
# v0.33.3 (2018-09-28)
|
||||
|
||||
- Fix [#2204](https://github.com/Glavin001/atom-beautify/issues/2204). Auto-remove docker containers after run.
|
||||
|
||||
You can clean up old Docker containers by running:
|
||||
|
||||
```bash
|
||||
docker ps --all | grep "unibeautify/" | awk '{ print $1 }' | xargs docker rm
|
||||
```
|
||||
|
||||
# v0.33.2 (2018-09-26)
|
||||
- (BREAKING CHANGE) Added `inline` and `content_unformatted` options from `js-beautify` html settings and cleared `unformatted`. Breaking change but generally improves the behavior to more accurately beautify html. ([#2210](https://github.com/Glavin001/atom-beautify/issues/2210), [#2215](https://github.com/Glavin001/atom-beautify/pull/2215), [js-beautify#1407](https://github.com/beautify-web/js-beautify/pull/1407))
|
||||
- ocamlformat formatter added for OCaml [#2207](https://github.com/Glavin001/atom-beautify/pull/2207)
|
||||
- [Black](https://github.com/ambv/black) beautifier added [#2189](https://github.com/Glavin001/atom-beautify/pull/2189)
|
||||
|
||||
# v0.33.1 (2018-09-09)
|
||||
- Remove dependency marko-prettyprint in an effort to resolve installation and update issues
|
||||
|
||||
# v0.33.0 (2018-08-10)
|
||||
- Fixes an issue where Atom Beautify would display a Docker error instead of an executable error ([#2146](https://github.com/Glavin001/atom-beautify/issues/2146))
|
||||
- Fixes Rubocop not excluding files with an exact pattern match (`db/schema.rb` vs `db/**/*`)
|
||||
- Add [Black](http://github.com/ambv/black) beautifier for Python.
|
||||
|
||||
# v0.32.5 (2018-05-28)
|
||||
- Fixes an issue with Rubocop not working on Windows ([#2092](https://github.com/Glavin001/atom-beautify/issues/2092))
|
||||
- Fixes an issue with PHPCBF not running when specifying a path to it ([#2140](https://github.com/Glavin001/atom-beautify/issues/2140))
|
||||
- Fixes the repository link to Atom Beautify within Atom's settings ([#2086](https://github.com/Glavin001/atom-beautify/pull/2086))
|
||||
|
||||
# v0.32.4 (2018-05-15)
|
||||
- Fix php-cs-fixer not running when using `.phar` files ([#2134](https://github.com/Glavin001/atom-beautify/pull/2134))
|
||||
- Fix error `Error is not defined` ([#2134](https://github.com/Glavin001/atom-beautify/pull/2134))
|
||||
|
||||
# v0.32.3 (2018-05-14)
|
||||
- Issue [#448](https://github.com/Glavin001/atom-beautify/issues/448) Add support for Laravel Blade templates (beta)
|
||||
- Fix Docker Executable with optional Executable, PHP-CS-Fixer ([#2129](https://github.com/Glavin001/atom-beautify/pull/2129))
|
||||
|
||||
# v0.32.2 (2018-03-10)
|
||||
- Revert fix package.json repository field (#2062)
|
||||
|
||||
# v0.32.1 (2018-03-10)
|
||||
- Update Prettier to 1.11.1. (#2060)
|
||||
- Fix package.json repository field (#2062)
|
||||
- Fix "Reindent" option for sqlformat. (#2064)
|
||||
|
||||
# v0.32.0 (2018-03-02)
|
||||
- See [#2026](https://github.com/Glavin001/atom-beautify/issues/2026) Add Vue support to ESLint Fixer beautifier. Should be used with [eslint-plugin-vue](https://github.com/vuejs/eslint-plugin-vue).
|
||||
- Fix Beauify File option for .lua files
|
||||
- Switch to Remark as a default markdown beautifier due to a more active state of its community compared to Tidy Markdown ([#2004](https://github.com/Glavin001/atom-beautify/pull/2004)).
|
||||
This is a __breaking change__ for Tidy Markdown users:
|
||||
- list indentation is now four characters per level (three spaces after `-` for unordered lists and two spaces after `N.` in ordered lists)
|
||||
- the contents of frontmatter are no longer formatted
|
||||
|
||||
You can easily switch back to the old behaviour by choosing _Tidy Markdown_ in package preferences.
|
||||
Alternatively, you can customise Remark beautifier with `.jsbeautifyrc` (see [available options](https://github.com/remarkjs/remark/tree/master/packages/remark-stringify#options)).
|
||||
- Add GN language and beautifier
|
||||
- Add the option to indent Bash with tabs [#1951](https://github.com/Glavin001/atom-beautify/issues/1951)
|
||||
- See [#1980](https://github.com/Glavin001/atom-beautify/pull/1980). Add VHDL beautifier and language support.
|
||||
- Implement Verilog/SystemVerilog beautification via emacs verilog-mode
|
||||
- Add support for MagicPython grammar [#1851](https://github.com/Glavin001/atom-beautify/issues/1851)
|
||||
- Add "Reindent" option for sqlformat. See [#1926](https://github.com/Glavin001/atom-beautify/pull/1926).
|
||||
- Add hindent and brittany beautifiers for haskell
|
||||
- Breaking change to `pybeautifier`: Fix typo, change `formater` to `formatter`. See [#1898](https://github.com/Glavin001/atom-beautify/pull/1898).
|
||||
- Fixes [#1773](https://github.com/Glavin001/atom-beautify/issues/1773) and [#793](https://github.com/Glavin001/atom-beautify/issues/793). ruby-beautify with Rubocop now respects `Exclude` settings, and properly loads inherited config files (like `~/.rubocop.yml`)
|
||||
- Add hindent and brittany beautifiers for haskell
|
||||
- Fix [#1862](https://github.com/Glavin001/atom-beautify/issues/1862) Add support for ocp-indent as an executable
|
||||
- See [#601](https://github.com/Glavin001/atom-beautify/issues/1862) Add support for tsx files
|
||||
- See [#1497](https://github.com/Glavin001/atom-beautify/issues/1497) and [#802](https://github.com/Glavin001/atom-beautify/issues/802)
|
||||
|
||||
# v0.30.9 (2017-11-22)
|
||||
- Fix [#1949](https://github.com/Glavin001/atom-beautify/issues/1949): Fix beautify on save when text has not changed.
|
||||
|
||||
# v0.30.8 (2017-11-22)
|
||||
- Fix [#1949](https://github.com/Glavin001/atom-beautify/issues/1949): Fix beautify on save when text has not changed.
|
||||
|
||||
# v0.30.7 (2017-11-21)
|
||||
- Refactor handleSaveEvent to use onWillSave async ([#1924](https://github.com/Glavin001/atom-beautify/pull/1924), [#1895](https://github.com/Glavin001/atom-beautify/issues/1895))
|
||||
|
||||
# v0.30.6 (2017-10-30)
|
||||
- See [#645](https://github.com/Glavin001/atom-beautify/issues/645). Add support for Terraform fmt.
|
||||
- See [#881](https://github.com/Glavin001/atom-beautify/issues/881). Update to Prettydiff version 2!
|
||||
- Fix for [#1888](https://github.com/Glavin001/atom-beautify/issues/1888). Allow 0 for minor and patch versions of Docker
|
||||
- Add Atom-Beautify package settings menu item to Packages menu [#1869](https://github.com/Glavin001/atom-beautify/issues/1869)
|
||||
- Add `.ttslua` file extension to Lua language
|
||||
- Fix [#1638](https://github.com/Glavin001/atom-beautify/issues/1638). Update TypeScript Formatter dependency
|
||||
- Fix [#1833](https://github.com/Glavin001/atom-beautify/issues/1833) `os.tmpDir` deprecation warning
|
||||
|
||||
# v0.30.5 (2017-08-11)
|
||||
- Fix for [#1721](https://github.com/Glavin001/atom-beautify/issues/1721). Changes required due to TextBuffer.save becoming async in Atom 1.19
|
||||
- Fixes [#1638](https://github.com/Glavin001/atom-beautify/issues/1638). Update type-formatter and Fixes indent size not supported
|
||||
- See [#358](https://github.com/Glavin001/atom-beautify/issues/358). Add support for rustfmt-nightly
|
||||
|
||||
# v0.30.4 (2017-07-14)
|
||||
- Fixes #1732. Improve deprecation message for old options for new Executables
|
||||
- Fixes #1751. Fix for latexindent v3
|
||||
|
||||
# v0.30.3 (2017-06-21)
|
||||
- Improve command not found error message
|
||||
- Add goimports beautifier for Go language
|
||||
- Fixes [#1728](https://github.com/Glavin001/atom-beautify/issues/1728). Remove Shell-Env from Executable, use Atom's process.env instead. See [#1735](https://github.com/Glavin001/atom-beautify/pull/1735).
|
||||
|
||||
# v0.30.2 (2017-06-20)
|
||||
- Fixes [#1030](https://github.com/Glavin001/atom-beautify/issues/1030). Add support for alpha versions of autopep8
|
||||
- Fixes [#1725](https://github.com/Glavin001/atom-beautify/issues/1725). Fix version parsing of PHP executable
|
||||
- Fixes [#1730](https://github.com/Glavin001/atom-beautify/issues/1730). Correctly parse PHPCBF version and improve handling of Executable
|
||||
|
||||
# v0.30.1 (2017-06-19)
|
||||
- Fix [#1703](https://github.com/Glavin001/atom-beautify/issues/1703). Now Fortran 2003/2008 file extensions are available for Fortran beautifier.
|
||||
- Fix [#1030](https://github.com/Glavin001/atom-beautify/issues/1030). Autopep8 Executable did not handle older and newer versions.
|
||||
- Fixes [#1725](https://github.com/Glavin001/atom-beautify/issues/1725). Improve PHP-CS-Fixer support with handling script path
|
||||
Detect if the executable path is either .phar (PHP) or not and
|
||||
run the executable PHP-CS-Fixer differently considering.
|
||||
|
||||
# v0.30.0 (2017-06-17)
|
||||
- Close [#1687](https://github.com/Glavin001/atom-beautify/issues/1687). Introducing Executables with Docker support! Executables wrap any non-preinstalled application, check if it is installed, and provide additional configuration options, including Docker support! See [#1687](https://github.com/Glavin001/atom-beautify/issues/1687) for more information.
|
||||
- Fix [#1652](https://github.com/Glavin001/atom-beautify/issues/1652) and [#1653](https://github.com/Glavin001/atom-beautify/issues/1653). Add `.rb` to temp files passed in to the `rubocop` executable so they are not excluded.
|
||||
- Fixes [#1361](https://github.com/Glavin001/atom-beautify/issues/1361). Add file extension to temporary files for Uncrustify beautifier
|
||||
- Fixed #1613 and #1588. Add EOL, scientific notation, and adjust whitespace support for Lua Beautifier
|
||||
|
||||
# v0.29.26 (2017-05-28)
|
||||
- Fix #116. Switch from setText to setTextViaDiff, preserve folds
|
||||
- Add more perl filetypes (#1603)
|
||||
- Add more LaTeX extensions (#1617)
|
||||
- Don't specify file extension when requiring modules (#1631)
|
||||
- Update CSSComb to v4.0.1. (#1660)
|
||||
- Fix #1682. Removed --no-patch flag from phpcbf beautifier version 3 (#1683)
|
||||
- Fix [#1524](https://github.com/Glavin001/atom-beautify/issues/1524). Add PHP-CS-Fixer config file setting and improve automatic detection of standard config files. See [#1661](https://github.com/Glavin001/atom-beautify/pull/1661)
|
||||
- Add .php extension to temp files (#1649)
|
||||
- Add support for files with '.config' extension. Add extension to the XML language to support XML config files. (#1285)
|
||||
|
||||
# v0.29.25 (2017-05-12)
|
||||
- Fix [#1547](https://github.com/Glavin001/atom-beautify/issues/1547), [#1630](https://github.com/Glavin001/atom-beautify/issues/1630). Update CSSComb to latest version.
|
||||
|
||||
# v0.29.24 (2017-05-06)
|
||||
- Fix [#1643](https://github.com/Glavin001/atom-beautify/issues/1643). Add PHPCBF Version setting and remove "--no-patch" option from version 3.0 of PHPCBF. See [#1645](https://github.com/Glavin001/atom-beautify/pull/1645).
|
||||
- Close [#27](https://github.com/Glavin001/atom-beautify/issues/27). Add commands for beautifying a specific language
|
||||
- Add "Allow Risky" option for PHP-CS-Fixer. See [#1614](https://github.com/Glavin001/atom-beautify/pull/1614)
|
||||
- Set Yaml padding default value to 0, removing Atom warning message "'atom-beautify.yaml.padding' could not set the default." See [#1647](https://github.com/Glavin001/atom-beautify/issues/1647).
|
||||
|
||||
# v0.29.23 (2017-04-20)
|
||||
- See #1607. Add support for PHP-CS-Fixer 1, along with version 2.
|
||||
- Closes #1179. Replace atom-beautify.general.analytics option with configuration option
|
||||
- Add more LaTeX extensions
|
||||
|
||||
# v0.29.3 to v0.29.22 (2016-04-16 to 2017-04-15)
|
||||
- Add support for additional wrap attribute options of js-beautify (html): force-aligned and force-expand-multiline.
|
||||
- Update to `remark`'s new API and fix [#1196](https://github.com/Glavin001/atom-beautify/issues/1196)
|
||||
- Add beautifier for the Lua language.
|
||||
- Add [ocp-indent](https://github.com/OCamlPro/ocp-indent) beautifier for the OCaml language.
|
||||
- Add [elm-format](https://github.com/avh4/elm-format) beautifier for the Elm language.
|
||||
- Add [clang-format](http://clang.llvm.org/docs/ClangFormat.html) beautifier for C/C++/Obj-C languages.
|
||||
- Add [yapf](http://github.com/google/yapf) beautifier for Python.
|
||||
- Add [ESLint](https://github.com/eslint/eslint) beautifier for Javascript
|
||||
- Closes [#776](https://github.com/Glavin001/atom-beautify/issues/776) Add support for `collapse-preserve-inline` brace_style for javascript.
|
||||
- Closes [#786](https://github.com/Glavin001/atom-beautify/issues/786) YAPF configuration files are ignored.
|
||||
- Fix phpcbf hanging issue by closing stdin. See [#893](https://github.com/Glavin001/atom-beautify/issues/893)
|
||||
- Add warning notification when parsing `.jsbeautifyrc` as JSON or YAML fails. See [#1106](https://github.com/Glavin001/atom-beautify/issues/1106)
|
||||
- Add support for PrettyDiff's *bracepadding* option in JavaScript. See [#1157](https://github.com/Glavin001/atom-beautify/issues/1157)
|
||||
- Closes [#447](https://github.com/Glavin001/atom-beautify/issues/447). Improved Handlebars language support
|
||||
- Closes [#384](https://github.com/Glavin001/atom-beautify/issues/384). Add [latexindent.pl](https://github.com/cmhughes/latexindent.pl) beautifier for LaTeX language
|
||||
|
||||
# v0.29.2 (2016-04-08)
|
||||
- See #924. Add more verbose debugging to beautifyFilePath
|
||||
- See #864. Fix Logger to use renamed loggerLevel setting key
|
||||
- See #919. Remove options from analytics tracking
|
||||
- See #916. allow beatify `*.pug` files
|
||||
- Closes #905. Add Handlebars support to Pretty Diff beautifier
|
||||
|
||||
# v0.29.2 (2016-04-08)
|
||||
- See #898. Improve notification for unsupported settings
|
||||
|
||||
# v0.29.1 (2016-04-04)
|
||||
- Fixes #891. Fix build-options postinstall script for Window
|
||||
|
||||
# v0.29.0 (2016-03-01)
|
||||
- Fix deprecation warnings triggered by TextEditor methods. #885
|
||||
- See #864. Add Migration command from old option keys to new keys
|
||||
- See #713. Better settings and performance. #864
|
||||
- See #876, #679. Build beautifier options postinstall instead of activate
|
||||
- See #717. Remove unsupported options for Coldfusion language
|
||||
- See #405, #782. Improve description of Beautify Entire File On Save option
|
||||
- Fixes #758. Add XTemplate support to Pretty Diff beautifier
|
||||
- Fixes #766. Change default beautifier of Riotjs to Pretty Diff
|
||||
- Revert "Revert "Organize settings/options into groups that will be collapsable""
|
||||
|
||||
# v0.28.28 (2016-03-30)
|
||||
- Closes #199. Add Jade/Pug beautify support
|
||||
- Fixes #879. Fix circular structure in JSON config/settings
|
||||
- Fix yapf style issue. #856
|
||||
- Adds LaTeX language support. #845
|
||||
- Added opencl language support. #872
|
||||
|
||||
# v0.28.27 (2016-03-27)
|
||||
- Fixes #868. Update expand-home-dir to v0.0.3
|
||||
- Tabs changed to literal and default to using tabs
|
||||
|
||||
# v0.28.26 (2016-03-03)
|
||||
- See #839, #844. Add test for unique language namespaces
|
||||
- Update Lodash to v4.6.1
|
||||
- Update Pretty Diff to v1.16.27
|
||||
- Remove Haskell tests because it takes so long to install
|
||||
|
||||
# v0.28.25 (2016-03-02)
|
||||
- Fixes #839. Throw error if languages have same namespace
|
||||
- Implements #384
|
||||
- Basic implementation for latex with latexindent.pl
|
||||
- See #828, #757, #731, #750. Fix Riot.js support,
|
||||
|
||||
# v0.28.24 (2016-02-25)
|
||||
- Revert "Organize settings/options into groups that will be collapsable"
|
||||
|
||||
# v0.28.23 (2016-02-25)
|
||||
- Updating riotjs.coffee. #766
|
||||
- Include Apex extension: "trigger". See #825
|
||||
- Organize settings/options into groups that will be collapsable
|
||||
- Fix PHPCBF error when path to executable is not set. #823
|
||||
- See #733. Add language-d for testing and "d" extension to language file
|
||||
- Rust - Add ability to read rustfmt.toml
|
||||
- [#776] Bump jsbeautify to 1.6.2. Add support for collapse-preserve-inline
|
||||
- PHPCBF (PHP_CodeSniffer) + Remark for Markdown support
|
||||
- Adds 'unchanged' option to the SQL beautifier
|
||||
- See #524. Added pretty diff ternaryline option
|
||||
- Add Apex language support
|
||||
- add: remark for markdown
|
||||
- adding support for phpcbf
|
||||
|
||||
# v0.28.22 (2016-02-08)
|
||||
- adding support for grammar SLD. #763
|
||||
- adding XHTML file extension as an XML grammar. #756
|
||||
- Adding language Riot.js. #757
|
||||
- Adding support for new HTML templating language: XTemplate. #758
|
||||
|
||||
# v0.28.21 (2016-01-12)
|
||||
- Fixes #736. Change unformatted option default value to match js-beautify
|
||||
- Improve Help Debug Editor with options for language & beautifier
|
||||
|
||||
# v0.28.20 (2016-01-11)
|
||||
- Update Prettydiff dependency to 1.16.5
|
||||
- Add support for Elm. #700
|
||||
- Add Optional Path for Rubocop. #676
|
||||
- Set ignoreResponseCode to true in yapf.coffee. #671
|
||||
- added import sorting using isort + small yapf fix
|
||||
|
||||
# v0.28.19 (2015-11-19)
|
||||
- Improved "Help Debug Editor" command. Result diff, shorten log path
|
||||
|
||||
# v0.28.18 (2015-11-14)
|
||||
- See #535. Change on save check from editor.alive to editor.isAlive()
|
||||
- Closes #535. Do not restore editor positions if editor is destroyed.
|
||||
- Update Pretty Diff to v1.15.16 & fix JSX test
|
||||
|
||||
# v0.28.17 (2015-11-08)
|
||||
- Improve CSScomb support
|
||||
- YAPF fix. See #631
|
||||
- PR #594 Fixing test for issue #524
|
||||
- See #524. Added support for methodchain setting in prettydiff.
|
||||
- JSP support via beautifying as XML in Pretty Diff
|
||||
- Support dynamically reloading custom file .csscomb.json file changes
|
||||
|
||||
# v0.28.16 (2015-10-29)
|
||||
- See #629. Support stylish-haskell
|
||||
|
||||
# v0.28.15 (2015-10-25)
|
||||
- Fixes #428. Switch to event-kit, replacing emissary
|
||||
- See #600. Fix README link to Keymaps In-Depth docs
|
||||
- See #546. Add two beautifiers: clang-format and yapf
|
||||
|
||||
# v0.28.14 (2015-09-22)
|
||||
- Close #561. Default prettydiff comments to indent
|
||||
|
||||
# v0.28.13 (2015-09-22)
|
||||
- Closes #559. Add support for XSL and XSD grammars and file extensions
|
||||
|
||||
# v0.28.12 (2015-09-10)
|
||||
- See #524, #534. Add end_with_comma option to JavaScript using Pretty Diff
|
||||
- See #524 and #543. Add no_lead_zero to CSS with Pretty Diff support
|
||||
- Add extra_liners option from js-beautify in Settings View. See #540
|
||||
- Closes #529. Improve documentation generation for package options
|
||||
|
||||
# v0.28.11 (2015-08-10)
|
||||
- Properly dispose of event subscriptions. #501
|
||||
- Fixes #496. Update Pretty Diff and fix adding two spaces incorrectly
|
||||
- Properly dispose of all subscriptions
|
||||
|
||||
# v0.28.10 (2015-08-05)
|
||||
- Handle language being null in Help Debug Editor command. #497
|
||||
|
||||
# v0.28.9 (2015-07-17)
|
||||
- add language scopes to atom language config gets. #436
|
||||
- Fixes #479. Fix handling perltidy_profile option when it is an empty string
|
||||
- :bug: fix the race condition in beautify on save for setting cursor positions. #476
|
||||
- Add Gherkin grammar support. #377
|
||||
- Add Arduino language. #469
|
||||
|
||||
# v0.28.8 (2015-06-26)
|
||||
- Beautify Swig templates with handlebars instead of markup. See #464
|
||||
- Closes #447. Improved Handlebars language support
|
||||
- Add SVG support. #449
|
||||
- Added support of .rubocop.yml file in project root. #414
|
||||
|
||||
# v0.28.7 (2015-06-26)
|
||||
- Add JSCS Fixer beautifier. #412
|
||||
- Fix option, indent_size, to work with ruby-beautify
|
||||
|
||||
# v0.28.6 (2015-06-25)
|
||||
- Closes #410. Add space_after_anon_function option to Pretty Diff
|
||||
- Add more logging to beautifiers
|
||||
- Add final options, package settings, language detected to Help Debug Editor. See #413. This extra info would be useful
|
||||
|
||||
# v0.28.5 (2015-06-14)
|
||||
- Handle Windows command not found error being different. See #397
|
||||
- Fix Windows spawn issues, switch to cross-spawn
|
||||
- Fixes #397. sqlformat should not be able to be found and used.
|
||||
|
||||
# v0.28.4 (2015-06-12)
|
||||
- See #390. Revert previous commit to fix PHP-CS-Fixer and rubocop
|
||||
- See #390. Use global php-cs-fixer on Windows without running within php
|
||||
- See #213. Disable `Beautify Directory` command from menus
|
||||
- See #213. Add OK/Cancel buttons to Beautify Directory command
|
||||
- See #213. Add warning to beautify-directory
|
||||
|
||||
# v0.28.3 (2015-06-11)
|
||||
- Closes #264. Choose Pretty Diff beautifier as default for ERB
|
||||
- Add indent_size option to htmlbeautifier
|
||||
- Make Pretty Diff default beautifier for ERB
|
||||
- See #394. Improve error message when program cannot be found
|
||||
- Closes #142. Add options (tabs, spaces, indent_count) for Ruby-Beautify
|
||||
|
||||
# v0.28.2 (2015-06-10)
|
||||
- Update all package dependencies
|
||||
- Fix typo in beautify-languages-spec causing failing tests to pass
|
||||
- Closes #341. Add indent_size option to Rubocop beautifier
|
||||
|
||||
# v0.28.1 (2015-06-10)
|
||||
- Fixes #327. Only show beautify progress view when actually beautifying
|
||||
- Closes #369. Allow JS Beautify to be used for XML language
|
||||
- Add in-page links to documentation, to beautifiers, etc
|
||||
|
||||
# v0.28.0 (2015-06-08)
|
||||
- Generate documentation for available options for each beautifier
|
||||
- Closes #297, #265. Add missing Pretty Diff options for CSS/SCSS/Sass/LESS
|
||||
|
||||
# v0.27.13 (2015-06-08)
|
||||
- Retrieve/use absolute path of executable within Beautifier::run. See #375.
|
||||
- Add missing package dependencies for atom-typescript package
|
||||
- See #375. Install htmlbeautifier, php-cs-fixer, emacs for Windows CI
|
||||
|
||||
# v0.27.12 (2015-06-06)
|
||||
- Closes #309. Add language Twig and use Pretty Diff beautifier.
|
||||
|
||||
# v0.27.11 (2015-06-06)
|
||||
- See #311. Show installation instructions when beautifiers are missing
|
||||
- autopep8
|
||||
- perltidy
|
||||
- ruby-beautify
|
||||
- sqlformat
|
||||
- uncrustify
|
||||
- See #358. Add Rustfmt beautifier for Rust language support
|
||||
- See #311. Closes #288. Show installation and setup instructions when cannot find php-cs-fixer
|
||||
- Closes #311. Show more informative error when beautifier not found
|
||||
|
||||
# v0.27.10 (2015-06-01)
|
||||
- Add Fortran language support (#383)
|
||||
- See #375. Add Python, Pip, autopep8 installation to AppVeyor
|
||||
|
||||
# v0.27.9 (2015-05-28)
|
||||
- Fixes #370. Nest EditorConfig options under `_default` namespace
|
||||
- See #370. Resolve promises in allOptions for Help Debug Editor
|
||||
- Update package dependencies.
|
||||
|
||||
# v0.27.8 (2015-05-22)
|
||||
- Fixes #338. Restore cursor and scroll position for beautify on save
|
||||
- See #372. Update engines field in package.json
|
||||
- See #372. Fix deprecation, call ::getActiveTextEditor instead. Closes #366.
|
||||
- See #372. Fix deprecation, switch to using atom-space-pen-views
|
||||
|
||||
# v0.27.7 (2015-05-27)
|
||||
- Fixes #370. Allow Promises in allOptions for beautification
|
||||
|
||||
# v0.27.6 (2015-05-22)
|
||||
- Enable typescript-formatter defaults
|
||||
|
||||
# v0.27.5 (2015-05-21)
|
||||
- Closes #349. Add Visualforce language and use Pretty Diff beautifier
|
||||
- Add check for when Language or Beautifier is not found in tests
|
||||
|
||||
# v0.27.4 (2015-05-20)
|
||||
- See #144. Add JSX language tests
|
||||
- Fixes #353. Fix support for extensions with getLanguages
|
||||
- Add .js to the extensions supported by the JSX language
|
||||
- fixes #144 for good
|
||||
|
||||
# v0.27.3 (2015-05-20)
|
||||
- Fixes #288. Add custom command for PHP-CS-Fixer on Windows
|
||||
- Closes #350. Add grammar HTML (Angular) to Embedded JavaScript language
|
||||
- Update and fix Titanium Style Sheets tests
|
||||
- Closes #351. Update TypeScript beautification tests
|
||||
- fix typescript support
|
||||
|
||||
# v0.27.2 (2015-05-19)
|
||||
- Closes #346. Merge options for language namespace, fallbacks, `_default`
|
||||
- Update coffee-fmt to v0.10.2 and beautify internal source code
|
||||
- Closes #323. Add language Swig with grammar HTML (Swig)
|
||||
- Add debugging logs to JS-Beautify and Coffee-Fmt beautifiers
|
||||
- Update package dependencies.
|
||||
- Closes #332. Remove deprecated "Beautify: Beautify Editor" command
|
||||
- Add debugging logs to JS-Beautify and Coffee-Fmt beautifiers
|
||||
- Update package dependencies
|
||||
- Closes #332. Remove deprecated "Beautify: Beautify Editor" command
|
||||
- See #144. Add JavaScript (JSX) grammar to JSX language
|
||||
|
||||
# v0.27.1 (2015-05-07)
|
||||
- Fixes #314. Beauify On Save will save then beautify the file on disk
|
||||
|
||||
# v0.27.0 (2015-05-06)
|
||||
- Closes #178. Change commands' namespace from "beautify" to "atom-beautify"
|
||||
- Closes #308. Beautify On Save is opt-in for each language
|
||||
- See #296. Add package option for setting logger level
|
||||
|
||||
# v0.26.4 (2015-05-05)
|
||||
- See #317. Use Warning notification, improve message for unsupported lang
|
||||
- Closes #317. Switch from addFatalError to addError for showing errors
|
||||
- Fixes #289. Remove deprecated subscription call to TextBuffer.on
|
||||
- Update to PHP-CS-Fixer 1.7 and fix broken PHP tests
|
||||
- Unify the look of the Gitter badge.
|
||||
|
||||
# v0.26.4 (2015-05-04)
|
||||
- Fixes #305. Beautify input in single temp file for HTMLBeautifier
|
||||
|
||||
# v0.26.3 (2015-05-04)
|
||||
- Closes #296. Add logging to `Help Debug Editor` command
|
||||
- See #296. Add Logging API to Beautifier
|
||||
- Update PHP tests to new PHP-CS-Fixer expected style
|
||||
|
||||
# v0.26.2 (2015-05-03)
|
||||
- Remove Pandoc installation and ignore errors for Homebrew-PHP with Travis CI
|
||||
- Update autopep8 and update failing Python test to pass
|
||||
- See #294. Add missing argument to PHP-CS-Fixer beautifier
|
||||
- Add support for beautifiers ignoring CLI return code
|
||||
- Properly handle errors in spec tests with Promises
|
||||
|
||||
# v0.26.1 (2015-05-03)
|
||||
- Fixes #301. Fix autopep8 beautifier's arguments
|
||||
- See #292. Add more Markdown with YAML Front Matter tests
|
||||
|
||||
# v0.26.0 (2015-05-03)
|
||||
- Closes [#176](https://github.com/Glavin001/atom-beautify/issues/176). Add [gofmt](http://golang.org/cmd/gofmt/) beautifier for Go language
|
||||
- Closes [#192](https://github.com/Glavin001/atom-beautify/issues/192). Add [coffee-fmt](https://github.com/sterpe/coffee-fmt) beautifier for CoffeeScript language
|
||||
- Closes [#209](https://github.com/Glavin001/atom-beautify/issues/209). Add [CSScomb](http://csscomb.com/) beautifier for CSS/LESS/SCSS/Sass languages.
|
||||
> To switch from `JS Beautify` (CSS) or `Pretty Diff` (SCSS/Sass/LESS) to
|
||||
using `CSScomb`, you will go into Atom Beautify package settings and
|
||||
find the option for `Language Config -<Your Desired Language: CSS, etc>- Default Beautifier` and select `CSScomb`.
|
||||
>
|
||||
>CSScomb looks for a `.csscomb.json` file in your Atom's first project
|
||||
directory. If it does not find one, or if importing it fails, it will
|
||||
fallback to `csscomb` predefined configuration.
|
||||
|
||||
|
||||
# v0.25.0 (2015-05-02)
|
||||
- [Add new internal Beautifier API.](https://github.com/Glavin001/atom-beautify/issues/282)
|
||||
- [Switch to using Tidy-Markdown instead of Pandoc for Markdown beautification](https://github.com/Glavin001/atom-beautify/issues/292)
|
||||
- Improve YAML Front-Matter support in Markdown. See [#261](https://github.com/Glavin001/atom-beautify/issues/261)
|
||||
- [Add Rubocop beautifier for Ruby beautification](https://github.com/Glavin001/atom-beautify/pull/275)
|
||||
- [Use Pretty Diff for XML Beautification](https://github.com/Glavin001/atom-beautify/issues/197)
|
||||
- [Add EJS beautification support using Pretty Diff](https://github.com/Glavin001/atom-beautify/issues/136)
|
||||
- [Angular Template support by using EJS language beautifier, Pretty Diff](https://github.com/Glavin001/atom-beautify/issues/179)
|
||||
- [Add Spacebars beautification support using Pretty Diff](https://github.com/Glavin001/atom-beautify/issues/217)
|
||||
|
||||
# v0.24.1 (2015-04-19)
|
||||
- [Fix incorrect name for pandoc path option](https://github.com/Glavin001/atom-beautify/commit/2fe815e47cf8c95d099ee0f17b2c4d83dc8dd2ce)
|
||||
- [Updates context-menu to use new api](https://github.com/Glavin001/atom-beautify/commit/6810805e3e290342a1060aca12c646724fc1694d)
|
||||
|
||||
# v0.24.0 (2015-04-07)
|
||||
- Temporarily disable failing PHP tests
|
||||
- Add Titanium style Sheets (TSS) support. See [#122][] and [#238][]
|
||||
|
||||
# v0.23.4 (2015-04-07)
|
||||
- Rename incorrect `indent_character` option to `indent_char`. See [#266][]
|
||||
|
||||
# v0.23.3 (2015-04-07)
|
||||
- Fix beautifying PHP with CLI path set for Windows. See [#269][]
|
||||
|
||||
# v0.23.2 (2015-04-05)
|
||||
- Use svg instead of png to get better image quality, [#257][] [@PeterDaveHello][]
|
||||
- TravisCI setup for php testing
|
||||
- php is not necessary for php-beautify, [#263][] [@MGAio][]
|
||||
|
||||
# v0.23.1 (2015-03-25)
|
||||
- Add check for Windows and use windows specific 'mv' command, [#251][] [@rrushton][]
|
||||
|
||||
# v0.23.0 (2015-03-20)
|
||||
- Switch to PHP Coding Standards Fixer, [#242][] [@rrushton][]
|
||||
- Fix failing tests for LESS and SASS.
|
||||
|
||||
# v0.22.5 (2015-03-20)
|
||||
- Add Preserve new lines support for LESS/SCSS. See [#245][] and [#180][]
|
||||
|
||||
# v0.22.4 (2015-03-20)
|
||||
- Change Debug command name to make `beautify editor` first. See [#240][]
|
||||
|
||||
# v0.22.3 (2015-03-16)
|
||||
- Add another Titanium Style Sheet (disabled) test. See [#216][] and [#122][]
|
||||
- Fix bug in Debug command when Text Editor not selected. See [#237][]
|
||||
|
||||
# v0.22.2 (2015-03-16)
|
||||
- Add Titanium Style Sheet example (disabled) test. See [#122][]
|
||||
- Redirect bashrc and bash_profile pipes to /dev/null. See [#215][]
|
||||
- Update prettydiff dependency to 0.11.0
|
||||
|
||||
# v0.22.1 (2015-03-16)
|
||||
- Add tilda (~) support for Uncrustify config paths. See [#235][]
|
||||
|
||||
# v0.22.0 (2015-03-16)
|
||||
- [Add donation information](https://github.com/Glavin001/atom-beautify/commit/daf32301198d6d6bf2f5b79de2163fa829e4c259)
|
||||
- Add debugging information command. See [#237][]
|
||||
|
||||
# v0.21.6 (2015-03-12)
|
||||
- Add option for htmlbeautifier path. See [#232][]
|
||||
- Add ASP.NET Web Forms and User Controls support. See [#230][]
|
||||
|
||||
# v0.21.5 (2015-03-11)
|
||||
- Disable `Beautify Directory` menu option. See [#213][]
|
||||
|
||||
# v0.21.4 (2015-03-07)
|
||||
- [Update options for js-beautify (HTML wrap-attributes, wrap-attributes-indent-size)](https://github.com/filipesilva/atom-beautify/commit/fdd1668c20d2e2f7a5e7bd0c1459638309e6f130)
|
||||
|
||||
# v0.21.3 (2015-02-08)
|
||||
- [Fixes [#181][] and fixes [#180][]. Clean up LESS/SCSS Unit Tests and update Prettydiff](https://github.com/Glavin001/atom-beautify/commit/a50c5a3c4c884a2eddec7e36c1723eeef97c3758)
|
||||
- [Updates to Atoms new API](https://github.com/Glavin001/atom-beautify/commit/d24a454ef7b011c7d4d63b7ba1757b8d0a0ced28)
|
||||
- [Updating selectors to new Atom API](https://github.com/Glavin001/atom-beautify/commit/d2ad4ccbfeec55fb3656e6aed64b88ddefa8a27d)
|
||||
|
||||
# v0.21.2 (2015-01-06)
|
||||
- [Fixes [#177][]. Update keybinding to beautify:beautify-editor](https://github.com/Glavin001/atom-beautify/commit/5aaeae4cc77b4805a4a41df42fe8708f5495f963)
|
||||
|
||||
# v0.21.1 (2015-01-03)
|
||||
- [Fixes [#173][]. Remove @ prefix from showError call](https://github.com/Glavin001/atom-beautify/commit/c110ca72a4e8e7f944facb1cf7d107a65697b551)
|
||||
|
||||
# v0.21.0 (2015-01-03)
|
||||
- [Closes [#172][], [#146][]. Update to new Atom Config API.](https://github.com/Glavin001/atom-beautify/commit/eb1471d23b1c2b704b8b3afa17462b4e73bc20f9)
|
||||
|
||||
>What's new:
|
||||
- Add settings descriptions
|
||||
- Update options for js-beautify (JS, CSS, HTML)
|
||||
- Update Spec to support new changes
|
||||
|
||||
# v0.20.2 (2015-01-02)
|
||||
- [Fixes [#171][]. Fix typo for CSS indent_char](https://github.com/Glavin001/atom-beautify/commit/c4c847948d5f88eb44b672d3471ceb92b126b5e3)
|
||||
|
||||
# v0.20.1 (2015-01-02)
|
||||
- [Fixes [#169][]. Remove JS-Yaml and use YAML-Front-Matter, resolving conflict](https://github.com/Glavin001/atom-beautify/commit/f280469e77a8e6d1014e18c2c0ba717e9b15743e)
|
||||
|
||||
# v0.20.0 (2015-01-02)
|
||||
- [Closes [#169][]. Add YAML Front Matter support to Markdown beautification](https://github.com/Glavin001/atom-beautify/commit/e7a980045d769897011606aaa40e44db8de5ba6c)
|
||||
|
||||
# v0.19.0 (2015-01-01)
|
||||
- [Closes [#36][]. Add right-click beautification of directory (sub-files)](https://github.com/Glavin001/atom-beautify/commit/bd278968b4b54ee9586682252de6b320d302bcce)
|
||||
|
||||
# v0.18.0 (2015-01-01)
|
||||
- [Add Specs (Unit Tests) and Travis CI automated testing](https://github.com/Glavin001/atom-beautify/issues/18)
|
||||
- [Fixes [#149][]. Update prettydiff to fix interpolated text vars in SCSS](https://github.com/Glavin001/atom-beautify/commit/dc1e720e908cbd60ae93316975c39628be105901)
|
||||
- [Closes [#159][], [#149][]. Update prettydiff to fix LESS and SCSS.](https://github.com/Glavin001/atom-beautify/commit/3550280502fbfda4bf9b4467172f423cd94694ea)
|
||||
- [Fixes [#168][]. Update Coffee-Formatter to fix broken CoffeeScript beautifier](https://github.com/Glavin001/atom-beautify/commit/259bb7083d367cabba10312e2bed40f3265fa6dc)
|
||||
- [See [#36][]. Add right-click Beautification of single files in Tree view](https://github.com/Glavin001/atom-beautify/commit/e678fdf759a338f74c9111c993474b06f6f29644)
|
||||
- [Fix feature, disabling language beautification, where `disabledLanguages = null`](https://github.com/Glavin001/atom-beautify/commit/264821c30a34f3edd365e8f9e9fee4b68afd1a07)
|
||||
- [Improve handling options in Python beautifier.](https://github.com/Glavin001/atom-beautify/commit/974897b6f87023f954724e2c4c70e0ec4b49e7ed)
|
||||
- [Improve SQL Beautifier to support missing config options.](https://github.com/Glavin001/atom-beautify/commit/b7a34b6178f06030604479590b2e226da85b5912)
|
||||
- [Throw error if trying to beautify Perl without setting Perl Tidy path](https://github.com/Glavin001/atom-beautify/commit/77f58bbfc778730de4055e050fd40d2ce46d0439)
|
||||
- [Improve CLI Beautify class to handle more error catching](https://github.com/Glavin001/atom-beautify/commit/60f6a9bd075b6b18653e99724d3b8b47e7197d95)
|
||||
|
||||
# v0.17.3 (2014-12-27)
|
||||
- [Fixes [#148][]. Fix PHP for when filters are not set.](https://github.com/Glavin001/atom-beautify/commit/9b38dc3badb062ba8212c126b13d6965a8ce9276)
|
||||
- [Get Atom User settings instead of only default settings](https://github.com/Glavin001/atom-beautify/commit/3499c111200cb2e7f6374622f7bb86c91c7820c1)
|
||||
|
||||
# v0.17.2 (2014-12-14)
|
||||
- [Fixes [#135][]. Switch from Git to npm Coffee-Formatter dependency.](https://github.com/Glavin001/atom-beautify/commit/ff4a5a3a716a642b9c426a3b41f76094a372132e)
|
||||
|
||||
# v0.17.1 (2014-11-19)
|
||||
- [Closes [#107][]. Add PHP options for filters and directory_filters](https://github.com/Glavin001/atom-beautify/commit/c6c6d95a3e62e7453d732f2bab7619464bc5b875)
|
||||
|
||||
# v0.17.0 (2014-11-16)
|
||||
- [Add support for HTML (Rails) and Ruby on Rails grammar](https://github.com/Glavin001/atom-beautify/commit/ba7d9ce799b4284a77dd22fc4139d01fdee08b18)
|
||||
- [disable beautification of specific languages](https://github.com/Glavin001/atom-beautify/commit/f0ed7ac5ad5e54d8f653fd8aba23aaf53ed42fc6)
|
||||
|
||||
# v0.16.0 (2014-11-16)
|
||||
- [Fixes [#140][]. Update js-beautify dependency to 1.5.4.](https://github.com/Glavin001/atom-beautify/commit/428ebe44f9d542f5082807b2fbdabf7282160ec7)
|
||||
- [Perl support (using perltidy) (see Glavin001/atom-beautify[#33][])](https://github.com/Glavin001/atom-beautify/commit/f64d2bae2012e004f7e3b5bb6bc6ffdc1d59fded)
|
||||
|
||||
# v0.15.1 (2014-10-26)
|
||||
- [Fixes [#103][]. BeautifyEntireFileOnSave only applies when saving](https://github.com/Glavin001/atom-beautify/commit/dda313fbfe47f9d273e06e8e380f2e4c311c1b84)
|
||||
|
||||
# v0.15.0 (2014-10-26)
|
||||
- [Closes [#123][]. Add Mustache support.](https://github.com/Glavin001/atom-beautify/commit/ecbbbaec2942ed95461e2c103d23bd3665edab2e)
|
||||
|
||||
# v0.14.1 (2014-10-21)
|
||||
- [Closes [#127][]. Increase startup time by using ActivationEvents](https://github.com/Glavin001/atom-beautify/commit/c0ee2bed96499ac71ea1266ccb227e9b3581c935)
|
||||
|
||||
# v0.14.0 (2014-10-16)
|
||||
- [Closes [#49][]. Add TypeScript support](https://github.com/Glavin001/atom-beautify/commit/dcc9e2d3b58767578006ffacaca198da69fa3832)
|
||||
|
||||
# v0.13.4 (2014-10-05)
|
||||
- [Fixes [#110][]. Fixes Handlebars missing beautification](https://github.com/Glavin001/atom-beautify/commit/120315f90d5a0bbdade2728472926f965150e7c1)
|
||||
|
||||
# v0.13.3 (2014-10-05)
|
||||
- [Resolve Unsafe-Eval error for Atom >=0.128.0](https://github.com/Glavin001/atom-beautify/commit/fbc58a648d3ccd845548d556f3dd1e046075bf04)
|
||||
|
||||
# v0.13.2 (2014-09-28)
|
||||
- [Fixes [#96][]. Fix support for Alphasort option for LESS/SCSS properties](https://github.com/Glavin001/atom-beautify/commit/ccc8802f36fe15c4f29abffcd974cb0c7d1acdad)
|
||||
|
||||
# v0.13.1 (2014-09-28)
|
||||
- [Fixes [#102][]. Fix error when beautifying Python using custom autopep8 path](https://github.com/Glavin001/atom-beautify/commit/7e828be19961bd29bf0615f9b0ca71b608191a94)
|
||||
|
||||
# v0.13.0 (2014-09-28)
|
||||
- [Closes [#105][]. Add options to mute errors.](https://github.com/Glavin001/atom-beautify/commit/79fcdd9111fffc883305cb1b00b2f23806192952)
|
||||
|
||||
>New package options:
|
||||
- muteUnsupportedLanguageErrors
|
||||
- muteAllErrors
|
||||
|
||||
# v0.12.0 (2014-09-18)
|
||||
- [Closes [#93][]. Implement normalizing markdown through pandoc](https://github.com/Glavin001/atom-beautify/commit/ad662271c14f3ff4440d933b2c1c0ce6caf5b53b)
|
||||
|
||||
# v0.11.1 (2014-09-16)
|
||||
- [Closes [#96][]. Update Pretty-Diff dependency to ^1.2.4](https://github.com/Glavin001/atom-beautify/commit/80e1c03885688b6615e142dc347b4c7e10d27694)
|
||||
|
||||
# v0.11.0 (2014-09-15)
|
||||
- [Closes [#91][]. Add configuration option for custom Uncrustify path](https://github.com/Glavin001/atom-beautify/commit/fefb25bf380c846222ec9f288c869d4765e03b2a)
|
||||
|
||||
# v0.10.4 (2014-09-12)
|
||||
- [Fix support for editorconfig with indent style = 'tab'](https://github.com/Glavin001/atom-beautify/commit/7c56d84385e91798556ed534e1dfc4129a107d4b)
|
||||
|
||||
# v0.10.3 (2014-09-10)
|
||||
- [Closes [#84][]. Improve the error message panel to only appear on new error](https://github.com/Glavin001/atom-beautify/commit/31b217859e714767c5784f5613149304ddd4b9ad)
|
||||
|
||||
# v0.10.2 (2014-09-10)
|
||||
- [Fixes [#85][]. Add support for Windows for upwards recursive .jsbeautifyrc (see [#37][])](https://github.com/Glavin001/atom-beautify/commit/490cd7ee051926f3c143bc0b9873fa1bc7cd9828)
|
||||
|
||||
# v0.10.1 (2014-09-10)
|
||||
- [Fixes [#68][]. Fix error when beautifying file that is "untitled".](https://github.com/Glavin001/atom-beautify/commit/2cd3bef6e0d6493d85dd85796ad67e0305e7ffc9)
|
||||
|
||||
# v0.10.0 (2014-09-09)
|
||||
- [Closes [#68][]. Support editorconfig files.](https://github.com/Glavin001/atom-beautify/commit/baf3e49b97c5366829f021d843f3b6beb7d92a8c)
|
||||
|
||||
# v0.9.0 (2014-09-09)
|
||||
- [Closes [#37][]. Support upwards recursive .jsbeautifyrc fallback.](https://github.com/Glavin001/atom-beautify/commit/738deace29fbcc981e96599bd9cd55f4010e4106)
|
||||
|
||||
>Priority hierarchy:
|
||||
- Atom editor settings
|
||||
- Atom Beautify package settings
|
||||
- Home directory .jsbeautifyrc file configuration
|
||||
- Closest EditorConfig file (see [#68][])
|
||||
- Project options (from closest .jsbeautifyrc file to the beautified
|
||||
editor's file to root, "/")
|
||||
|
||||
# v0.8.1 (2014-09-09)
|
||||
- [Fixes [#70][]. Update Pretty-Diff dep. from ^1.0.23 to ^1.2.1](https://github.com/Glavin001/atom-beautify/commit/c6a4101893a1ac91df58df02f033000bc36ea637)
|
||||
|
||||
# v0.8.0 (2014-09-09)
|
||||
- [Closes [#80][]. Add HTML Embedded Ruby (ERB) support.](https://github.com/Glavin001/atom-beautify/commit/6652e7f703575ed5666825d47cc05d6e48cb37cf)
|
||||
|
||||
# v0.7.1 (2014-09-09)
|
||||
- [Fix typo from `.bash_rc` to `.bashrc` for cli-beautify](https://github.com/Glavin001/atom-beautify/commit/d595ea7479a89cad58200613c4893927428be034)
|
||||
|
||||
# v0.7.1 (2014-09-09)
|
||||
- [Fixes [#81][]. Beautify on Save now retains `this` scope when beautifying](https://github.com/Glavin001/atom-beautify/commit/516c35623888634a3ffcca845fed6b962749fbf2)
|
||||
|
||||
# v0.7.0 (2014-09-08)
|
||||
- [See [#77][]. Add example of broken SCSS case.](https://github.com/Glavin001/atom-beautify/commit/4f5c75c5e3a5a934a7c36094e60d15022df0e564)
|
||||
- [See [#71][]. Add example JS file using reserved words to test [#7][]1](https://github.com/Glavin001/atom-beautify/commit/1130b58114cba90828aa2d37de42b800d15ae081)
|
||||
- [See [#56][]. Work on MessageView UI.](https://github.com/Glavin001/atom-beautify/commit/05ee8f22b3b975a52d2fbbe998d4c49fbe9ae274)
|
||||
- [See [#56][]. Add "Beautification in progress" view.](https://github.com/Glavin001/atom-beautify/commit/6b2b306b9daf6a1594cefd357ce0d9c8ce3f7155)
|
||||
- [See [#56][]. Add Atom-Message-Panel to display Unsupported Language messages](https://github.com/Glavin001/atom-beautify/commit/ffa2249c3e87d217cc544a71e23e389f97d978d7)
|
||||
|
||||
# v0.6.5 (2014-09-08)
|
||||
- [Fixes [#76][]. Add package option "Beautify Entire File On Save"](https://github.com/Glavin001/atom-beautify/commit/528c7dc281bc85c4132ce0cadf3740c04c3cc6e8)
|
||||
- [Closes [#78][]. Improve startup performance.](https://github.com/Glavin001/atom-beautify/commit/9c1965dec6233205639fd342daf20ab4b145ced6)
|
||||
- [See [#61][]. Add LESS example with Mixins to test.](https://github.com/Glavin001/atom-beautify/commit/7dbff2cbc1959ca4630f44e9a6755807e34c0c85)
|
||||
- [See [#56][]. Start implementing of Message View.](https://github.com/Glavin001/atom-beautify/commit/0804cade1f09a8436f69e572c7bd5f725742db41)
|
||||
|
||||
# v0.6.4 (2014-09-04)
|
||||
- [Fixes [#73][]. Prevent extra cursor appearing at end of file](https://github.com/Glavin001/atom-beautify/commit/e599387d2025ab53e4db009d597816e23783850d)
|
||||
|
||||
# v0.6.3 (2014-08-30)
|
||||
- [Closes [#60][]. Convert package scripts from JavaScript to CoffeeScript.](https://github.com/Glavin001/atom-beautify/commit/09c6770cd2768ddb8dd635c2508065a40f909729)
|
||||
- [Replacing node-parse with sqlparse for SQL beautification support](https://github.com/Glavin001/atom-beautify/commit/a2fbf0c47d0abeabbaa7289b4f32e261525d0182)
|
||||
|
||||
# v0.6.2 (2014-08-09)
|
||||
- [Fixes [#59][]. Remove ActivationEvents to allow for beautifyOnSave.](https://github.com/Glavin001/atom-beautify/commit/649f023d9c5066a85c114dc2d8bcd1feb4303158)
|
||||
|
||||
# v0.6.1 (2014-08-08)
|
||||
- [Closes [#57][]. Customization in .jsbeautifyrc file now generates the config (.cfg) file for Uncrustify beautification.](https://github.com/Glavin001/atom-beautify/commit/325ada78510866487cb3aab9ae10e208b544eb1c)
|
||||
|
||||
# v0.6.0 (2014-08-08)
|
||||
|
||||
- [See [#57][]. Add Uncrustify beautifier for multiple language support.](https://github.com/Glavin001/atom-beautify/commit/5d6751cb4bd331ec1066b09bc457a73e1619e51b)
|
||||
|
||||
>Uncrustify Language support:
|
||||
- C
|
||||
- C++
|
||||
- C#
|
||||
- Objective-C
|
||||
- Java
|
||||
- D
|
||||
- Pawn
|
||||
- Vala
|
||||
>
|
||||
>Closes [#45][]. Add Java Support.
|
||||
|
||||
# v0.5.0 (2014-08-04)
|
||||
- [See [#47][]. Update configuration to allow users to disable analytics.](https://github.com/Glavin001/atom-beautify/commit/8d90b30448a0c3df5eeca0d6f52bb8e9c3e3880e)
|
||||
|
||||
# v0.5.1 (2014-08-04)
|
||||
- [Closes [#44][]. Switch to using Pretty Diff for SASS, as well.](https://github.com/Glavin001/atom-beautify/commit/1f0fb9c0db43b71816caf3c1d1d235484cbcd53a)
|
||||
- [See [#54][]. Use indent_size and indent_character options.](https://github.com/Glavin001/atom-beautify/commit/1f0fb9c0db43b71816caf3c1d1d235484cbcd53a)
|
||||
|
||||
# v0.5.0 (2014-08-04)
|
||||
- [Closes [#31][]. Add CoffeeScript support.](https://github.com/Glavin001/atom-beautify/commit/3c9836f920bea72396d03ac0b022b5f753776b55)
|
||||
|
||||
# v0.4.4 (2014-08-03)
|
||||
- [See [#51][]. Work on improving PHP support and deubgging errors.](https://github.com/Glavin001/atom-beautify/commit/7fdde0f8a68c8eecc2879c6bfe2369c4abfc904d)
|
||||
|
||||
# v0.4.3 (2014-08-03)
|
||||
- [Closes [#47][]. Switch Analytics from Google Analytics to Segment.io](https://github.com/Glavin001/atom-beautify/commit/fabed8fad30d36c0ffe42ed070f5495a7b7c1b14)
|
||||
|
||||
# v0.4.2 (2014-08-03)
|
||||
- [Fixes [#54][]. LESS beautifier using PrettyDiff now fixed.](https://github.com/Glavin001/atom-beautify/commit/010863f5cce73740371b16b4077f58eab9b98cf6)
|
||||
|
||||
# v0.4.1 (2014-08-01)
|
||||
|
||||
- [Closes [#54][]. Switch to using Pretty Diff for LESS support. Fixes [#52][]. Fixes [#52][].](https://github.com/Glavin001/atom-beautify/commit/5bff9ebc4840aa18e38b468b7a5310c56b7ab302)
|
||||
|
||||
# v0.4.0 (2014-07-12)
|
||||
|
||||
- [Closes [#47][]. Add Google Analytics.](https://github.com/Glavin001/atom-beautify/commit/d8fb27289d4c1db7fde878002f442ae53d41f840)
|
||||
|
||||
# v0.3.8 (2014-07-09)
|
||||
|
||||
- [Closes [#46][]. Use ActivationEvents to speed up loading time.](https://github.com/Glavin001/atom-beautify/commit/4271bfe8d72f04ef25cc136684c5e9a78636c399)
|
||||
|
||||
# v0.3.7 (2014-07-03)
|
||||
# v0.3.6 (2014-07-03)
|
||||
# v0.3.5 (2014-07-03)
|
||||
|
||||
- [See [#40][]. Migrating ownership to Glavin001 for maintaining.](https://github.com/Glavin001/atom-beautify/commit/d94d152621c431d358e8624bf67827e972756553)
|
||||
|
||||
# v0.3.4 (2014-06-28)
|
||||
- [Closes [#35][]. Add more options for Python PEP8 beautifying.](https://github.com/Glavin001/atom-beautify/commit/65ff7f9f7a040e9ad3a881ef0a6af387df644120)
|
||||
|
||||
# v0.3.3 (2014-06-16)
|
||||
- [Closes [#24][]. Add Python (PEP 8) support.](https://github.com/Glavin001/atom-beautify/commit/612c7dc17c20f01c36476e0432baf20bcab94ca4)
|
||||
- [Closes [#25][]. Add Ruby support.](https://github.com/Glavin001/atom-beautify/commit/88651447a721f73fb58ae076b04ae296f0b4318b)
|
||||
- See [#18][]. Worked on setting up Travis CI and providing unit tests. Not closed.
|
||||
|
||||
# v0.3.2 (2014-06-14)
|
||||
- [Fixes [#9][]. Nested options in .jsbeautifyrc are properly handled.](https://github.com/Glavin001/atom-beautify/commit/54e61a816f7fd087822d44c97ed3ab8c7130a845)
|
||||
- [Closes [#21][]. Parsing .jsbeautifyrc falls back to YAML, when JSON fails.](https://github.com/Glavin001/atom-beautify/commit/78e0382c15b1a7587b8fcbe93af5b5fc20ba8fc7)
|
||||
- [Closes [#22][]. Use Atom Package Settings as configuration options.](https://github.com/Glavin001/atom-beautify/commit/479034dae7af1080726e508d18fb6a9c8588d800)
|
||||
|
||||
# v0.3.1 (2014-06-14)
|
||||
- [See [#14][]. Add JSON support.](https://github.com/Glavin001/atom-beautify/commit/978a6c5a43e910f322a476fb69230e6ec95e8a82)
|
||||
- [Closes [#14][]. Completed support for SQL.](https://github.com/Glavin001/atom-beautify/commit/2e57630275773b331becc2fcadaf558e370750e6)
|
||||
|
||||
# v0.3.0 (2014-06-13)
|
||||
- [Allowing either flat or nested .jsbeautifyrc schemas](https://github.com/Glavin001/atom-beautify/commit/cf1ea6db16d2188ddef5e6c1fb4d000cab67f99c)
|
||||
- [Use beautifyHTML to beautify HTML (Liquid) files.](https://github.com/Glavin001/atom-beautify/commit/45352dd90591826e72054536f671b9eb074a9843)
|
||||
- [Closes [#15][]. Support loading .jsbeautifyrc from Project directory.](https://github.com/Glavin001/atom-beautify/commit/4fdab9759b5a774c467434a410c203eb4aeb74d8)
|
||||
- [See [#15][]. Updated README to reflect better .jsbeautifyrc support.](https://github.com/Glavin001/atom-beautify/commit/4d486794b4e9ba58d206c8e16d325b2f1d693d30)
|
||||
- [Fixes [#16][]. Custom configuration options are now working correctly.](https://github.com/Glavin001/atom-beautify/commit/58a375f8b6823fda7632f53d145e3e2d21e16dcd)
|
||||
- [Closes [#13][]. Add Handlebars support.](https://github.com/Glavin001/atom-beautify/commit/b530eda6e3347179dd14fb671801b94a7269f2ad)
|
||||
- [Fixes [#19][]. Can now beautify new files that have not been created/saved.](https://github.com/Glavin001/atom-beautify/commit/c34f6f9419284697bd3c04ddc0e400ae0600ca4d)
|
||||
- [Closes [#20][]. Add Sass and LESS support. Update README.](https://github.com/Glavin001/atom-beautify/commit/eacf2329daf86bd21d7bda992a9b08379de67f2c)
|
||||
- [See [#15][]. Remove shelljs dependency and fixed typos.](https://github.com/Glavin001/atom-beautify/commit/a2dc4bd7db7893b11b53af41bb4556158bb81ed5)
|
||||
|
||||
# v0.2.6 (2014-05-15)
|
||||
- version bump
|
||||
- added `"jslint_happy": true` to own `.jsbeautifierrc`
|
||||
|
||||
# v0.2.5 (2014-05-14)
|
||||
- fixed issue [#7][] (Place cursor back to edited place after beautifying)
|
||||
- fixed issue [#8][] (Ignore jsbeautify when editing .jsbeautifyrc in place)
|
||||
|
||||
# v0.2.3 (2014-05-13)
|
||||
|
||||
- support `.jsbeautifierrc` (thanks [@karolyi][])
|
||||
- fixed: reload on save (thanks [@karolyi][])
|
||||
|
||||
# v0.2.2 (2014-03-18)
|
||||
|
||||
- added experimental support for XML (thanks [@mtanzi][])
|
||||
|
||||
# v0.2.1 (2014-03-12)
|
||||
|
||||
- added option to beautify on save
|
||||
|
||||
# v0.2.0 (2014-03-11)
|
||||
|
||||
- public release
|
||||
- beautify JS, HTML and CSS files based on current editor settings
|
||||
|
||||
<!--- The following link definition list is generated by PimpMyChangelog --->
|
||||
[#7]: https://github.com/Glavin001/atom-beautify/issues/7
|
||||
[#8]: https://github.com/Glavin001/atom-beautify/issues/8
|
||||
[#9]: https://github.com/Glavin001/atom-beautify/issues/9
|
||||
[#13]: https://github.com/Glavin001/atom-beautify/issues/13
|
||||
[#14]: https://github.com/Glavin001/atom-beautify/issues/14
|
||||
[#15]: https://github.com/Glavin001/atom-beautify/issues/15
|
||||
[#16]: https://github.com/Glavin001/atom-beautify/issues/16
|
||||
[#18]: https://github.com/Glavin001/atom-beautify/issues/18
|
||||
[#19]: https://github.com/Glavin001/atom-beautify/issues/19
|
||||
[#20]: https://github.com/Glavin001/atom-beautify/issues/20
|
||||
[#21]: https://github.com/Glavin001/atom-beautify/issues/21
|
||||
[#22]: https://github.com/Glavin001/atom-beautify/issues/22
|
||||
[#24]: https://github.com/Glavin001/atom-beautify/issues/24
|
||||
[#25]: https://github.com/Glavin001/atom-beautify/issues/25
|
||||
[#31]: https://github.com/Glavin001/atom-beautify/issues/31
|
||||
[#33]: https://github.com/Glavin001/atom-beautify/issues/33
|
||||
[#35]: https://github.com/Glavin001/atom-beautify/issues/35
|
||||
[#36]: https://github.com/Glavin001/atom-beautify/issues/36
|
||||
[#37]: https://github.com/Glavin001/atom-beautify/issues/37
|
||||
[#40]: https://github.com/Glavin001/atom-beautify/issues/40
|
||||
[#44]: https://github.com/Glavin001/atom-beautify/issues/44
|
||||
[#45]: https://github.com/Glavin001/atom-beautify/issues/45
|
||||
[#46]: https://github.com/Glavin001/atom-beautify/issues/46
|
||||
[#47]: https://github.com/Glavin001/atom-beautify/issues/47
|
||||
[#49]: https://github.com/Glavin001/atom-beautify/issues/49
|
||||
[#51]: https://github.com/Glavin001/atom-beautify/issues/51
|
||||
[#52]: https://github.com/Glavin001/atom-beautify/issues/52
|
||||
[#54]: https://github.com/Glavin001/atom-beautify/issues/54
|
||||
[#56]: https://github.com/Glavin001/atom-beautify/issues/56
|
||||
[#57]: https://github.com/Glavin001/atom-beautify/issues/57
|
||||
[#59]: https://github.com/Glavin001/atom-beautify/issues/59
|
||||
[#60]: https://github.com/Glavin001/atom-beautify/issues/60
|
||||
[#61]: https://github.com/Glavin001/atom-beautify/issues/61
|
||||
[#68]: https://github.com/Glavin001/atom-beautify/issues/68
|
||||
[#70]: https://github.com/Glavin001/atom-beautify/issues/70
|
||||
[#71]: https://github.com/Glavin001/atom-beautify/issues/71
|
||||
[#73]: https://github.com/Glavin001/atom-beautify/issues/73
|
||||
[#76]: https://github.com/Glavin001/atom-beautify/issues/76
|
||||
[#77]: https://github.com/Glavin001/atom-beautify/issues/77
|
||||
[#78]: https://github.com/Glavin001/atom-beautify/issues/78
|
||||
[#80]: https://github.com/Glavin001/atom-beautify/issues/80
|
||||
[#81]: https://github.com/Glavin001/atom-beautify/issues/81
|
||||
[#84]: https://github.com/Glavin001/atom-beautify/issues/84
|
||||
[#85]: https://github.com/Glavin001/atom-beautify/issues/85
|
||||
[#91]: https://github.com/Glavin001/atom-beautify/issues/91
|
||||
[#93]: https://github.com/Glavin001/atom-beautify/issues/93
|
||||
[#96]: https://github.com/Glavin001/atom-beautify/issues/96
|
||||
[#102]: https://github.com/Glavin001/atom-beautify/issues/102
|
||||
[#103]: https://github.com/Glavin001/atom-beautify/issues/103
|
||||
[#105]: https://github.com/Glavin001/atom-beautify/issues/105
|
||||
[#107]: https://github.com/Glavin001/atom-beautify/issues/107
|
||||
[#110]: https://github.com/Glavin001/atom-beautify/issues/110
|
||||
[#122]: https://github.com/Glavin001/atom-beautify/issues/122
|
||||
[#123]: https://github.com/Glavin001/atom-beautify/issues/123
|
||||
[#127]: https://github.com/Glavin001/atom-beautify/issues/127
|
||||
[#135]: https://github.com/Glavin001/atom-beautify/issues/135
|
||||
[#140]: https://github.com/Glavin001/atom-beautify/issues/140
|
||||
[#146]: https://github.com/Glavin001/atom-beautify/issues/146
|
||||
[#148]: https://github.com/Glavin001/atom-beautify/issues/148
|
||||
[#149]: https://github.com/Glavin001/atom-beautify/issues/149
|
||||
[#159]: https://github.com/Glavin001/atom-beautify/issues/159
|
||||
[#168]: https://github.com/Glavin001/atom-beautify/issues/168
|
||||
[#169]: https://github.com/Glavin001/atom-beautify/issues/169
|
||||
[#171]: https://github.com/Glavin001/atom-beautify/issues/171
|
||||
[#172]: https://github.com/Glavin001/atom-beautify/issues/172
|
||||
[#173]: https://github.com/Glavin001/atom-beautify/issues/173
|
||||
[#177]: https://github.com/Glavin001/atom-beautify/issues/177
|
||||
[#180]: https://github.com/Glavin001/atom-beautify/issues/180
|
||||
[#181]: https://github.com/Glavin001/atom-beautify/issues/181
|
||||
[#213]: https://github.com/Glavin001/atom-beautify/issues/213
|
||||
[#215]: https://github.com/Glavin001/atom-beautify/issues/215
|
||||
[#216]: https://github.com/Glavin001/atom-beautify/issues/216
|
||||
[#230]: https://github.com/Glavin001/atom-beautify/issues/230
|
||||
[#232]: https://github.com/Glavin001/atom-beautify/issues/232
|
||||
[#235]: https://github.com/Glavin001/atom-beautify/issues/235
|
||||
[#237]: https://github.com/Glavin001/atom-beautify/issues/237
|
||||
[#238]: https://github.com/Glavin001/atom-beautify/issues/238
|
||||
[#240]: https://github.com/Glavin001/atom-beautify/issues/240
|
||||
[#242]: https://github.com/Glavin001/atom-beautify/issues/242
|
||||
[#245]: https://github.com/Glavin001/atom-beautify/issues/245
|
||||
[#251]: https://github.com/Glavin001/atom-beautify/issues/251
|
||||
[#257]: https://github.com/Glavin001/atom-beautify/issues/257
|
||||
[#263]: https://github.com/Glavin001/atom-beautify/issues/263
|
||||
[#266]: https://github.com/Glavin001/atom-beautify/issues/266
|
||||
[#269]: https://github.com/Glavin001/atom-beautify/issues/269
|
||||
[@MGAio]: https://github.com/MGAio
|
||||
[@PeterDaveHello]: https://github.com/PeterDaveHello
|
||||
[@karolyi]: https://github.com/karolyi
|
||||
[@mtanzi]: https://github.com/mtanzi
|
||||
[@rrushton]: https://github.com/rrushton
|
||||
46
dotfiles/.atom/packages/atom-beautify/CODE_OF_CONDUCT.md
Normal file
46
dotfiles/.atom/packages/atom-beautify/CODE_OF_CONDUCT.md
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
# Contributor Covenant Code of Conduct
|
||||
|
||||
## Our Pledge
|
||||
|
||||
In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
|
||||
|
||||
## Our Standards
|
||||
|
||||
Examples of behavior that contributes to creating a positive environment include:
|
||||
|
||||
* Using welcoming and inclusive language
|
||||
* Being respectful of differing viewpoints and experiences
|
||||
* Gracefully accepting constructive criticism
|
||||
* Focusing on what is best for the community
|
||||
* Showing empathy towards other community members
|
||||
|
||||
Examples of unacceptable behavior by participants include:
|
||||
|
||||
* The use of sexualized language or imagery and unwelcome sexual attention or advances
|
||||
* Trolling, insulting/derogatory comments, and personal or political attacks
|
||||
* Public or private harassment
|
||||
* Publishing others' private information, such as a physical or electronic address, without explicit permission
|
||||
* Other conduct which could reasonably be considered inappropriate in a professional setting
|
||||
|
||||
## Our Responsibilities
|
||||
|
||||
Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
|
||||
|
||||
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
|
||||
|
||||
## Scope
|
||||
|
||||
This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
|
||||
|
||||
## Enforcement
|
||||
|
||||
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at glavin.wiechert@gmail.com. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
|
||||
|
||||
Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
|
||||
|
||||
## Attribution
|
||||
|
||||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
|
||||
|
||||
[homepage]: http://contributor-covenant.org
|
||||
[version]: http://contributor-covenant.org/version/1/4/
|
||||
22
dotfiles/.atom/packages/atom-beautify/CONTRIBUTING.md
Normal file
22
dotfiles/.atom/packages/atom-beautify/CONTRIBUTING.md
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
# Contributing
|
||||
|
||||
## New Issues, Bugs, Questions, etc
|
||||
|
||||
Before creating any new Issues, please be sure to search through the existing Atom Beautify Issues at https://github.com/Glavin001/atom-beautify/issues
|
||||
|
||||
1. Generate your debugging information:
|
||||
1a. In the Atom [command-palette](https://atom.io/packages/command-palette),
|
||||
search for and run the command `Atom Beautify: Help Debug Editor`.
|
||||
The debugging results will be shown in a new Atom text editor tab.
|
||||
1b. Create a new Gist at https://gist.github.com/
|
||||
1c. Create a file in your new Gist called `debug.md`.
|
||||
1d. Paste your debugging results from Atom beautify into `debug.md` file in your Gist.
|
||||
2. Create a [new GitHub Issue for Atom Beautify](https://github.com/Glavin001/atom-beautify/issues/new).
|
||||
3. Copy a link to your new Gist into the new GitHub Issue for Atom Beautify.
|
||||
4. Describe your issue / bug.
|
||||
5. Submit your new GitHub Issue and wait patiently.
|
||||
If you have any additional / new information to add, please feel free to comment on that Issue and provide more helpful information.
|
||||
|
||||
## Help Improving Atom Beautify By Changing Source Code
|
||||
|
||||
See https://github.com/Glavin001/atom-beautify/blob/master/docs/add-languages-and-beautifiers.md for current documentation on adding support for new languages and beautifiers to Atom Beautify.
|
||||
6
dotfiles/.atom/packages/atom-beautify/Gemfile
Normal file
6
dotfiles/.atom/packages/atom-beautify/Gemfile
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
source "https://rubygems.org"
|
||||
|
||||
gem "rubocop"
|
||||
gem "htmlbeautifier"
|
||||
gem "puppet-lint"
|
||||
gem "sass"
|
||||
49
dotfiles/.atom/packages/atom-beautify/ISSUE_TEMPLATE.md
Normal file
49
dotfiles/.atom/packages/atom-beautify/ISSUE_TEMPLATE.md
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
# Description
|
||||
|
||||
The results of beautification are not what I expect.
|
||||
|
||||
# Input Before Beautification
|
||||
|
||||
This is what the code looked like before:
|
||||
|
||||
```
|
||||
<INSERT CODE HERE>
|
||||
```
|
||||
|
||||
# Expected Output
|
||||
|
||||
The beautified code should have looked like this:
|
||||
|
||||
```
|
||||
<INSERT CODE HERE>
|
||||
```
|
||||
|
||||
# Actual Output
|
||||
|
||||
The beautified code actually looked like this:
|
||||
|
||||
```
|
||||
<INSERT CODE HERE>
|
||||
```
|
||||
|
||||
|
||||
# Steps to Reproduce
|
||||
|
||||
1. Add code to Atom editor
|
||||
2. Run command `Atom Beautify: Beautify Editor`
|
||||
3. This beautified code does not look right!
|
||||
|
||||
# Debug
|
||||
|
||||
Here is a link to the `debug.md` Gist: <INSERT GIST HERE>
|
||||
|
||||
# Checklist
|
||||
|
||||
I have:
|
||||
- [ ] Tried uninstalling and reinstalling Atom Beautify to ensure it installed properly
|
||||
- [ ] Reloaded (or restarted) Atom to ensure it is not a caching issue
|
||||
- [ ] Searched through existing Atom Beautify Issues at https://github.com/Glavin001/atom-beautify/issues
|
||||
so I know this is not a duplicate issue
|
||||
- [ ] Filled out the Input, Expected, and Actual sections above or have edited/removed them in a way that fully describes the issue.
|
||||
- [ ] Generated debugging information by executing `Atom Beautify: Help Debug Editor` command in Atom and added link for `debug.md` Gist to this issue
|
||||
|
||||
22
dotfiles/.atom/packages/atom-beautify/LICENSE.md
Normal file
22
dotfiles/.atom/packages/atom-beautify/LICENSE.md
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015 Glavin Wiechert
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
### What does this implement/fix? Explain your changes.
|
||||
|
||||
...
|
||||
|
||||
### Does this close any currently open issues?
|
||||
|
||||
...
|
||||
|
||||
### Any other comments?
|
||||
|
||||
...
|
||||
|
||||
### Checklist
|
||||
|
||||
Check all those that are applicable and complete.
|
||||
|
||||
- [ ] Merged with latest `master` branch
|
||||
- [ ] Regenerate documentation with `npm run docs`
|
||||
- [ ] Add change details to `CHANGELOG.md` under "Next" section
|
||||
- [ ] Added examples for testing to [examples/ directory](examples/)
|
||||
- [ ] Travis CI passes (Mac support)
|
||||
- [ ] AppVeyor passes (Windows support)
|
||||
244
dotfiles/.atom/packages/atom-beautify/README-template.md
Normal file
244
dotfiles/.atom/packages/atom-beautify/README-template.md
Normal file
|
|
@ -0,0 +1,244 @@
|
|||
# :lipstick: [{{package.name}}](https://github.com/Glavin001/atom-beautify)
|
||||
[](https://atom.io/packages/atom-beautify)
|
||||
[](https://github.com/Glavin001/atom-beautify/stargazers)
|
||||
[](https://github.com/Glavin001/atom-beautify/issues)
|
||||
[](https://greenkeeper.io/)
|
||||
|
||||
[](https://unibeautify-slack.glitch.me/)
|
||||
[](https://twitter.com/unibeautify)
|
||||
[](https://gitter.im/Glavin001/atom-beautify)
|
||||
[](https://www.bountysource.com/teams/atom-beautify)
|
||||
[](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=X2RK5DKN6YXPJ&lc=CA&item_name=Atom%2dBeautify&item_number=atom%2dbeautify¤cy_code=CAD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted)
|
||||
|
||||
<!--
|
||||
**Sign up for Unibeautify CI: [https://goo.gl/jmM4QN](https://goo.gl/jmM4QN)**
|
||||
-->
|
||||
|
||||
[:tada: **Install Unibeautify CI for GitHub** :tada:](https://github.com/apps/unibeautify-ci)
|
||||
|
||||
**Help improve Atom-Beautify by completing the quick questionnaire: [https://goo.gl/iEHBNr](https://goo.gl/iEHBNr)**
|
||||
|
||||
| Mac OS <img src="https://cloud.githubusercontent.com/assets/1885333/17059766/2530c9d8-4ffd-11e6-9529-3fa47dbff616.png" width="50px"> and <img src="https://cloud.githubusercontent.com/assets/1885333/17059750/11c4474e-4ffd-11e6-89e1-2486ca5b3234.png" width="100px"> | <img src="https://cloud.githubusercontent.com/assets/1885333/17059763/206a7d4a-4ffd-11e6-859e-7856902fb300.png" width="100px"> |
|
||||
| --- | --- |
|
||||
| [Travis CI: ](https://travis-ci.org/Glavin001/atom-beautify) | [AppVeyor: ](https://ci.appveyor.com/project/Glavin001/atom-beautify/branch/master) |
|
||||
|
||||
[](https://waffle.io/Glavin001/atom-beautify/metrics)
|
||||
|
||||
> {{package.description}}
|
||||
|
||||
| Before | After |
|
||||
| --- | ---- |
|
||||
| Original HTML | Beautified HTML |
|
||||
|  |  |
|
||||
|
||||
## Table of Contents
|
||||
|
||||
- [Installation](#installation)
|
||||
- [Beautifiers](#beautifiers)
|
||||
- [Language Support](#language-support)
|
||||
- [Usage](#usage)
|
||||
- [Command Palette](#command-palette)
|
||||
- [Beautify a Specific Language](#beautify-a-specific-language)
|
||||
- [Selection of Code](#selection-of-code)
|
||||
- [Beautify On Save](#beautify-on-save)
|
||||
- [Keyboard Shortcut](#keyboard-shortcut)
|
||||
- [Custom Keyboard Shortcuts](#custom-keyboard-shortcuts)
|
||||
- [Configuration](#configuration)
|
||||
- [Simple](#simple)
|
||||
- [Nested](#nested-recommended)
|
||||
- [Troubleshooting](#troubleshooting)
|
||||
- [Contributing](#contributing)
|
||||
|
||||
## Installation
|
||||
|
||||
Atom Package: https://atom.io/packages/atom-beautify
|
||||
|
||||
```bash
|
||||
apm install atom-beautify
|
||||
```
|
||||
|
||||
Or Settings/Preferences ➔ Install ➔ Search for `atom-beautify`
|
||||
|
||||
[:tada: **Install Unibeautify CI for GitHub** :tada:](https://github.com/apps/unibeautify-ci)
|
||||
|
||||
### Important Notice: Analytics
|
||||
|
||||
[Atom-Beautify respects the `core.telemetryConsent` configuration option from Atom editor.](https://github.com/Glavin001/atom-beautify/issues/1179)
|
||||
If you do not wish to have usage data sent to Google Analytics then please set `core.telemetryConsent` to `no` or `undecided` option before using Atom-Beautify.
|
||||
See [`Anonymous Analytics` section of docs](docs/options.md#anonymous-analytics) for details.
|
||||
Thank you.
|
||||
|
||||
| On Atom Load | Change Setting Later |
|
||||
| --- | --- |
|
||||
|  |  |
|
||||
|
||||
|
||||
### Next Version: [Unibeautify](https://github.com/Unibeautify/unibeautify)
|
||||
|
||||
Atom-Beautify is going to be completely rewritten with [Unibeautify](https://github.com/Unibeautify/unibeautify) at its core!
|
||||
See [`unibeautify` branch](../../tree/unibeautify) for work in progress and [Issue #1174](https://github.com/Glavin001/atom-beautify/issues/1174).
|
||||
|
||||
[:tada: **Install Unibeautify CI for GitHub** :tada:](https://github.com/apps/unibeautify-ci)
|
||||
|
||||
### Poll: Improving installation of third-party beautifiers
|
||||
|
||||
Many users are experiencing issues when installing third party beautifiers (e.g. Uncrustify, PHP-CS-Fixer, and many more).
|
||||
A possible solution is a "cloud" service which provides remote access to these beautifiers. Atom-Beautify would then communicate with these services, allowing for zero-installation beautification.
|
||||
|
||||
Please let us know what you think!
|
||||
|
||||
[](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/Yes%2C%20cloud%20solution%20would%20be%20great!/vote)
|
||||
[](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/No%2C%20I%20enjoy%20manually%20installing%20beautifiers/vote)
|
||||
[](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/No%2C%20I%20am%20happy%20using%20Docker/vote)
|
||||
[](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/No%2C%20I%20do%20not%20want%20to%20send%20me%20code%20over%20the%20Internet/vote)
|
||||
|
||||
## Beautifiers
|
||||
|
||||
Some of the supported beautifiers are developed for Node.js and are automatically installed when Atom-Beautify is installed. However, other beautifiers are command-line interface (CLI) applications and require you to manually install them.
|
||||
|
||||
{{beautifiers-info beautifiers}}
|
||||
|
||||
## Language Support
|
||||
|
||||
See [all supported options in the documentation at `docs/options.md`](docs/options.md).
|
||||
|
||||
{{language-beautifiers-support languageOptions}}
|
||||
|
||||
## Usage
|
||||
|
||||
### Command Palette
|
||||
|
||||
Open the [Command Palette](https://github.com/atom/command-palette), type `Beautify`, and run `Beautify Editor`.
|
||||
|
||||

|
||||
|
||||
#### Beautify a Specific Language
|
||||
|
||||
You can use the [Command Palette](https://github.com/atom/command-palette) to beautify the editor for a specific language.
|
||||
The commands are in the form `Atom Beautify: Beautify Language {NAME}` (i.e. `atom-beautify:beautify-language-{NAME}` for keyboard shortcuts).
|
||||
For example, you may want to beautify `JavaScript` code within a `HTML` file.
|
||||
|
||||

|
||||
|
||||
### Selection of Code
|
||||
|
||||
It will only beautify selected text if a selection is found -- if not, the whole file will be beautified.
|
||||
|
||||
| Selection of Code | Beautify Selection of Code | Beautify Entire File |
|
||||
| --- | --- | --- |
|
||||
| Select code in Atom editor | Only that selection is beautified | Without a selection all code is beautified |
|
||||
|  |  |  |
|
||||
|
||||
### Beautify On Save
|
||||
|
||||
`Beautify On Save` can be enabled for each language individually.
|
||||
|
||||
For example, for language `HTML` go into Atom-Beautify's package settings (`Atom` ➔ `Preferences` ➔ Search for `atom-beautify`), find `HTML`, and toggle the `Beautify On Save` option.
|
||||
|
||||

|
||||
|
||||
### Keyboard Shortcut
|
||||
|
||||
You can also type <kbd>Ctrl</kbd>-<kbd>Alt</kbd>-<kbd>B</kbd> as a shortcut or click `Packages > Beautify` in the menu.
|
||||
|
||||
#### Custom Keyboard Shortcuts
|
||||
|
||||
See [Keymaps In-Depth](https://atom.io/docs/latest/behind-atom-keymaps-in-depth) for more details.
|
||||
|
||||
For example:
|
||||
|
||||
```coffeescript
|
||||
'.editor':
|
||||
'ctrl-alt-b': 'atom-beautify:beautify-editor'
|
||||
```
|
||||
|
||||
## Configuration
|
||||
|
||||
Edit your `.jsbeautifyrc` file in any of the following locations:
|
||||
|
||||
- Atom Package Settings
|
||||
`Atom` ➔ `Preferences` ➔ Search for `atom-beautify`
|
||||
- Same directory as current file
|
||||
- Project root
|
||||
`atom-beautify` will recursively look up from the current file's directory to find `.jsbeautifyrc`.
|
||||
- Your user's home directory
|
||||
|
||||
**Note**: *Comments are supported in `.jsbeautifyrc` thanks to [strip-json-comments](https://github.com/sindresorhus/strip-json-comments).*
|
||||
|
||||
See examples of both ways inside [`examples/`](examples)
|
||||
|
||||
See [all supported options in the documentation at `docs/options.md`](docs/options.md).
|
||||
|
||||
### Simple
|
||||
|
||||
See [examples/simple-jsbeautifyrc/.jsbeautifyrc](examples/simple-jsbeautifyrc/.jsbeautifyrc).
|
||||
|
||||
```json
|
||||
{
|
||||
"indent_size": 2,
|
||||
"indent_char": " ",
|
||||
"other": " ",
|
||||
"indent_level": 0,
|
||||
"indent_with_tabs": false,
|
||||
"preserve_newlines": true,
|
||||
"max_preserve_newlines": 2,
|
||||
"jslint_happy": true,
|
||||
"indent_handlebars": true
|
||||
}
|
||||
```
|
||||
|
||||
### Nested (Recommended)
|
||||
|
||||
See [examples/nested-jsbeautifyrc/.jsbeautifyrc](examples/nested-jsbeautifyrc/.jsbeautifyrc).
|
||||
|
||||
```json
|
||||
{
|
||||
"html": {
|
||||
"brace_style": "collapse",
|
||||
"indent_char": " ",
|
||||
"indent_scripts": "normal",
|
||||
"indent_size": 6,
|
||||
"max_preserve_newlines": 1,
|
||||
"preserve_newlines": true,
|
||||
"unformatted": ["a", "sub", "sup", "b", "i", "u"],
|
||||
"wrap_line_length": 0
|
||||
},
|
||||
"css": {
|
||||
"indent_char": " ",
|
||||
"indent_size": 4
|
||||
},
|
||||
"js": {
|
||||
"indent_size": 2,
|
||||
"indent_char": " ",
|
||||
"indent_level": 0,
|
||||
"indent_with_tabs": false,
|
||||
"preserve_newlines": true,
|
||||
"max_preserve_newlines": 2,
|
||||
"jslint_happy": true
|
||||
},
|
||||
"sql": {
|
||||
"indent_size": 4,
|
||||
"indent_char": " ",
|
||||
"indent_level": 0,
|
||||
"indent_with_tabs": false
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
See [`docs/troubleshooting.md`](docs/troubleshooting.md).
|
||||
|
||||
## Contributing
|
||||
|
||||
See [`CONTRIBUTING.md`](CONTRIBUTING.md).
|
||||
|
||||
[See all contributors on GitHub](../../graphs/contributors).
|
||||
|
||||
Please update the [CHANGELOG.md](CHANGELOG.md),
|
||||
add yourself as a contributor to the [package.json](package.json),
|
||||
and submit a [Pull Request on GitHub](https://help.github.com/articles/using-pull-requests/).
|
||||
|
||||
## License
|
||||
|
||||
[MIT](LICENSE.md) © [Glavin Wiechert](https://github.com/Glavin001)
|
||||
372
dotfiles/.atom/packages/atom-beautify/README.md
Normal file
372
dotfiles/.atom/packages/atom-beautify/README.md
Normal file
|
|
@ -0,0 +1,372 @@
|
|||
# :lipstick: [atom-beautify](https://github.com/Glavin001/atom-beautify)
|
||||
[](https://atom.io/packages/atom-beautify)
|
||||
[](https://github.com/Glavin001/atom-beautify/stargazers)
|
||||
[](https://github.com/Glavin001/atom-beautify/issues)
|
||||
[](https://greenkeeper.io/)
|
||||
|
||||
[](https://unibeautify-slack.glitch.me/)
|
||||
[](https://twitter.com/unibeautify)
|
||||
[](https://gitter.im/Glavin001/atom-beautify)
|
||||
[](https://www.bountysource.com/teams/atom-beautify)
|
||||
[](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=X2RK5DKN6YXPJ&lc=CA&item_name=Atom%2dBeautify&item_number=atom%2dbeautify¤cy_code=CAD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted)
|
||||
|
||||
<!--
|
||||
**Sign up for Unibeautify CI: [https://goo.gl/jmM4QN](https://goo.gl/jmM4QN)**
|
||||
-->
|
||||
|
||||
[:tada: **Install Unibeautify CI for GitHub** :tada:](https://github.com/apps/unibeautify-ci)
|
||||
|
||||
**Help improve Atom-Beautify by completing the quick questionnaire: [https://goo.gl/iEHBNr](https://goo.gl/iEHBNr)**
|
||||
|
||||
| Mac OS <img src="https://cloud.githubusercontent.com/assets/1885333/17059766/2530c9d8-4ffd-11e6-9529-3fa47dbff616.png" width="50px"> and <img src="https://cloud.githubusercontent.com/assets/1885333/17059750/11c4474e-4ffd-11e6-89e1-2486ca5b3234.png" width="100px"> | <img src="https://cloud.githubusercontent.com/assets/1885333/17059763/206a7d4a-4ffd-11e6-859e-7856902fb300.png" width="100px"> |
|
||||
| --- | --- |
|
||||
| [Travis CI: ](https://travis-ci.org/Glavin001/atom-beautify) | [AppVeyor: ](https://ci.appveyor.com/project/Glavin001/atom-beautify/branch/master) |
|
||||
|
||||
[](https://waffle.io/Glavin001/atom-beautify/metrics)
|
||||
|
||||
> Beautify HTML, CSS, JavaScript, PHP, Python, Ruby, Java, C, C++, C#, Objective-C, CoffeeScript, TypeScript, Coldfusion, SQL, and more in Atom
|
||||
|
||||
| Before | After |
|
||||
| --- | ---- |
|
||||
| Original HTML | Beautified HTML |
|
||||
|  |  |
|
||||
|
||||
## Table of Contents
|
||||
|
||||
- [Installation](#installation)
|
||||
- [Beautifiers](#beautifiers)
|
||||
- [Language Support](#language-support)
|
||||
- [Usage](#usage)
|
||||
- [Command Palette](#command-palette)
|
||||
- [Beautify a Specific Language](#beautify-a-specific-language)
|
||||
- [Selection of Code](#selection-of-code)
|
||||
- [Beautify On Save](#beautify-on-save)
|
||||
- [Keyboard Shortcut](#keyboard-shortcut)
|
||||
- [Custom Keyboard Shortcuts](#custom-keyboard-shortcuts)
|
||||
- [Configuration](#configuration)
|
||||
- [Simple](#simple)
|
||||
- [Nested](#nested-recommended)
|
||||
- [Troubleshooting](#troubleshooting)
|
||||
- [Contributing](#contributing)
|
||||
|
||||
## Installation
|
||||
|
||||
Atom Package: https://atom.io/packages/atom-beautify
|
||||
|
||||
```bash
|
||||
apm install atom-beautify
|
||||
```
|
||||
|
||||
Or Settings/Preferences ➔ Install ➔ Search for `atom-beautify`
|
||||
|
||||
[:tada: **Install Unibeautify CI for GitHub** :tada:](https://github.com/apps/unibeautify-ci)
|
||||
|
||||
### Important Notice: Analytics
|
||||
|
||||
[Atom-Beautify respects the `core.telemetryConsent` configuration option from Atom editor.](https://github.com/Glavin001/atom-beautify/issues/1179)
|
||||
If you do not wish to have usage data sent to Google Analytics then please set `core.telemetryConsent` to `no` or `undecided` option before using Atom-Beautify.
|
||||
See [`Anonymous Analytics` section of docs](docs/options.md#anonymous-analytics) for details.
|
||||
Thank you.
|
||||
|
||||
| On Atom Load | Change Setting Later |
|
||||
| --- | --- |
|
||||
|  |  |
|
||||
|
||||
|
||||
### Next Version: [Unibeautify](https://github.com/Unibeautify/unibeautify)
|
||||
|
||||
Atom-Beautify is going to be completely rewritten with [Unibeautify](https://github.com/Unibeautify/unibeautify) at its core!
|
||||
See [`unibeautify` branch](../../tree/unibeautify) for work in progress and [Issue #1174](https://github.com/Glavin001/atom-beautify/issues/1174).
|
||||
|
||||
[:tada: **Install Unibeautify CI for GitHub** :tada:](https://github.com/apps/unibeautify-ci)
|
||||
|
||||
### Poll: Improving installation of third-party beautifiers
|
||||
|
||||
Many users are experiencing issues when installing third party beautifiers (e.g. Uncrustify, PHP-CS-Fixer, and many more).
|
||||
A possible solution is a "cloud" service which provides remote access to these beautifiers. Atom-Beautify would then communicate with these services, allowing for zero-installation beautification.
|
||||
|
||||
Please let us know what you think!
|
||||
|
||||
[](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/Yes%2C%20cloud%20solution%20would%20be%20great!/vote)
|
||||
[](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/No%2C%20I%20enjoy%20manually%20installing%20beautifiers/vote)
|
||||
[](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/No%2C%20I%20am%20happy%20using%20Docker/vote)
|
||||
[](https://m131jyck4m.execute-api.us-west-2.amazonaws.com/prod/poll/01BY57P9ACSDQASVT7KYZKZESK/No%2C%20I%20do%20not%20want%20to%20send%20me%20code%20over%20the%20Internet/vote)
|
||||
|
||||
## Beautifiers
|
||||
|
||||
Some of the supported beautifiers are developed for Node.js and are automatically installed when Atom-Beautify is installed. However, other beautifiers are command-line interface (CLI) applications and require you to manually install them.
|
||||
|
||||
| Beautifier | Preinstalled | [:whale: Docker](https://www.docker.com/) | Installation |
|
||||
| --- | --- | --- |--- |
|
||||
| align-yaml | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||
| autopep8 | :warning: 2 executables | :warning: Only 1 of 2 executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [autopep8 (`autopep8`)](https://github.com/hhatto/autopep8) with `docker pull unibeautify/autopep8`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [autopep8 (`autopep8`)](https://github.com/hhatto/autopep8) by following https://github.com/hhatto/autopep8#installation<br/>2. Install [isort (`isort`)](https://github.com/timothycrosley/isort) by following https://github.com/timothycrosley/isort#installing-isort<br/> |
|
||||
| beautysh | :warning: 1 executable | :white_check_mark: :100:% of executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [beautysh (`beautysh`)](https://github.com/bemeurer/beautysh) with `docker pull unibeautify/beautysh`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [beautysh (`beautysh`)](https://github.com/bemeurer/beautysh) by following https://github.com/bemeurer/beautysh#installation<br/> |
|
||||
| black | :warning: 1 executable | :x: No Docker support | :bookmark_tabs: Manually:<br/>1. Install [black (`black`)](https://github.com/ambv/black) by following https://github.com/ambv/black#installation<br/> |
|
||||
| brittany | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/lspitzner/brittany and follow the instructions. |
|
||||
| clang-format | :warning: 1 executable | :white_check_mark: :100:% of executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [ClangFormat (`clang-format`)](https://clang.llvm.org/docs/ClangFormat.html) with `docker pull unibeautify/clang-format`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [ClangFormat (`clang-format`)](https://clang.llvm.org/docs/ClangFormat.html) by following https://clang.llvm.org/docs/ClangFormat.html<br/> |
|
||||
| cljfmt | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||
| Coffee Formatter | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||
| coffee-fmt | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||
| Crystal | :warning: 1 executable | :white_check_mark: :100:% of executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [Crystal (`crystal`)](http://crystal-lang.org) with `docker pull unibeautify/crystal`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [Crystal (`crystal`)](http://crystal-lang.org) by following https://crystal-lang.org/docs/installation/<br/> |
|
||||
| CSScomb | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||
| dfmt | :warning: 1 executable | :x: No Docker support | :bookmark_tabs: Manually:<br/>1. Install [Dfmt (`dfmt`)](https://github.com/Hackerpilot/dfmt) by following https://github.com/dlang-community/dfmt#building<br/> |
|
||||
| elm-format | :warning: 1 executable | :white_check_mark: :100:% of executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [elm-format (`elm-format`)](https://github.com/avh4/elm-format) with `docker pull unibeautify/elm-format`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [elm-format (`elm-format`)](https://github.com/avh4/elm-format) by following https://github.com/avh4/elm-format#installation-<br/> |
|
||||
| Emacs Verilog Mode | :warning: 1 executable | :x: No Docker support | :bookmark_tabs: Manually:<br/>1. Install [Emacs (`emacs`)](https://www.gnu.org/software/emacs/) by following https://www.gnu.org/software/emacs/<br/> |
|
||||
| erl_tidy | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to http://erlang.org/doc/man/erl_tidy.html and follow the instructions. |
|
||||
| ESLint Fixer | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||
| formatR | :warning: 1 executable | :white_check_mark: :100:% of executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [Rscript (`rscript`)](https://github.com/yihui/formatR) with `docker pull unibeautify/rscript`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [Rscript (`rscript`)](https://github.com/yihui/formatR) by following https://github.com/yihui/formatR<br/> |
|
||||
| Fortran Beautifier | :warning: 1 executable | :x: No Docker support | :bookmark_tabs: Manually:<br/>1. Install [Emacs (`emacs`)](https://www.gnu.org/software/emacs/) by following https://www.gnu.org/software/emacs/<br/> |
|
||||
| Gherkin formatter | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||
| GN | :warning: 1 executable | :x: No Docker support | :bookmark_tabs: Manually:<br/>1. Install [gn (`gn`)](https://chromium.googlesource.com/chromium/src/tools/gn) by following https://www.chromium.org/developers/how-tos/get-the-code<br/> |
|
||||
| gofmt | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://golang.org/cmd/gofmt/ and follow the instructions. |
|
||||
| goimports | :warning: 1 executable | :white_check_mark: :100:% of executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [goimports (`goimports`)](https://godoc.org/golang.org/x/tools/cmd/goimports) with `docker pull unibeautify/goimports`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [goimports (`goimports`)](https://godoc.org/golang.org/x/tools/cmd/goimports) by following https://godoc.org/golang.org/x/tools/cmd/goimports<br/> |
|
||||
| hh_format | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to http://hhvm.com/ and follow the instructions. |
|
||||
| hindent | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/commercialhaskell/hindent and follow the instructions. |
|
||||
| HTML Beautifier | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/threedaymonk/htmlbeautifier and follow the instructions. |
|
||||
| JS Beautify | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||
| JSCS Fixer | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||
| Latex Beautify | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/cmhughes/latexindent.pl and follow the instructions. |
|
||||
| Lua beautifier | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||
| Marko Beautifier | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||
| Nginx Beautify | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||
| ocamlformat | :warning: 1 executable | :x: No Docker support | :bookmark_tabs: Manually:<br/>1. Install [ocamlformat (`ocamlformat`)](https://github.com/ocaml-ppx/ocamlformat) by following https://github.com/ocaml-ppx/ocamlformat#installation<br/> |
|
||||
| ocp-indent | :warning: 1 executable | :white_check_mark: :100:% of executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [ocp-indent (`ocp-indent`)](https://www.typerex.org/ocp-indent.html) with `docker pull unibeautify/ocp-indent`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [ocp-indent (`ocp-indent`)](https://www.typerex.org/ocp-indent.html) by following https://www.typerex.org/ocp-indent.html#installation<br/> |
|
||||
| Perltidy | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to http://perltidy.sourceforge.net/ and follow the instructions. |
|
||||
| PHP-CS-Fixer | :warning: 2 executables | :warning: Only 1 of 2 executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [PHP-CS-Fixer (`php-cs-fixer`)](https://github.com/FriendsOfPHP/PHP-CS-Fixer) with `docker pull unibeautify/php-cs-fixer`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [PHP (`php`)](http://php.net/) by following http://php.net/manual/en/install.php<br/>2. Install [PHP-CS-Fixer (`php-cs-fixer`)](https://github.com/FriendsOfPHP/PHP-CS-Fixer) by following https://github.com/FriendsOfPHP/PHP-CS-Fixer#installation<br/> |
|
||||
| PHPCBF | :warning: 2 executables | :warning: Only 1 of 2 executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [PHPCBF (`phpcbf`)](https://github.com/squizlabs/PHP_CodeSniffer) with `docker pull unibeautify/phpcbf`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [PHP (`php`)](http://php.net/) by following http://php.net/manual/en/install.php<br/>2. Install [PHPCBF (`phpcbf`)](https://github.com/squizlabs/PHP_CodeSniffer) by following https://github.com/squizlabs/PHP_CodeSniffer#installation<br/> |
|
||||
| Prettier | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||
| Pretty Diff | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||
| Pug Beautify | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||
| puppet-lint | :warning: 1 executable | :white_check_mark: :100:% of executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [puppet-lint (`puppet-lint`)](http://puppet-lint.com/) with `docker pull unibeautify/puppet-lint`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [puppet-lint (`puppet-lint`)](http://puppet-lint.com/) by following http://puppet-lint.com/<br/> |
|
||||
| pybeautifier | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/guyskk/pybeautifier and follow the instructions. |
|
||||
| Remark | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||
| Rubocop | :warning: 1 executable | :x: No Docker support | :bookmark_tabs: Manually:<br/>1. Install [Rubocop (`rubocop`)](http://rubocop.readthedocs.io/) by following http://rubocop.readthedocs.io/en/latest/installation/<br/> |
|
||||
| Ruby Beautify | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/erniebrodeur/ruby-beautify and follow the instructions. |
|
||||
| rustfmt | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/rust-lang-nursery/rustfmt and follow the instructions. |
|
||||
| SassConvert | :warning: 1 executable | :white_check_mark: :100:% of executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [SassConvert (`sass-convert`)](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax) with `docker pull unibeautify/sass-convert`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [SassConvert (`sass-convert`)](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax) by following http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax<br/> |
|
||||
| sqlformat | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/andialbrecht/sqlparse and follow the instructions. |
|
||||
| stylish-haskell | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/jaspervdj/stylish-haskell and follow the instructions. |
|
||||
| terraformfmt | :warning: 1 executable | :white_check_mark: :100:% of executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [Terraform (`terraform`)](https://www.terraform.io) with `docker pull hashicorp/terraform`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [Terraform (`terraform`)](https://www.terraform.io) by following https://www.terraform.io<br/> |
|
||||
| Tidy Markdown | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||
| TypeScript Formatter | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||
| Uncrustify | :warning: 1 executable | :white_check_mark: :100:% of executables | :whale: With [Docker](https://www.docker.com/):<br/>1. Install [Uncrustify (`uncrustify`)](http://uncrustify.sourceforge.net/) with `docker pull unibeautify/uncrustify`<br/><br/>:bookmark_tabs: Manually:<br/>1. Install [Uncrustify (`uncrustify`)](http://uncrustify.sourceforge.net/) by following https://github.com/uncrustify/uncrustify<br/> |
|
||||
| VHDL Beautifier | :warning: 1 executable | :x: No Docker support | :bookmark_tabs: Manually:<br/>1. Install [Emacs (`emacs`)](https://www.gnu.org/software/emacs/) by following https://www.gnu.org/software/emacs/<br/> |
|
||||
| Vue Beautifier | :white_check_mark: | :ok_hand: Not necessary | :smiley: Nothing! |
|
||||
| yapf | :warning: Manual installation | :construction: Not an executable | :page_facing_up: Go to https://github.com/google/yapf and follow the instructions. |
|
||||
|
||||
## Language Support
|
||||
|
||||
See [all supported options in the documentation at `docs/options.md`](docs/options.md).
|
||||
|
||||
| Language | Grammars | File Extensions | Supported Beautifiers |
|
||||
| --- | --- | --- | ---- |
|
||||
| Apex | `Apex` |`.cls`, `.trigger` | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)** |
|
||||
| Arduino | `Arduino` |`.ino`, `.pde` | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)** |
|
||||
| Bash | `Shell Script` |`.bash`, `.sh` | **[`beautysh`](https://github.com/bemeurer/beautysh)** |
|
||||
| Blade | `Blade` |`.blade.php` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)** |
|
||||
| C | `C`, `opencl` |`.h`, `.c`, `.cl` | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)**, [`clang-format`](https://clang.llvm.org/docs/ClangFormat.html) |
|
||||
| Coldfusion | `html` |`.cfm`, `.cfml`, `.cfc` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||
| Clojure | `Clojure` |`.clj`, `.cljs`, `.edn` | **[`cljfmt`](https://github.com/snoe/node-cljfmt)** |
|
||||
| CoffeeScript | `CoffeeScript` |`.coffee` | **[`coffee-fmt`](https://github.com/sterpe/coffee-fmt)**, [`Coffee Formatter`](https://github.com/Glavin001/Coffee-Formatter) |
|
||||
| C++ | `C++` |`.h`, `.hh`, `.cc`, `.cpp`, `.cxx`, `.C`, `.cu`, `.c++`, `.hpp`, `.hxx`, `.h++`, `.cuh` | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)**, [`clang-format`](https://clang.llvm.org/docs/ClangFormat.html) |
|
||||
| Crystal | `Crystal` |`.cr` | **[`Crystal`](http://crystal-lang.org)** |
|
||||
| C# | `C#` |`.cs` | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)** |
|
||||
| CSS | `CSS` |`.css` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)**, [`CSScomb`](https://github.com/csscomb/csscomb.js), [`Prettier`](https://github.com/prettier/prettier), [`Pretty Diff`](https://github.com/prettydiff/prettydiff), [`SassConvert`](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax) |
|
||||
| CSV | `CSV` |`.csv` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||
| D | `D` |`.d` | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)**, [`dfmt`](https://github.com/Hackerpilot/dfmt) |
|
||||
| EJS | `EJS`, `JavaScript Template`, `HTML (Angular)` |`.ejs` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)**, [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
||||
| Elm | `Elm` |`.elm` | **[`elm-format`](https://github.com/avh4/elm-format)** |
|
||||
| ERB | `HTML (Ruby - ERB)`, `HTML (Rails)` |`.erb` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)**, [`HTML Beautifier`](https://github.com/threedaymonk/htmlbeautifier) |
|
||||
| Erlang | `Erlang` |`.erl` | **[`erl_tidy`](http://erlang.org/doc/man/erl_tidy.html)** |
|
||||
| Fortran | `Fortran - Modern` |`.f90`, `.F90`, `.f95`, `.F95`, `.f03`, `.F03`, `.f08`, `.F08` | **[`Fortran Beautifier`](https://www.gnu.org/software/emacs/)** |
|
||||
| gherkin | `Gherkin` |`.feature` | **[`Gherkin formatter`](https://github.com/Glavin001/atom-beautify/blob/master/src/beautifiers/gherkin.coffee)** |
|
||||
| GLSL | `C`, `opencl`, `GLSL` |`.vert`, `.frag` | **[`clang-format`](https://clang.llvm.org/docs/ClangFormat.html)** |
|
||||
| GN | `gn` |`.gn`, `.gni` | **[`GN`](https://chromium.googlesource.com/chromium/src/tools/gn)** |
|
||||
| Go | `Go` |`.go` | **[`gofmt`](https://golang.org/cmd/gofmt/)**, [`goimports`](https://godoc.org/golang.org/x/tools/cmd/goimports) |
|
||||
| Golang Template | `HTML (Go)`, `Go Template` |`.gohtml` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||
| Handlebars | `Handlebars`, `HTML (Handlebars)` |`.hbs`, `.handlebars` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)**, [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
||||
| Haskell | `Haskell` |`.hs` | **[`stylish-haskell`](https://github.com/jaspervdj/stylish-haskell)**, [`brittany`](https://github.com/lspitzner/brittany), [`hindent`](https://github.com/commercialhaskell/hindent) |
|
||||
| HTML | `HTML` |`.html` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)**, [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
||||
| Jade | `Jade`, `Pug` |`.jade`, `.pug` | **[`Pug Beautify`](https://github.com/vingorius/pug-beautify)** |
|
||||
| Java | `Java` |`.java` | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)** |
|
||||
| JavaScript | `JavaScript` |`.js` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)**, [`ESLint Fixer`](https://github.com/eslint/eslint), [`JSCS Fixer`](https://github.com/jscs-dev/node-jscs/), [`Prettier`](https://github.com/prettier/prettier), [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
||||
| JSON | `JSON` |`.json` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)**, [`Prettier`](https://github.com/prettier/prettier), [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
||||
| JSX | `JSX`, `JavaScript (JSX)`, `Babel ES6 JavaScript`, `JavaScript with JSX` |`.jsx`, `.js` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)**, [`JS Beautify`](https://github.com/beautify-web/js-beautify) |
|
||||
| LaTeX | `BibTeX`, `LaTeX`, `TeX` |`.bib`, `.tex`, `.sty`, `.cls`, `.dtx`, `.ins`, `.bbx`, `.cbx` | **[`Latex Beautify`](https://github.com/cmhughes/latexindent.pl)** |
|
||||
| LESS | `LESS` |`.less` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)**, [`CSScomb`](https://github.com/csscomb/csscomb.js), [`Prettier`](https://github.com/prettier/prettier) |
|
||||
| Lua | `Lua` |`.lua`, `.ttslua` | **[`Lua beautifier`](https://github.com/Glavin001/atom-beautify/blob/master/src/beautifiers/lua-beautifier/beautifier.coffee)** |
|
||||
| Markdown | `GitHub Markdown` |`.markdown`, `.md` | **[`Remark`](https://github.com/remarkjs/remark)**, [`Prettier`](https://github.com/prettier/prettier), [`Tidy Markdown`](https://github.com/slang800/tidy-markdown) |
|
||||
| Marko | `Marko` |`.marko` | **[`Marko Beautifier`](https://github.com/marko-js/marko-prettyprint)** |
|
||||
| Mustache | `HTML (Mustache)` |`.mustache` | **[`JS Beautify`](https://github.com/beautify-web/js-beautify)**, [`Pretty Diff`](https://github.com/prettydiff/prettydiff) |
|
||||
| Nginx | `nginx` |`.conf` | **[`Nginx Beautify`](https://github.com/denysvitali/nginxbeautify)** |
|
||||
| Nunjucks | `Nunjucks`, `Nunjucks Templates`, `HTML (Nunjucks Templates)` |`.njk`, `.nunjucks` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||
| Objective-C | `Objective-C`, `Objective-C++` |`.m`, `.mm`, `.h` | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)**, [`clang-format`](https://clang.llvm.org/docs/ClangFormat.html) |
|
||||
| OCaml | `OCaml` |`.ml` | **[`ocp-indent`](https://www.typerex.org/ocp-indent.html)**, [`ocamlformat`](https://github.com/ocaml-ppx/ocamlformat) |
|
||||
| Pawn | `Pawn` | | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)** |
|
||||
| Perl | `Perl`, `Perl 6` |`.pl`, `.PL`, `.pm`, `.pod`, `.t` | **[`Perltidy`](http://perltidy.sourceforge.net/)** |
|
||||
| PHP | `PHP` |`.php`, `.module`, `.inc` | **[`PHP-CS-Fixer`](https://github.com/FriendsOfPHP/PHP-CS-Fixer)**, [`PHPCBF`](http://php.net/manual/en/install.php), [`hh_format`](http://hhvm.com/) |
|
||||
| Puppet | `Puppet` |`.pp` | **[`puppet-lint`](http://puppet-lint.com/)** |
|
||||
| Python | `Python`, `MagicPython` |`.py` | **[`autopep8`](https://github.com/hhatto/autopep8)**, [`black`](https://github.com/ambv/black), [`pybeautifier`](https://github.com/guyskk/pybeautifier), [`yapf`](https://github.com/google/yapf) |
|
||||
| R | `R` |`.r`, `.R` | **[`formatR`](https://github.com/yihui/formatR)** |
|
||||
| Riot.js | `Riot.js`, `HTML (Riot Tag)` |`.tag` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||
| Ruby | `Ruby`, `Ruby on Rails` |`.rb` | **[`Rubocop`](https://github.com/bbatsov/rubocop)**, [`Ruby Beautify`](https://github.com/erniebrodeur/ruby-beautify) |
|
||||
| Rust | `Rust` |`.rs`, `.rlib` | **[`rustfmt`](https://github.com/rust-lang-nursery/rustfmt)** |
|
||||
| Sass | `Sass` |`.sass` | **[`SassConvert`](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax)** |
|
||||
| SCSS | `SCSS` |`.scss` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)**, [`CSScomb`](https://github.com/csscomb/csscomb.js), [`Prettier`](https://github.com/prettier/prettier), [`SassConvert`](http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax) |
|
||||
| Spacebars | `Spacebars` | | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||
| SQL | `SQL (Rails)`, `SQL` |`.sql` | **[`sqlformat`](https://github.com/andialbrecht/sqlparse)** |
|
||||
| SVG | `SVG` |`.svg` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||
| Swig | `HTML (Swig)`, `SWIG` |`.swig` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||
| Terraform | `Terraform` |`.tf` | **[`terraformfmt`](https://www.terraform.io/docs/commands/fmt.html)** |
|
||||
| TSS | `TSS` |`.tss` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||
| TSX | `TypeScriptReact` |`.tsx` | **[`TypeScript Formatter`](https://github.com/vvakame/typescript-formatter)** |
|
||||
| Twig | `HTML (Twig)` |`.twig` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||
| TypeScript | `TypeScript` |`.ts` | **[`TypeScript Formatter`](https://github.com/vvakame/typescript-formatter)**, [`Prettier`](https://github.com/prettier/prettier) |
|
||||
| UX Markup | `UX` |`.ux` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||
| Vala | `Vala` |`.vala`, `.vapi` | **[`Uncrustify`](https://github.com/uncrustify/uncrustify)** |
|
||||
| Verilog | `Verilog` |`.svh`, `.v`, `.sv` | **[`Emacs Verilog Mode`](https://www.veripool.org/projects/verilog-mode/)** |
|
||||
| VHDL | `VHDL 2008` |`.vhd`, `.VHD` | **[`VHDL Beautifier`](https://www.gnu.org/software/emacs/)** |
|
||||
| Visualforce | `Visualforce` |`.page` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||
| Vue | `Vue Component` |`.vue` | **[`Vue Beautifier`](https://github.com/Glavin001/atom-beautify/blob/master/src/beautifiers/vue-beautifier.coffee)**, [`ESLint Fixer`](https://github.com/eslint/eslint), [`Prettier`](https://github.com/prettier/prettier) |
|
||||
| XML | `SLD`, `XML`, `XHTML`, `XSD`, `XSL`, `JSP`, `GSP` |`.sld`, `.xml`, `.xhtml`, `.xsd`, `.xsl`, `.jsp`, `.gsp`, `.plist`, `.recipe`, `.config` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)**, [`JS Beautify`](https://github.com/beautify-web/js-beautify) |
|
||||
| XTemplate | `XTemplate` |`.xtemplate` | **[`Pretty Diff`](https://github.com/prettydiff/prettydiff)** |
|
||||
| YAML | `YAML` |`.yml`, `.yaml` | **[`align-yaml`](https://github.com/jonschlinkert/align-yaml)** |
|
||||
|
||||
## Usage
|
||||
|
||||
### Command Palette
|
||||
|
||||
Open the [Command Palette](https://github.com/atom/command-palette), type `Beautify`, and run `Beautify Editor`.
|
||||
|
||||

|
||||
|
||||
#### Beautify a Specific Language
|
||||
|
||||
You can use the [Command Palette](https://github.com/atom/command-palette) to beautify the editor for a specific language.
|
||||
The commands are in the form `Atom Beautify: Beautify Language {NAME}` (i.e. `atom-beautify:beautify-language-{NAME}` for keyboard shortcuts).
|
||||
For example, you may want to beautify `JavaScript` code within a `HTML` file.
|
||||
|
||||

|
||||
|
||||
### Selection of Code
|
||||
|
||||
It will only beautify selected text if a selection is found -- if not, the whole file will be beautified.
|
||||
|
||||
| Selection of Code | Beautify Selection of Code | Beautify Entire File |
|
||||
| --- | --- | --- |
|
||||
| Select code in Atom editor | Only that selection is beautified | Without a selection all code is beautified |
|
||||
|  |  |  |
|
||||
|
||||
### Beautify On Save
|
||||
|
||||
`Beautify On Save` can be enabled for each language individually.
|
||||
|
||||
For example, for language `HTML` go into Atom-Beautify's package settings (`Atom` ➔ `Preferences` ➔ Search for `atom-beautify`), find `HTML`, and toggle the `Beautify On Save` option.
|
||||
|
||||

|
||||
|
||||
### Keyboard Shortcut
|
||||
|
||||
You can also type <kbd>Ctrl</kbd>-<kbd>Alt</kbd>-<kbd>B</kbd> as a shortcut or click `Packages > Beautify` in the menu.
|
||||
|
||||
#### Custom Keyboard Shortcuts
|
||||
|
||||
See [Keymaps In-Depth](https://atom.io/docs/latest/behind-atom-keymaps-in-depth) for more details.
|
||||
|
||||
For example:
|
||||
|
||||
```coffeescript
|
||||
'.editor':
|
||||
'ctrl-alt-b': 'atom-beautify:beautify-editor'
|
||||
```
|
||||
|
||||
## Configuration
|
||||
|
||||
Edit your `.jsbeautifyrc` file in any of the following locations:
|
||||
|
||||
- Atom Package Settings
|
||||
`Atom` ➔ `Preferences` ➔ Search for `atom-beautify`
|
||||
- Same directory as current file
|
||||
- Project root
|
||||
`atom-beautify` will recursively look up from the current file's directory to find `.jsbeautifyrc`.
|
||||
- Your user's home directory
|
||||
|
||||
**Note**: *Comments are supported in `.jsbeautifyrc` thanks to [strip-json-comments](https://github.com/sindresorhus/strip-json-comments).*
|
||||
|
||||
See examples of both ways inside [`examples/`](examples)
|
||||
|
||||
See [all supported options in the documentation at `docs/options.md`](docs/options.md).
|
||||
|
||||
### Simple
|
||||
|
||||
See [examples/simple-jsbeautifyrc/.jsbeautifyrc](examples/simple-jsbeautifyrc/.jsbeautifyrc).
|
||||
|
||||
```json
|
||||
{
|
||||
"indent_size": 2,
|
||||
"indent_char": " ",
|
||||
"other": " ",
|
||||
"indent_level": 0,
|
||||
"indent_with_tabs": false,
|
||||
"preserve_newlines": true,
|
||||
"max_preserve_newlines": 2,
|
||||
"jslint_happy": true,
|
||||
"indent_handlebars": true
|
||||
}
|
||||
```
|
||||
|
||||
### Nested (Recommended)
|
||||
|
||||
See [examples/nested-jsbeautifyrc/.jsbeautifyrc](examples/nested-jsbeautifyrc/.jsbeautifyrc).
|
||||
|
||||
```json
|
||||
{
|
||||
"html": {
|
||||
"brace_style": "collapse",
|
||||
"indent_char": " ",
|
||||
"indent_scripts": "normal",
|
||||
"indent_size": 6,
|
||||
"max_preserve_newlines": 1,
|
||||
"preserve_newlines": true,
|
||||
"unformatted": ["a", "sub", "sup", "b", "i", "u"],
|
||||
"wrap_line_length": 0
|
||||
},
|
||||
"css": {
|
||||
"indent_char": " ",
|
||||
"indent_size": 4
|
||||
},
|
||||
"js": {
|
||||
"indent_size": 2,
|
||||
"indent_char": " ",
|
||||
"indent_level": 0,
|
||||
"indent_with_tabs": false,
|
||||
"preserve_newlines": true,
|
||||
"max_preserve_newlines": 2,
|
||||
"jslint_happy": true
|
||||
},
|
||||
"sql": {
|
||||
"indent_size": 4,
|
||||
"indent_char": " ",
|
||||
"indent_level": 0,
|
||||
"indent_with_tabs": false
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## Troubleshooting
|
||||
|
||||
See [`docs/troubleshooting.md`](docs/troubleshooting.md).
|
||||
|
||||
## Contributing
|
||||
|
||||
See [`CONTRIBUTING.md`](CONTRIBUTING.md).
|
||||
|
||||
[See all contributors on GitHub](../../graphs/contributors).
|
||||
|
||||
Please update the [CHANGELOG.md](CHANGELOG.md),
|
||||
add yourself as a contributor to the [package.json](package.json),
|
||||
and submit a [Pull Request on GitHub](https://help.github.com/articles/using-pull-requests/).
|
||||
|
||||
## License
|
||||
|
||||
[MIT](LICENSE.md) © [Glavin Wiechert](https://github.com/Glavin001)
|
||||
42
dotfiles/.atom/packages/atom-beautify/ROADMAP.md
Normal file
42
dotfiles/.atom/packages/atom-beautify/ROADMAP.md
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
# Roadmap to v1.0.0
|
||||
|
||||
- Supported usage
|
||||
- [ ] Atom
|
||||
- [ ] Sublime
|
||||
- [ ] CLI
|
||||
- [ ] Core (Node.js API)
|
||||
|
||||
- [ ] Core
|
||||
- [ ] Standard Options & Languages
|
||||
- [ ] Add Option
|
||||
- Option has fields:
|
||||
- `key`
|
||||
- `description`
|
||||
- `default`
|
||||
- `type`
|
||||
- ...
|
||||
- [ ] Add Language
|
||||
- Language has fields:
|
||||
- `namespace`
|
||||
- `name`
|
||||
- `extensions`
|
||||
- `options`
|
||||
- [ ] Add Beautifier
|
||||
- Supported languages and options
|
||||
- Given `({ text, language, options, filePath, projectPath })`
|
||||
- Beautifiers run in their own processes
|
||||
- Beautifier queue limiting number of simultaneous processes
|
||||
- [ ] Add Configurer
|
||||
- Configurer will obtain values for the options
|
||||
- [ ] CLI
|
||||
- [ ] Find beautifiers globally installed named `beautifier-${name}`
|
||||
- See https://github.com/yeoman/environment/blob/f9468481911c31673378b38e63872f57a1163f38/lib/resolver.js#L63
|
||||
- [ ] Atom
|
||||
- [ ] Configurers
|
||||
- [ ] Atom Editor Settings
|
||||
- [ ]
|
||||
- [ ] External Beautifiers
|
||||
- [ ] Services (Consumer/Provider) API
|
||||
|
||||
- [ ] Sublime
|
||||
- Use CLI
|
||||
47
dotfiles/.atom/packages/atom-beautify/appveyor.yml
Normal file
47
dotfiles/.atom/packages/atom-beautify/appveyor.yml
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
version: "{build}"
|
||||
image: Visual Studio 2017
|
||||
|
||||
test: off
|
||||
deploy: off
|
||||
|
||||
environment:
|
||||
global:
|
||||
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
|
||||
# /E:ON and /V:ON options are not enabled in the batch script intepreter
|
||||
# See: http://stackoverflow.com/a/13751649/163740
|
||||
CMD_IN_ENV: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_env.cmd"
|
||||
PATH: C:\Ruby23\bin;C:\Ruby23-x64\DevKit\mingw\bin;C:\Python27;C:\Python27\Scripts;%PATH%
|
||||
|
||||
init:
|
||||
- cmd: rd /s /q %CHOCOLATEYINSTALL%
|
||||
- ps: iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))
|
||||
|
||||
install:
|
||||
- cinst packages.config -y
|
||||
- refreshenv
|
||||
- apm install
|
||||
|
||||
# https://packaging.python.org/guides/supporting-windows-using-appveyor/
|
||||
- pip install -r requirements.txt
|
||||
|
||||
# Gemfile Install
|
||||
- set PATH=C:\Ruby24-x64\bin;%PATH%
|
||||
- ruby -v
|
||||
- gem update --system
|
||||
- bundle install
|
||||
|
||||
# PHP
|
||||
- ps: Set-Service wuauserv -StartupType Manual
|
||||
# PHP-CS-Fixer
|
||||
- composer install
|
||||
|
||||
# elm-format
|
||||
- npm install -g elm-format@exp
|
||||
|
||||
build_script:
|
||||
|
||||
# Install languages to Atom
|
||||
- apm install --packages-file atom-packages.txt
|
||||
# Run tests on package
|
||||
#- "%LOCALAPPDATA%\\atom\\bin\\atom.cmd --test spec"
|
||||
- apm test --path %LOCALAPPDATA%/atom/bin/atom.cmd
|
||||
10
dotfiles/.atom/packages/atom-beautify/atom-packages.txt
Normal file
10
dotfiles/.atom/packages/atom-beautify/atom-packages.txt
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
language-html-swig
|
||||
language-svg
|
||||
language-d
|
||||
mavensmate-atom
|
||||
language-lua
|
||||
language-elm
|
||||
language-puppet
|
||||
fuse
|
||||
react
|
||||
language-blade
|
||||
66
dotfiles/.atom/packages/atom-beautify/build-package.sh
Normal file
66
dotfiles/.atom/packages/atom-beautify/build-package.sh
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ "$TRAVIS_OS_NAME" != "osx" ]; then
|
||||
/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16
|
||||
export DISPLAY=":99"
|
||||
fi
|
||||
|
||||
echo "Using Atom version:"
|
||||
"$ATOM_SCRIPT_NAME" -v
|
||||
echo "Using APM version:"
|
||||
"$APM_SCRIPT_NAME" -v
|
||||
|
||||
echo "Downloading package dependencies..."
|
||||
"$APM_SCRIPT_NAME" clean
|
||||
"$APM_SCRIPT_NAME" install
|
||||
|
||||
echo "Installing atom package dependencies..."
|
||||
"$APM_SCRIPT_NAME" install --packages-file atom-packages.txt
|
||||
|
||||
if [ -f ./node_modules/.bin/coffeelint ]; then
|
||||
if [ -d ./src ]; then
|
||||
echo "Linting package..."
|
||||
./node_modules/.bin/coffeelint src
|
||||
rc=$?; if [ $rc -ne 0 ]; then exit $rc; fi
|
||||
fi
|
||||
if [ -d ./spec ]; then
|
||||
echo "Linting package specs..."
|
||||
./node_modules/.bin/coffeelint spec
|
||||
rc=$?; if [ $rc -ne 0 ]; then exit $rc; fi
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -f ./node_modules/.bin/eslint ]; then
|
||||
if [ -d ./src ]; then
|
||||
echo "Linting package..."
|
||||
./node_modules/.bin/eslint src
|
||||
rc=$?; if [ $rc -ne 0 ]; then exit $rc; fi
|
||||
fi
|
||||
if [ -d ./spec ]; then
|
||||
echo "Linting package specs..."
|
||||
./node_modules/.bin/eslint spec
|
||||
rc=$?; if [ $rc -ne 0 ]; then exit $rc; fi
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -f ./node_modules/.bin/standard ]; then
|
||||
if [ -d ./src ]; then
|
||||
echo "Linting package..."
|
||||
./node_modules/.bin/standard "src/**/*.js"
|
||||
rc=$?; if [ $rc -ne 0 ]; then exit $rc; fi
|
||||
fi
|
||||
if [ -d ./spec ]; then
|
||||
echo "Linting package specs..."
|
||||
./node_modules/.bin/standard "spec/**/*.js"
|
||||
rc=$?; if [ $rc -ne 0 ]; then exit $rc; fi
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -d ./spec ]; then
|
||||
echo "Running specs..."
|
||||
"$ATOM_SCRIPT_NAME" --test spec
|
||||
else
|
||||
echo "Missing spec folder! Please consider adding a test suite in `./spec`"
|
||||
exit 1
|
||||
fi
|
||||
exit
|
||||
13
dotfiles/.atom/packages/atom-beautify/coffeelint.json
Normal file
13
dotfiles/.atom/packages/atom-beautify/coffeelint.json
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"indentation": {
|
||||
"level": "error",
|
||||
"value": 2
|
||||
},
|
||||
"line_endings": {
|
||||
"value": "unix",
|
||||
"level": "error"
|
||||
},
|
||||
"max_line_length": {
|
||||
"value": false
|
||||
}
|
||||
}
|
||||
5
dotfiles/.atom/packages/atom-beautify/composer.json
Normal file
5
dotfiles/.atom/packages/atom-beautify/composer.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"require": {
|
||||
"friendsofphp/php-cs-fixer": ">0"
|
||||
}
|
||||
}
|
||||
3
dotfiles/.atom/packages/atom-beautify/docs/README.md
Normal file
3
dotfiles/.atom/packages/atom-beautify/docs/README.md
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# Atom Beautify Documentation
|
||||
|
||||
See [options.md](options.md) for supported beautification options.
|
||||
|
|
@ -0,0 +1,52 @@
|
|||
# Add Languages and Beautifiers
|
||||
|
||||
Please contribute with a Pull Request and add your favourite languages and beautifiers.
|
||||
|
||||
## Source Code Documentation
|
||||
Source code documentation can be found at http://glavin001.github.io/atom-beautify/docs/code/
|
||||
You can use [`codo`](https://github.com/coffeedoc/codo) to build your own documentation. Simply run `codo` in the project's directory and it will be generated into `docs/code/`.
|
||||
|
||||
## Options Documentation
|
||||
|
||||
After you make a change to language or beautifier `options` you will need to update the `options.json` file that is created on install.
|
||||
|
||||
```bash
|
||||
# Update documentation to include information about those options
|
||||
npm run docs
|
||||
```
|
||||
|
||||
## How to add a Language:
|
||||
|
||||
1. Create a new Language file in https://github.com/Glavin001/atom-beautify/tree/master/src/languages
|
||||
2. Configure the new language. Example for `JavaScript` language: https://github.com/Glavin001/atom-beautify/blob/master/src/languages/javascript.coffee#L8
|
||||
- `name` - name of Language
|
||||
- `namespace` - used as a prefix for scoping the options, such as option `indent_size` becomes `js_indent_size` for `JavaScript` language with namespace `js`
|
||||
- `grammars` - array of supported grammars. Used with `extensions` to determine if this file is this language or not. Grammars are prioritized over extensions, such that the grammar `JavaScript` is recognized before `js` and the beautifier with the same grammar as the file will be used over another that does not support the grammar and only the extension.
|
||||
- `extensions` - array of of extensions, without `.` (dot), such that `.js` is `js`. Used to determine if a file is this language. Useful if there is no supported grammar in Atom for this language.
|
||||
- `options` - I'd recommend looking at https://github.com/Glavin001/atom-beautify/blob/master/src/languages/javascript.coffee#L30 for examples.
|
||||
3. Add the language file to the list of language names. For instance, `c-sharp.coffee` file becomes `c-sharp`. See https://github.com/Glavin001/atom-beautify/blob/master/src/languages/index.coffee#L21
|
||||
Now your Language is available and can be detected and beautifiers can support it.
|
||||
|
||||
## How to add a Beautifier for a Language
|
||||
|
||||
1. Create a new [beautifier](https://github.com/Glavin001/atom-beautify/blob/master/src/beautifiers/beautifier.coffee) subclass in https://github.com/Glavin001/atom-beautify/tree/master/src/beautifiers directory
|
||||
2. Implement beautifier:
|
||||
- See examples of beautifiers:
|
||||
- Prettydiff is a good example of complex options: https://github.com/Glavin001/atom-beautify/blob/master/src/beautifiers/prettydiff.coffee
|
||||
- PHP-CS-Fixer is a good example of a CLI beautifier with arguments: https://github.com/Glavin001/atom-beautify/blob/master/src/beautifiers/php-cs-fixer.coffee#L15-L47
|
||||
- `options` - the key represents the Language's name. The value could be `true` (supports all options), `false` (supports language, with no options), or an `object` whose keys are option keys and values are complex mappings. If you need to use these, let me know. `true` is probably what you want.
|
||||
- The `beautify` function should return a `Promise` (use `@Promise` as shown). The arguments passed are:
|
||||
- __`text`__ - the source code from Atom's Text Editor
|
||||
- __`language`__ - the language's name (`JavaScript`)
|
||||
- __`options`__ - an object of all of the options in their form as described by your Language definition (see `Configure the new language` above).
|
||||
- __`context`__ - an object with extra information:
|
||||
- __`filePath`__ - The file path associated with the text being beautified (may be null)
|
||||
3. Add beautifier to list of `beautifierNames`: https://github.com/Glavin001/atom-beautify/blob/master/src/beautifiers/index.coffee#L34
|
||||
4. Add test example files in https://github.com/Glavin001/atom-beautify/tree/master/examples
|
||||
- You can put your test in `nested-jsbeautifyrc` directory, https://github.com/Glavin001/atom-beautify/tree/master/examples/nested-jsbeautifyrc
|
||||
- create a new directory for your tests, named something like `JavaScript`
|
||||
- `original` and `expected` directory containing files that are named the same. Prefix underscore (`_`) disables a test. See https://github.com/Glavin001/atom-beautify/tree/master/examples/simple-jsbeautifyrc/php/original for instance.
|
||||
- change any options you need in your namespace, such as `js`, in https://github.com/Glavin001/atom-beautify/blob/master/examples/nested-jsbeautifyrc/.jsbeautifyrc
|
||||
- Run tests in Atom with command `Window: Run package spec`
|
||||
|
||||
I have to go. Let me know if you have any questions!
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,207 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>AlignYaml</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
AlignYaml
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/align-yaml.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"align-yaml"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/jonschlinkert/align-yaml"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
YAML: {
|
||||
padding: true
|
||||
}
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,213 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Autopep8</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Autopep8
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/autopep8.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"autopep8"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/hhatto/autopep8"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'></code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Python: true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options, context = {})</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options, context = {})</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,236 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>BashBeautify</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
BashBeautify
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/beautysh.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"beautysh"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/bemeurer/beautysh"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>[
|
||||
{
|
||||
name: "beautysh",
|
||||
cmd: "beautysh",
|
||||
homepage: "https://github.com/bemeurer/beautysh",
|
||||
installation: "https://github.com/bemeurer/beautysh#installation",
|
||||
version: {
|
||||
|
||||
/*
|
||||
Does not display version
|
||||
*/
|
||||
args: ['--help'],
|
||||
parse: function(text) {
|
||||
return text.indexOf("usage: beautysh") !== -1 && "0.0.0";
|
||||
}
|
||||
},
|
||||
docker: {
|
||||
image: "unibeautify/beautysh"
|
||||
}
|
||||
}
|
||||
]</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Bash: {
|
||||
indent_size: true,
|
||||
indent_with_tabs: true
|
||||
}
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,582 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Beautifier</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Beautifier
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/beautifier.coffee</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Direct Known Subclasses</h2>
|
||||
<p class='children'>
|
||||
<a href='../class/AlignYaml.html'>AlignYaml</a>
|
||||
<a href='../class/Autopep8.html'>Autopep8</a>
|
||||
<a href='../class/BashBeautify.html'>BashBeautify</a>
|
||||
<a href='../class/Brittany.html'>Brittany</a>
|
||||
<a href='../class/ClangFormat.html'>ClangFormat</a>
|
||||
<a href='../class/Cljfmt.html'>Cljfmt</a>
|
||||
<a href='../class/CoffeeFmt.html'>CoffeeFmt</a>
|
||||
<a href='../class/CoffeeFormatter.html'>CoffeeFormatter</a>
|
||||
<a href='../class/Crystal.html'>Crystal</a>
|
||||
<a href='../class/JSBeautify.html'>JSBeautify</a>
|
||||
<a href='../class/Dfmt.html'>Dfmt</a>
|
||||
<a href='../class/ElmFormat.html'>ElmFormat</a>
|
||||
<a href='../class/ErlTidy.html'>ErlTidy</a>
|
||||
<a href='../class/ESLintFixer.html'>ESLintFixer</a>
|
||||
<a href='../class/R.html'>R</a>
|
||||
<a href='../class/FortranBeautifier.html'>FortranBeautifier</a>
|
||||
<a href='../class/Gherkin.html'>Gherkin</a>
|
||||
<a href='../class/GN.html'>GN</a>
|
||||
<a href='../class/Gofmt.html'>Gofmt</a>
|
||||
<a href='../class/Goimports.html'>Goimports</a>
|
||||
<a href='../class/HhFormat.html'>HhFormat</a>
|
||||
<a href='../class/Hindent.html'>Hindent</a>
|
||||
<a href='../class/HTMLBeautifier.html'>HTMLBeautifier</a>
|
||||
<a href='../class/JSBeautify.html'>JSBeautify</a>
|
||||
<a href='../class/JSCSFixer.html'>JSCSFixer</a>
|
||||
<a href='../class/LatexBeautify.html'>LatexBeautify</a>
|
||||
<a href='../class/Lua.html'>Lua</a>
|
||||
<a href='../class/MarkoBeautifier.html'>MarkoBeautifier</a>
|
||||
<a href='../class/NginxBeautify.html'>NginxBeautify</a>
|
||||
<a href='../class/OCPIndent.html'>OCPIndent</a>
|
||||
<a href='../class/PerlTidy.html'>PerlTidy</a>
|
||||
<a href='../class/PHPCSFixer.html'>PHPCSFixer</a>
|
||||
<a href='../class/PHPCBF.html'>PHPCBF</a>
|
||||
<a href='../class/Prettier.html'>Prettier</a>
|
||||
<a href='../class/PrettyDiff.html'>PrettyDiff</a>
|
||||
<a href='../class/PugBeautify.html'>PugBeautify</a>
|
||||
<a href='../class/PuppetFix.html'>PuppetFix</a>
|
||||
<a href='../class/PythonBeautifier.html'>PythonBeautifier</a>
|
||||
<a href='../class/Remark.html'>Remark</a>
|
||||
<a href='../class/Rubocop.html'>Rubocop</a>
|
||||
<a href='../class/RubyBeautify.html'>RubyBeautify</a>
|
||||
<a href='../class/Rustfmt.html'>Rustfmt</a>
|
||||
<a href='../class/SassConvert.html'>SassConvert</a>
|
||||
<a href='../class/Sqlformat.html'>Sqlformat</a>
|
||||
<a href='../class/StylishHaskell.html'>StylishHaskell</a>
|
||||
<a href='../class/Terraformfmt.html'>Terraformfmt</a>
|
||||
<a href='../class/TidyMarkdown.html'>TidyMarkdown</a>
|
||||
<a href='../class/TypeScriptFormatter.html'>TypeScriptFormatter</a>
|
||||
<a href='../class/Uncrustify.html'>Uncrustify</a>
|
||||
<a href='../class/EmacsVerilogMode.html'>EmacsVerilogMode</a>
|
||||
<a href='../class/VhdlBeautifier.html'>VhdlBeautifier</a>
|
||||
<a href='../class/VueBeautifier.html'>VueBeautifier</a>
|
||||
<a href='../class/Yapf.html'>Yapf</a>
|
||||
</p>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='Promise-variable'>
|
||||
Promise
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>Promise</code></pre>
|
||||
<div class='docstring'>
|
||||
<p>Promise</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>'Beautifier'</code></pre>
|
||||
<div class='docstring'>
|
||||
<p>Name of Beautifier</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{}</code></pre>
|
||||
<div class='docstring'>
|
||||
<p>Supported Options</p><p>Enable options for supported languages.</p><ul>
|
||||
<li><string:language>:<boolean:all_options_enabled></li>
|
||||
<li><string:language>:<string:option_key>:<boolean:enabled></li>
|
||||
<li><string:language>:<string:option_key>:<string:rename></li>
|
||||
<li><string:language>:<string:option_key>:<function:transform></li>
|
||||
<li><string:language>:<string:option_key>:<array:mapper></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>[]</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='_exe-variable'>
|
||||
_exe
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{}</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='languages-variable'>
|
||||
languages
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>null</code></pre>
|
||||
<div class='docstring'>
|
||||
<p>Supported languages by this Beautifier</p><p>Extracted from the keys of the <code>options</code> field.</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id='beautify-variable'>
|
||||
beautify
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>null</code></pre>
|
||||
<div class='docstring'>
|
||||
<p>Beautify text</p><p>Override this method in subclasses</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id='logger-variable'>
|
||||
logger
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>null</code></pre>
|
||||
<div class='docstring'>
|
||||
<p>Logger instance</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</dd>
|
||||
</dl>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#isPreInstalled-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>isPreInstalled</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Is the beautifier a command-line interface beautifier?
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#loadExecutables-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>loadExecutables</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#exe-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>exe</b><span>(cmd)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#deprecate-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>deprecate</b><span>(warning)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Show deprecation warning to user.
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#deprecateOptionForExecutable-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>deprecateOptionForExecutable</b><span>(exeName, oldOption, newOption)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#tempFile-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>tempFile</b><span>(name = "atom-beautify-temp", contents = "", ext = "")</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Create temporary file
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#readFile-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>readFile</b><span>(filePath)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Read file
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#findFile-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>findFile</b><span>(startDir, fileNames)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Find file
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#getDefaultLineEnding-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getDefaultLineEnding</b><span>(crlf, lf, optionEol)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Retrieves the default line ending based upon the Atom configuration <code>line-ending-selector.defaultLineEnding</code>.
|
||||
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#which-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>which</b><span>(exe, options = {})</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Like the unix which utility.
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#run-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>run</b><span>(executable, args, {cwd, ignoreReturnCode, help, onStdin} = {})</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Run command-line interface command
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#setupLogger-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>setupLogger</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Initialize and configure Logger
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>Constructor Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='constructor-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>constructor</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Constructor to setup beautifer</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='isPreInstalled-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>isPreInstalled</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Is the beautifier a command-line interface beautifier?</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='loadExecutables-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>loadExecutables</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='exe-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>exe</b><span>(cmd)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='deprecate-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>deprecate</b><span>(warning)</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Show deprecation warning to user.</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='deprecateOptionForExecutable-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>deprecateOptionForExecutable</b><span>(exeName, oldOption, newOption)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='tempFile-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>tempFile</b><span>(name = "atom-beautify-temp", contents = "", ext = "")</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Create temporary file</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='readFile-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>readFile</b><span>(filePath)</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Read file</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='findFile-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>findFile</b><span>(startDir, fileNames)</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Find file</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='getDefaultLineEnding-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getDefaultLineEnding</b><span>(crlf, lf, optionEol)</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Retrieves the default line ending based upon the Atom configuration
|
||||
<code>line-ending-selector.defaultLineEnding</code>. If the Atom configuration
|
||||
indicates "OS Default", the <code>process.platform</code> is queried, returning
|
||||
CRLF for Windows systems and LF for all other systems.
|
||||
Code modified from atom/line-ending-selector
|
||||
returns: The correct line-ending character sequence based upon the Atom
|
||||
configuration, or <code>null</code> if the Atom line ending configuration was not
|
||||
recognized.
|
||||
see: <a href="https://github.com/atom/line-ending-selector/blob/master/lib/main.js">https://github.com/atom/line-ending-selector/blob/master/lib/main.js</a></p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='which-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>which</b><span>(exe, options = {})</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Like the unix which utility.</p><p>Finds the first instance of a specified executable in the PATH environment variable.
|
||||
Does not cache the results,
|
||||
so hash -r is not needed when the PATH changes.
|
||||
See <a href="https://github.com/isaacs/node-which">https://github.com/isaacs/node-which</a></p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='run-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>run</b><span>(executable, args, {cwd, ignoreReturnCode, help, onStdin} = {})</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Run command-line interface command</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='setupLogger-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>setupLogger</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Initialize and configure Logger</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,691 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Beautifiers</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Beautifiers
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/index.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
EventEmitter
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='beautifierNames-variable'>
|
||||
beautifierNames
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>['uncrustify', 'align-yaml', 'autopep8', 'brittany', 'coffee-formatter', 'coffee-fmt', 'cljfmt', 'clang-format', 'crystal', 'dfmt', 'elm-format', 'hh_format', 'htmlbeautifier', 'csscomb', 'gherkin', 'gn', 'gofmt', 'goimports', 'latex-beautify', 'fortran-beautifier', 'hindent', 'vhdl-beautifier', 'js-beautify', 'jscs', 'eslint', 'lua-beautifier', 'nginx-beautify', 'ocp-indent', 'perltidy', 'php-cs-fixer', 'phpcbf', 'prettier', 'prettydiff', 'pybeautifier', 'pug-beautify', 'puppet-fix', 'remark', 'rubocop', 'ruby-beautify', 'rustfmt', 'sass-convert', 'sqlformat', 'stylish-haskell', 'tidy-markdown', 'typescript-formatter', 'vue-beautifier', 'yapf', 'erl_tidy', 'marko-beautifier', 'formatR', 'beautysh', 'terraformfmt', 'verilog-mode']</code></pre>
|
||||
<div class='docstring'>
|
||||
<p>List of beautifier names</p><p>To register a beautifier add its name here</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id='beautifiers-variable'>
|
||||
beautifiers
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>null</code></pre>
|
||||
<div class='docstring'>
|
||||
<p>List of loaded beautifiers</p><p>Autogenerated in <code>constructor</code> from <code>beautifierNames</code></p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>null</code></pre>
|
||||
<div class='docstring'>
|
||||
<p>All beautifier options</p><p>Autogenerated in <code>constructor</code></p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id='findFileResults-variable'>
|
||||
findFileResults
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#loadOptions-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>loadOptions</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#encodeURI-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>encodeURI</b><span>(str)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
From <a href="https://github.com/atom/notifications/blob/01779ade79e7196f1603b8c1fa31716aa4a33911/lib/notification-issue.coffee#L130">https://github.com/atom/notifications/blob/01779ade79e7196f1603b8c1fa31716aa4a33911/lib/notification-issue.coffee#L130</a>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#getBeautifiers-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getBeautifiers</b><span>(language)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#getBeautifierForLanguage-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getBeautifierForLanguage</b><span>(language)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#getExtension-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getExtension</b><span>(filePath)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#getLanguages-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getLanguages</b><span>(grammar, filePath)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#getLanguage-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getLanguage</b><span>(grammar, filePath)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#getOptionsForLanguage-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getOptionsForLanguage</b><span>(allOptions, language)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#transformOptions-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>transformOptions</b><span>(beautifier, languageName, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#trackEvent-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>trackEvent</b><span>(payload)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#trackTiming-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>trackTiming</b><span>(payload)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#track-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>track</b><span>(type, payload)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, allOptions, grammar, filePath, {onSave, language} = {})</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#getUserHome-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getUserHome</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
CLI
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#verifyExists-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>verifyExists</b><span>(fullPath)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#findFile-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>findFile</b><span>(name, dir, upwards = true)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Storage for memoized results from find file Should prevent lots of directory traversal &
|
||||
lookups when liniting an entire project
|
||||
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#findConfig-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>findConfig</b><span>(config, file, upwards = true)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Tries to find a configuration file in either project directory or in the home directory.
|
||||
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#getConfigOptionsFromSettings-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getConfigOptionsFromSettings</b><span>(langs)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#getConfig-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getConfig</b><span>(startPath, upwards = true)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Look for .jsbeautifierrc in file and home path, check env variables
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#getOptionsForPath-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getOptionsForPath</b><span>(editedFilePath, editor)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#isNestedOptions-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>isNestedOptions</b><span>(currOptions)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#getOptions-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getOptions</b><span>(selections, allOptions)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='bound note title'>Bound</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>Constructor Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='constructor-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>constructor</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Constructor</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='loadOptions-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>loadOptions</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='encodeURI-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>encodeURI</b><span>(str)</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>From <a href="https://github.com/atom/notifications/blob/01779ade79e7196f1603b8c1fa31716aa4a33911/lib/notification-issue.coffee#L130">https://github.com/atom/notifications/blob/01779ade79e7196f1603b8c1fa31716aa4a33911/lib/notification-issue.coffee#L130</a></p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='getBeautifiers-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getBeautifiers</b><span>(language)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='getBeautifierForLanguage-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getBeautifierForLanguage</b><span>(language)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='getExtension-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getExtension</b><span>(filePath)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='getLanguages-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getLanguages</b><span>(grammar, filePath)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='getLanguage-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getLanguage</b><span>(grammar, filePath)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='getOptionsForLanguage-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getOptionsForLanguage</b><span>(allOptions, language)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='transformOptions-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>transformOptions</b><span>(beautifier, languageName, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='trackEvent-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>trackEvent</b><span>(payload)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='trackTiming-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>trackTiming</b><span>(payload)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='track-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>track</b><span>(type, payload)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, allOptions, grammar, filePath, {onSave, language} = {})</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='getUserHome-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getUserHome</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>CLI</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='verifyExists-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>verifyExists</b><span>(fullPath)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='findFile-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>findFile</b><span>(name, dir, upwards = true)</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Storage for memoized results from find file
|
||||
Should prevent lots of directory traversal &
|
||||
lookups when liniting an entire project</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='findConfig-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>findConfig</b><span>(config, file, upwards = true)</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Tries to find a configuration file in either project directory
|
||||
or in the home directory. Configuration files are named
|
||||
'.jsbeautifyrc'.</p><p>@returns {string} a path to the config file</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
<h3>Parameters:</h3>
|
||||
<ul class='param'>
|
||||
<li>
|
||||
<span class='name'>config</span>
|
||||
<span class='type'>
|
||||
(
|
||||
<tt>string</tt>
|
||||
)
|
||||
</span>
|
||||
—
|
||||
<span class='desc'>name of the configuration file </span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='name'>file</span>
|
||||
<span class='type'>
|
||||
(
|
||||
<tt>string</tt>
|
||||
)
|
||||
</span>
|
||||
—
|
||||
<span class='desc'>path to the file to be linted </span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='name'>upwards</span>
|
||||
<span class='type'>
|
||||
(
|
||||
<tt>boolean</tt>
|
||||
)
|
||||
</span>
|
||||
—
|
||||
<span class='desc'>should recurse upwards on failure? (default: true) </span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='getConfigOptionsFromSettings-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getConfigOptionsFromSettings</b><span>(langs)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='getConfig-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getConfig</b><span>(startPath, upwards = true)</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Look for .jsbeautifierrc in file and home path, check env variables</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='getOptionsForPath-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getOptionsForPath</b><span>(editedFilePath, editor)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='isNestedOptions-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>isNestedOptions</b><span>(currOptions)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='getOptions-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getOptions</b><span>(selections, allOptions)</span>
|
||||
<span class='bound note'>Bound</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,213 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Brittany</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Brittany
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/brittany.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"brittany"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/lspitzner/brittany"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='isPreInstalled-variable'>
|
||||
isPreInstalled
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>false</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Haskell: false
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,256 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>ClangFormat</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
ClangFormat
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/clang-format.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"clang-format"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://clang.llvm.org/docs/ClangFormat.html"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>[
|
||||
{
|
||||
name: "ClangFormat",
|
||||
cmd: "clang-format",
|
||||
homepage: "https://clang.llvm.org/docs/ClangFormat.html",
|
||||
installation: "https://clang.llvm.org/docs/ClangFormat.html",
|
||||
version: {
|
||||
parse: function(text) {
|
||||
return text.match(/version (\d+\.\d+\.\d+)/)[1];
|
||||
}
|
||||
},
|
||||
docker: {
|
||||
image: "unibeautify/clang-format"
|
||||
}
|
||||
}
|
||||
]</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
"C++": false,
|
||||
"C": false,
|
||||
"Objective-C": false,
|
||||
"GLSL": true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#dumpToFile-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>dumpToFile</b><span>(name = "atom-beautify-dump", contents = "")</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Dump contents to a given file
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='dumpToFile-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>dumpToFile</b><span>(name = "atom-beautify-dump", contents = "")</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Dump contents to a given file</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,205 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Cljfmt</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Cljfmt
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/cljfmt/index.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"cljfmt"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/snoe/node-cljfmt"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Clojure: false
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,218 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>CoffeeFmt</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
CoffeeFmt
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/coffee-fmt.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"coffee-fmt"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/sterpe/coffee-fmt"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
|
||||
/*
|
||||
Apply language-specific options
|
||||
*/
|
||||
CoffeeScript: {
|
||||
tab: [
|
||||
"indent_size", "indent_char", "indent_with_tabs", function(indentSize, indentChar, indentWithTabs) {
|
||||
if (indentWithTabs) {
|
||||
return "\t";
|
||||
}
|
||||
return Array(indentSize + 1).join(indentChar);
|
||||
}
|
||||
]
|
||||
}
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,205 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>CoffeeFormatter</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
CoffeeFormatter
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/coffee-formatter.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"Coffee Formatter"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/Glavin001/Coffee-Formatter"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
CoffeeScript: false
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,228 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Crystal</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Crystal
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/crystal.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"Crystal"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"http://crystal-lang.org"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>[
|
||||
{
|
||||
name: "Crystal",
|
||||
cmd: "crystal",
|
||||
homepage: "http://crystal-lang.org",
|
||||
installation: "https://crystal-lang.org/docs/installation/",
|
||||
version: {
|
||||
parse: function(text) {
|
||||
return text.match(/Crystal (\d+\.\d+\.\d+)/)[1];
|
||||
}
|
||||
},
|
||||
docker: {
|
||||
image: "unibeautify/crystal"
|
||||
}
|
||||
}
|
||||
]</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Crystal: false
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
220
dotfiles/.atom/packages/atom-beautify/docs/code/class/Dfmt.html
Normal file
220
dotfiles/.atom/packages/atom-beautify/docs/code/class/Dfmt.html
Normal file
|
|
@ -0,0 +1,220 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Dfmt</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Dfmt
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/dfmt.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"dfmt"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/Hackerpilot/dfmt"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>[
|
||||
{
|
||||
name: "Dfmt",
|
||||
cmd: "dfmt",
|
||||
homepage: "https://github.com/Hackerpilot/dfmt",
|
||||
installation: "https://github.com/dlang-community/dfmt#building"
|
||||
}
|
||||
]</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
D: false
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,206 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>ESLintFixer</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
ESLintFixer
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/eslint.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"ESLint Fixer"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/eslint/eslint"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
JavaScript: false,
|
||||
Vue: false
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,213 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>ElmFormat</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
ElmFormat
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/elm-format.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"elm-format"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/avh4/elm-format"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'></code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Elm: true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,235 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>EmacsVerilogMode</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
EmacsVerilogMode
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/verilog-mode/index.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"Emacs Verilog Mode"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://www.veripool.org/projects/verilog-mode/"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='isPreInstalled-variable'>
|
||||
isPreInstalled
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>false</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>[
|
||||
{
|
||||
name: "Emacs",
|
||||
cmd: "emacs",
|
||||
homepage: "https://www.gnu.org/software/emacs/",
|
||||
installation: "https://www.gnu.org/software/emacs/",
|
||||
version: {
|
||||
parse: function(text) {
|
||||
return text.match(/Emacs (\d+\.\d+\.\d+)/)[1];
|
||||
}
|
||||
}
|
||||
}
|
||||
]</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Verilog: {
|
||||
emacs_script_path: true
|
||||
}
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,213 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>ErlTidy</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
ErlTidy
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/erl_tidy.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"erl_tidy"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"http://erlang.org/doc/man/erl_tidy.html"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='isPreInstalled-variable'>
|
||||
isPreInstalled
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>false</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Erlang: true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,736 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Executable</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Executable
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/executable.coffee</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Direct Known Subclasses</h2>
|
||||
<p class='children'>
|
||||
<a href='../class/HybridExecutable.html'>HybridExecutable</a>
|
||||
</p>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>null</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='cmd-variable'>
|
||||
cmd
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>null</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='key-variable'>
|
||||
key
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>null</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='homepage-variable'>
|
||||
homepage
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>null</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='installation-variable'>
|
||||
installation
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>null</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='versionArgs-variable'>
|
||||
versionArgs
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>['--version']</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='versionRunOptions-variable'>
|
||||
versionRunOptions
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{}</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='versionsSupported-variable'>
|
||||
versionsSupported
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>'>= 0.0.0'</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='required-variable'>
|
||||
required
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>true</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='logger-variable'>
|
||||
logger
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>null</code></pre>
|
||||
<div class='docstring'>
|
||||
<p>Logger instance</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id='_envCache-variable'>
|
||||
_envCache
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>null</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='_whichCache-variable'>
|
||||
_whichCache
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h2>Class Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#commandNotFoundError-static'>
|
||||
.
|
||||
(void)
|
||||
<b>commandNotFoundError</b><span>(exe, help)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#shellEnv-static'>
|
||||
.
|
||||
(void)
|
||||
<b>shellEnv</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#which-static'>
|
||||
.
|
||||
(void)
|
||||
<b>which</b><span>(exe, options = {})</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#isWindows-static'>
|
||||
.
|
||||
(void)
|
||||
<b>isWindows</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#versionParse-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>versionParse</b><span>(text)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#init-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>init</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#setupLogger-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>setupLogger</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Initialize and configure Logger
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#loadVersion-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>loadVersion</b><span>(force = false)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#runVersion-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>runVersion</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#saveVersion-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>saveVersion</b><span>(text)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#isSupported-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>isSupported</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#isVersion-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>isVersion</b><span>(range)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#versionSatisfies-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>versionSatisfies</b><span>(version, range)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#getConfig-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getConfig</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#run-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>run</b><span>(args, options = {})</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Run command-line interface command
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#path-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>path</b><span>(cmd = @cmd)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#resolveArgs-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>resolveArgs</b><span>(args)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#relativizePaths-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>relativizePaths</b><span>(args)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#spawn-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>spawn</b><span>(exe, args, options, onStdin)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Spawn
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#commandNotFoundError-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>commandNotFoundError</b><span>(exe, help)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Add help to error.description Note: error.description is not officially used in JavaScript,
|
||||
however it is used internally for Atom Beautify when displaying errors.
|
||||
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#shellEnv-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>shellEnv</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#which-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>which</b><span>(exe, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Like the unix which utility.
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#isWindows-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>isWindows</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
If platform is Windows
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>Class Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='commandNotFoundError-static'>
|
||||
.
|
||||
(void)
|
||||
<b>commandNotFoundError</b><span>(exe, help)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='shellEnv-static'>
|
||||
.
|
||||
(void)
|
||||
<b>shellEnv</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='which-static'>
|
||||
.
|
||||
(void)
|
||||
<b>which</b><span>(exe, options = {})</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='isWindows-static'>
|
||||
.
|
||||
(void)
|
||||
<b>isWindows</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<h2>Constructor Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='constructor-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>constructor</b><span>(options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='versionParse-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>versionParse</b><span>(text)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='init-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>init</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='setupLogger-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>setupLogger</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Initialize and configure Logger</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='loadVersion-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>loadVersion</b><span>(force = false)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='runVersion-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>runVersion</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='saveVersion-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>saveVersion</b><span>(text)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='isSupported-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>isSupported</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='isVersion-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>isVersion</b><span>(range)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='versionSatisfies-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>versionSatisfies</b><span>(version, range)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='getConfig-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getConfig</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='run-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>run</b><span>(args, options = {})</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Run command-line interface command</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='path-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>path</b><span>(cmd = @cmd)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='resolveArgs-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>resolveArgs</b><span>(args)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='relativizePaths-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>relativizePaths</b><span>(args)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='spawn-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>spawn</b><span>(exe, args, options, onStdin)</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Spawn</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='commandNotFoundError-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>commandNotFoundError</b><span>(exe, help)</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Add help to error.description</p><p>Note: error.description is not officially used in JavaScript,
|
||||
however it is used internally for Atom Beautify when displaying errors.</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='shellEnv-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>shellEnv</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='which-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>which</b><span>(exe, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Like the unix which utility.</p><p>Finds the first instance of a specified executable in the PATH environment variable.
|
||||
Does not cache the results,
|
||||
so hash -r is not needed when the PATH changes.
|
||||
See <a href="https://github.com/isaacs/node-which">https://github.com/isaacs/node-which</a></p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='isWindows-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>isWindows</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>If platform is Windows</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,225 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>FortranBeautifier</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
FortranBeautifier
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/fortran-beautifier/index.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"Fortran Beautifier"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://www.gnu.org/software/emacs/"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>[
|
||||
{
|
||||
name: "Emacs",
|
||||
cmd: "emacs",
|
||||
homepage: "https://www.gnu.org/software/emacs/",
|
||||
installation: "https://www.gnu.org/software/emacs/",
|
||||
version: {
|
||||
parse: function(text) {
|
||||
return text.match(/Emacs (\d+\.\d+\.\d+)/)[1];
|
||||
}
|
||||
}
|
||||
}
|
||||
]</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Fortran: true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
225
dotfiles/.atom/packages/atom-beautify/docs/code/class/GN.html
Normal file
225
dotfiles/.atom/packages/atom-beautify/docs/code/class/GN.html
Normal file
|
|
@ -0,0 +1,225 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>GN</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
GN
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/gn.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"GN"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://chromium.googlesource.com/chromium/src/tools/gn"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>[
|
||||
{
|
||||
name: "gn",
|
||||
cmd: "gn",
|
||||
homepage: "https://chromium.googlesource.com/chromium/src/tools/gn",
|
||||
installation: "https://www.chromium.org/developers/how-tos/get-the-code",
|
||||
version: {
|
||||
parse: function(text) {
|
||||
return semver.clean("0.0." + text);
|
||||
}
|
||||
}
|
||||
}
|
||||
]</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
GN: false
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options, context)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options, context)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,205 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Gherkin</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Gherkin
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/gherkin.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"Gherkin formatter"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/Glavin001/atom-beautify/blob/master/src/beautifiers/gherkin.coffee"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
gherkin: true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
213
dotfiles/.atom/packages/atom-beautify/docs/code/class/Gofmt.html
Normal file
213
dotfiles/.atom/packages/atom-beautify/docs/code/class/Gofmt.html
Normal file
|
|
@ -0,0 +1,213 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Gofmt</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Gofmt
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/gofmt.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"gofmt"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://golang.org/cmd/gofmt/"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='isPreInstalled-variable'>
|
||||
isPreInstalled
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>false</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Go: true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,237 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Goimports</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Goimports
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/goimports.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"goimports"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://godoc.org/golang.org/x/tools/cmd/goimports"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>[
|
||||
{
|
||||
name: "goimports",
|
||||
cmd: "goimports",
|
||||
homepage: "https://godoc.org/golang.org/x/tools/cmd/goimports",
|
||||
installation: "https://godoc.org/golang.org/x/tools/cmd/goimports",
|
||||
version: {
|
||||
|
||||
/*
|
||||
Does not display version
|
||||
*/
|
||||
args: ['--help'],
|
||||
parse: function(text) {
|
||||
return text.indexOf("usage: goimports") !== -1 && "0.0.0";
|
||||
},
|
||||
runOptions: {
|
||||
ignoreReturnCode: true,
|
||||
returnStderr: true
|
||||
}
|
||||
},
|
||||
docker: {
|
||||
image: "unibeautify/goimports"
|
||||
}
|
||||
}
|
||||
]</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Go: false
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,215 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>HTMLBeautifier</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
HTMLBeautifier
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/htmlbeautifier.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"HTML Beautifier"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/threedaymonk/htmlbeautifier"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='isPreInstalled-variable'>
|
||||
isPreInstalled
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>false</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
ERB: {
|
||||
indent_size: true
|
||||
}
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,213 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>HhFormat</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
HhFormat
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/hh_format.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"hh_format"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"http://hhvm.com/"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='isPreInstalled-variable'>
|
||||
isPreInstalled
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>false</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
PHP: false
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,213 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Hindent</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Hindent
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/hindent.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"hindent"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/commercialhaskell/hindent"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='isPreInstalled-variable'>
|
||||
isPreInstalled
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>false</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Haskell: false
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,295 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>HybridExecutable</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
HybridExecutable
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/executable.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Executable.html'>Executable</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='dockerOptions-variable'>
|
||||
dockerOptions
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
image: void 0,
|
||||
workingDir: "/workdir"
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='docker-variable'>
|
||||
docker
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>undefined</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='installedWithDocker-variable'>
|
||||
installedWithDocker
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>false</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Executable.html'>Executable</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Executable.html#name-variable'>name</a>
|
||||
<a href='../class/Executable.html#cmd-variable'>cmd</a>
|
||||
<a href='../class/Executable.html#key-variable'>key</a>
|
||||
<a href='../class/Executable.html#homepage-variable'>homepage</a>
|
||||
<a href='../class/Executable.html#installation-variable'>installation</a>
|
||||
<a href='../class/Executable.html#versionArgs-variable'>versionArgs</a>
|
||||
<a href='../class/Executable.html#versionRunOptions-variable'>versionRunOptions</a>
|
||||
<a href='../class/Executable.html#versionsSupported-variable'>versionsSupported</a>
|
||||
<a href='../class/Executable.html#required-variable'>required</a>
|
||||
<a href='../class/Executable.html#logger-variable'>logger</a>
|
||||
<a href='../class/Executable.html#_envCache-variable'>_envCache</a>
|
||||
<a href='../class/Executable.html#_whichCache-variable'>_whichCache</a>
|
||||
</p>
|
||||
<h2>Class Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#dockerExecutable-static'>
|
||||
.
|
||||
(void)
|
||||
<b>dockerExecutable</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#init-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>init</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#run-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>run</b><span>(args, options = {})</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#runImage-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>runImage</b><span>(args, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Executable.html'>Executable</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Executable.html#versionParse-dynamic'>#versionParse</a>
|
||||
<a href='../class/Executable.html#init-dynamic'>#init</a>
|
||||
<a href='../class/Executable.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
<a href='../class/Executable.html#loadVersion-dynamic'>#loadVersion</a>
|
||||
<a href='../class/Executable.html#runVersion-dynamic'>#runVersion</a>
|
||||
<a href='../class/Executable.html#saveVersion-dynamic'>#saveVersion</a>
|
||||
<a href='../class/Executable.html#isSupported-dynamic'>#isSupported</a>
|
||||
<a href='../class/Executable.html#isVersion-dynamic'>#isVersion</a>
|
||||
<a href='../class/Executable.html#versionSatisfies-dynamic'>#versionSatisfies</a>
|
||||
<a href='../class/Executable.html#getConfig-dynamic'>#getConfig</a>
|
||||
<a href='../class/Executable.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Executable.html#path-dynamic'>#path</a>
|
||||
<a href='../class/Executable.html#resolveArgs-dynamic'>#resolveArgs</a>
|
||||
<a href='../class/Executable.html#relativizePaths-dynamic'>#relativizePaths</a>
|
||||
<a href='../class/Executable.html#spawn-dynamic'>#spawn</a>
|
||||
<a href='../class/Executable.html#commandNotFoundError-dynamic'>#commandNotFoundError</a>
|
||||
<a href='../class/Executable.html#shellEnv-dynamic'>#shellEnv</a>
|
||||
<a href='../class/Executable.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Executable.html#isWindows-dynamic'>#isWindows</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Class Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='dockerExecutable-static'>
|
||||
.
|
||||
(void)
|
||||
<b>dockerExecutable</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<h2>Constructor Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='constructor-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>constructor</b><span>(options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='init-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>init</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='run-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>run</b><span>(args, options = {})</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='runImage-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>runImage</b><span>(args, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,221 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>JSBeautify</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
JSBeautify
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/js-beautify.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"JS Beautify"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/beautify-web/js-beautify"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
HTML: true,
|
||||
XML: true,
|
||||
Handlebars: true,
|
||||
Mustache: true,
|
||||
JavaScript: true,
|
||||
EJS: true,
|
||||
JSX: true,
|
||||
JSON: true,
|
||||
CSS: {
|
||||
indent_size: true,
|
||||
indent_char: true,
|
||||
selector_separator_newline: true,
|
||||
newline_between_rules: true,
|
||||
preserve_newlines: true,
|
||||
wrap_line_length: true,
|
||||
end_with_newline: true
|
||||
}
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,205 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>JSCSFixer</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
JSCSFixer
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/jscs.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"JSCS Fixer"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/jscs-dev/node-jscs/"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
JavaScript: false
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,196 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Languages</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Languages
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/languages/index.coffee</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='languageNames-variable'>
|
||||
languageNames
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>["apex", "arduino", "bash", "c-sharp", "c", "clojure", "coffeescript", "coldfusion", "cpp", "crystal", "css", "csv", "d", "ejs", "elm", "erb", "erlang", "gherkin", "glsl", "gn", "go", "gohtml", "fortran", "handlebars", "haskell", "html", "jade", "java", "javascript", "json", "jsx", "latex", "less", "lua", "markdown", 'marko', "mustache", "nginx", "nunjucks", "objective-c", "ocaml", "pawn", "perl", "php", "puppet", "python", "r", "riotjs", "ruby", "rust", "sass", "scss", "spacebars", "sql", "svg", "swig", "tss", "tsx", "twig", "typescript", "ux_markup", "vala", "vue", "vhdl", "visualforce", "xml", "xtemplate", "yaml", "terraform", "verilog"]</code></pre>
|
||||
<div class='docstring'>
|
||||
<p>Supported unique configuration keys
|
||||
Used for detecting nested configurations in .jsbeautifyrc</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id='languages-variable'>
|
||||
languages
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>null</code></pre>
|
||||
<div class='docstring'>
|
||||
<p>Languages</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id='namespaces-variable'>
|
||||
namespaces
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>null</code></pre>
|
||||
<div class='docstring'>
|
||||
<p>Namespaces</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</dd>
|
||||
</dl>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#getLanguages-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getLanguages</b><span>({name, namespace, grammar, extension})</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Get language for grammar and extension
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>Constructor Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='constructor-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>constructor</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Constructor</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='getLanguages-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>getLanguages</b><span>({name, namespace, grammar, extension})</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Get language for grammar and extension</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,272 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>LatexBeautify</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
LatexBeautify
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/latex-beautify.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"Latex Beautify"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/cmhughes/latexindent.pl"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='isPreInstalled-variable'>
|
||||
isPreInstalled
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>false</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
LaTeX: true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#buildConfigFile-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>buildConfigFile</b><span>(options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
There are too many options with latexmk, I have tried to slim this down to the most useful ones.
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#setUpDir-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>setUpDir</b><span>(dirPath, text, config)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Latexindent accepts configuration <em>files</em> only.
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
Beautifier does not currently have a method for creating directories, so we call temp directly.
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='buildConfigFile-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>buildConfigFile</b><span>(options)</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>There are too many options with latexmk, I have tried to slim this down to the most useful ones.
|
||||
This method creates a configuration file for latexindent.</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='setUpDir-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>setUpDir</b><span>(dirPath, text, config)</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Latexindent accepts configuration <em>files</em> only.
|
||||
This file has to be named localSettings.yaml and be in the same folder as the tex file.
|
||||
It also insists on creating a log file somewhere.
|
||||
So we set up a directory with all the files in place.</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
<div class='docstring'>
|
||||
<p>Beautifier does not currently have a method for creating directories, so we call temp directly.</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,191 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>LoadingView</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
LoadingView
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/views/loading-view.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
View
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Class Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#content-static'>
|
||||
.
|
||||
(void)
|
||||
<b>content</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#hide-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>hide</b><span>(event, element)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='bound note title'>Bound</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#show-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>show</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='bound note title'>Bound</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>Class Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='content-static'>
|
||||
.
|
||||
(void)
|
||||
<b>content</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='hide-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>hide</b><span>(event, element)</span>
|
||||
<span class='bound note'>Bound</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='show-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>show</b><span>()</span>
|
||||
<span class='bound note'>Bound</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
209
dotfiles/.atom/packages/atom-beautify/docs/code/class/Lua.html
Normal file
209
dotfiles/.atom/packages/atom-beautify/docs/code/class/Lua.html
Normal file
|
|
@ -0,0 +1,209 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Lua</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Lua
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/lua-beautifier/index.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"Lua beautifier"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/Glavin001/atom-beautify/blob/master/src/beautifiers/lua-beautifier/beautifier.coffee"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Lua: {
|
||||
indent_size: true,
|
||||
indent_char: true,
|
||||
end_of_line: true
|
||||
}
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,205 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>MarkoBeautifier</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
MarkoBeautifier
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/marko-beautifier.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>'Marko Beautifier'</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/marko-js/marko-prettyprint"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Marko: true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options, context)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options, context)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,300 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>MessageView</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
MessageView
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/views/message-view.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
View
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='messages-variable'>
|
||||
messages
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>[]</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h2>Class Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#content-static'>
|
||||
.
|
||||
(void)
|
||||
<b>content</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#destroy-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>destroy</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#addMessage-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>addMessage</b><span>(message)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='bound note title'>Bound</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#clearMessages-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>clearMessages</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='bound note title'>Bound</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#close-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>close</b><span>(event, element)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='bound note title'>Bound</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#show-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>show</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='bound note title'>Bound</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#refresh-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>refresh</b><span>()</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='bound note title'>Bound</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>Class Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='content-static'>
|
||||
.
|
||||
(void)
|
||||
<b>content</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<h2>Constructor Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='constructor-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>constructor</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='destroy-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>destroy</b><span>()</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='addMessage-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>addMessage</b><span>(message)</span>
|
||||
<span class='bound note'>Bound</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='clearMessages-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>clearMessages</b><span>()</span>
|
||||
<span class='bound note'>Bound</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='close-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>close</b><span>(event, element)</span>
|
||||
<span class='bound note'>Bound</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='show-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>show</b><span>()</span>
|
||||
<span class='bound note'>Bound</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='refresh-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>refresh</b><span>()</span>
|
||||
<span class='bound note'>Bound</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,225 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>NginxBeautify</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
NginxBeautify
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/nginx-beautify.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"Nginx Beautify"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/denysvitali/nginxbeautify"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Nginx: {
|
||||
spaces: [
|
||||
"indent_with_tabs", "indent_size", "indent_char", function(indent_with_tabs, indent_size, indent_char) {
|
||||
if (indent_with_tabs || indent_char === "\t") {
|
||||
return 0;
|
||||
} else {
|
||||
return indent_size;
|
||||
}
|
||||
}
|
||||
],
|
||||
tabs: [
|
||||
"indent_with_tabs", "indent_size", "indent_char", function(indent_with_tabs, indent_size, indent_char) {
|
||||
if (indent_with_tabs || indent_char === "\t") {
|
||||
return indent_size;
|
||||
} else {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
],
|
||||
dontJoinCurlyBracet: true
|
||||
}
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,213 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>OCPIndent</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
OCPIndent
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/ocp-indent.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"ocp-indent"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://www.typerex.org/ocp-indent.html"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'></code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
OCaml: true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,242 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>PHPCBF</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
PHPCBF
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/phpcbf.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"PHPCBF"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"http://php.net/manual/en/install.php"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>[
|
||||
{
|
||||
name: "PHP",
|
||||
cmd: "php",
|
||||
homepage: "http://php.net/",
|
||||
installation: "http://php.net/manual/en/install.php",
|
||||
version: {
|
||||
parse: function(text) {
|
||||
return text.match(/PHP (\d+\.\d+\.\d+)/)[1];
|
||||
}
|
||||
}
|
||||
}, {
|
||||
name: "PHPCBF",
|
||||
cmd: "phpcbf",
|
||||
homepage: "https://github.com/squizlabs/PHP_CodeSniffer",
|
||||
installation: "https://github.com/squizlabs/PHP_CodeSniffer#installation",
|
||||
version: {
|
||||
parse: function(text) {
|
||||
return text.match(/version (\d+\.\d+\.\d+)/)[1];
|
||||
}
|
||||
},
|
||||
docker: {
|
||||
image: "unibeautify/phpcbf"
|
||||
}
|
||||
}
|
||||
]</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
PHP: {
|
||||
phpcbf_path: true,
|
||||
phpcbf_version: true,
|
||||
standard: true
|
||||
}
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,221 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>PHPCSFixer</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
PHPCSFixer
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/php-cs-fixer.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>'PHP-CS-Fixer'</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/FriendsOfPHP/PHP-CS-Fixer"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'></code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
PHP: {
|
||||
rules: true,
|
||||
cs_fixer_path: true,
|
||||
cs_fixer_version: true,
|
||||
cs_fixer_config_file: true,
|
||||
allow_risky: true,
|
||||
level: true,
|
||||
fixers: true
|
||||
}
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options, context)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options, context)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,233 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>PerlTidy</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
PerlTidy
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/perltidy.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"Perltidy"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"http://perltidy.sourceforge.net/"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='isPreInstalled-variable'>
|
||||
isPreInstalled
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>false</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Perl: true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#cli-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>cli</b><span>(options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='cli-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>cli</b><span>(options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,222 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Prettier</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Prettier
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/prettier.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"Prettier"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/prettier/prettier"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
_: {
|
||||
tabWidth: "indent_size",
|
||||
useTabs: [
|
||||
"indent_with_tabs", "indent_char", function(indent_with_tabs, indent_char) {
|
||||
return (indent_with_tabs === true) || (indent_char === "\t");
|
||||
}
|
||||
]
|
||||
},
|
||||
JavaScript: {
|
||||
bracketSpacing: "object_curly_spacing"
|
||||
},
|
||||
TypeScript: false,
|
||||
CSS: false,
|
||||
LESS: false,
|
||||
SCSS: false,
|
||||
Vue: false,
|
||||
JSON: false,
|
||||
Markdown: false
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options, context)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options, context)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,305 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>PrettyDiff</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
PrettyDiff
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/prettydiff.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"Pretty Diff"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/prettydiff/prettydiff"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
|
||||
/*
|
||||
Apply these options first / globally, for all languages
|
||||
*/
|
||||
_: {
|
||||
inchar: [
|
||||
"indent_with_tabs", "indent_char", function(indent_with_tabs, indent_char) {
|
||||
if (indent_with_tabs === true) {
|
||||
return "\t";
|
||||
} else {
|
||||
return indent_char;
|
||||
}
|
||||
}
|
||||
],
|
||||
insize: [
|
||||
"indent_with_tabs", "indent_size", function(indent_with_tabs, indent_size) {
|
||||
if (indent_with_tabs === true) {
|
||||
return 1;
|
||||
} else {
|
||||
return indent_size;
|
||||
}
|
||||
}
|
||||
],
|
||||
objsort: function(objsort) {
|
||||
return objsort || false;
|
||||
},
|
||||
preserve: [
|
||||
'preserve_newlines', function(preserve_newlines) {
|
||||
if (preserve_newlines === true) {
|
||||
return "all";
|
||||
} else {
|
||||
return "none";
|
||||
}
|
||||
}
|
||||
],
|
||||
cssinsertlines: "newline_between_rules",
|
||||
comments: [
|
||||
"indent_comments", function(indent_comments) {
|
||||
if (indent_comments === false) {
|
||||
return "noindent";
|
||||
} else {
|
||||
return "indent";
|
||||
}
|
||||
}
|
||||
],
|
||||
force: "force_indentation",
|
||||
quoteConvert: "convert_quotes",
|
||||
vertical: [
|
||||
'align_assignments', function(align_assignments) {
|
||||
if (align_assignments === true) {
|
||||
return "all";
|
||||
} else {
|
||||
return "none";
|
||||
}
|
||||
}
|
||||
],
|
||||
wrap: "wrap_line_length",
|
||||
space: "space_after_anon_function",
|
||||
noleadzero: "no_lead_zero",
|
||||
endcomma: "end_with_comma",
|
||||
methodchain: [
|
||||
'break_chained_methods', function(break_chained_methods) {
|
||||
if (break_chained_methods === true) {
|
||||
return false;
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
],
|
||||
ternaryline: "preserve_ternary_lines",
|
||||
bracepadding: "space_in_paren"
|
||||
},
|
||||
|
||||
/*
|
||||
Apply language-specific options
|
||||
*/
|
||||
CSV: true,
|
||||
Coldfusion: true,
|
||||
ERB: true,
|
||||
EJS: true,
|
||||
HTML: true,
|
||||
Handlebars: true,
|
||||
Mustache: true,
|
||||
Nunjucks: true,
|
||||
XML: true,
|
||||
SVG: true,
|
||||
Spacebars: true,
|
||||
JSX: true,
|
||||
JavaScript: true,
|
||||
CSS: true,
|
||||
SCSS: true,
|
||||
JSON: true,
|
||||
TSS: true,
|
||||
Twig: true,
|
||||
LESS: true,
|
||||
Swig: true,
|
||||
"UX Markup": true,
|
||||
Visualforce: true,
|
||||
"Riot.js": true,
|
||||
XTemplate: true,
|
||||
"Golang Template": true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,217 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>PugBeautify</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
PugBeautify
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/pug-beautify.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"Pug Beautify"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/vingorius/pug-beautify"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
|
||||
/*
|
||||
Apply these options first / globally, for all languages
|
||||
*/
|
||||
Jade: {
|
||||
fill_tab: [
|
||||
'indent_char', function(indent_char) {
|
||||
return indent_char === "\t";
|
||||
}
|
||||
],
|
||||
omit_div: true,
|
||||
tab_size: "indent_size"
|
||||
}
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,232 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>PuppetFix</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
PuppetFix
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/puppet-fix.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"puppet-lint"</code></pre>
|
||||
<div class='docstring'>
|
||||
<p>this is what displays as your Default Beautifier in Language Config</p>
|
||||
</div>
|
||||
<div class='tags'>
|
||||
</div>
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"http://puppet-lint.com/"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Puppet: true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>[
|
||||
{
|
||||
name: "puppet-lint",
|
||||
cmd: "puppet-lint",
|
||||
homepage: "http://puppet-lint.com/",
|
||||
installation: "http://puppet-lint.com/",
|
||||
version: {
|
||||
parse: function(text) {
|
||||
return text.match(/puppet-lint (\d+\.\d+\.\d+)/)[1];
|
||||
}
|
||||
},
|
||||
docker: {
|
||||
image: "unibeautify/puppet-lint"
|
||||
}
|
||||
}
|
||||
]</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,213 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>PythonBeautifier</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
PythonBeautifier
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/pybeautifier.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"pybeautifier"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/guyskk/pybeautifier"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='isPreInstalled-variable'>
|
||||
isPreInstalled
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>false</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Python: true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
231
dotfiles/.atom/packages/atom-beautify/docs/code/class/R.html
Normal file
231
dotfiles/.atom/packages/atom-beautify/docs/code/class/R.html
Normal file
|
|
@ -0,0 +1,231 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>R</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
R
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/formatR/index.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"formatR"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/yihui/formatR"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>[
|
||||
{
|
||||
name: "Rscript",
|
||||
cmd: "rscript",
|
||||
homepage: "https://github.com/yihui/formatR",
|
||||
installation: "https://github.com/yihui/formatR",
|
||||
version: {
|
||||
parse: function(text) {
|
||||
return text.match(/version (\d+\.\d+\.\d+) /)[1];
|
||||
},
|
||||
runOptions: {
|
||||
returnStderr: true
|
||||
}
|
||||
},
|
||||
docker: {
|
||||
image: "unibeautify/rscript"
|
||||
}
|
||||
}
|
||||
]</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
R: true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,229 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Remark</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Remark
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/remark.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"Remark"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/remarkjs/remark"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
_: {
|
||||
gfm: true,
|
||||
yaml: true,
|
||||
commonmark: true,
|
||||
footnotes: true,
|
||||
pedantic: true,
|
||||
breaks: true,
|
||||
entities: true,
|
||||
setext: true,
|
||||
closeAtx: true,
|
||||
looseTable: true,
|
||||
spacedTable: true,
|
||||
fence: true,
|
||||
fences: true,
|
||||
bullet: true,
|
||||
listItemIndent: true,
|
||||
incrementListMarker: true,
|
||||
rule: true,
|
||||
ruleRepetition: true,
|
||||
ruleSpaces: true,
|
||||
strong: true,
|
||||
emphasis: true,
|
||||
position: true
|
||||
},
|
||||
Markdown: true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,216 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Rubocop</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Rubocop
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/rubocop.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"Rubocop"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/bbatsov/rubocop"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='isPreInstalled-variable'>
|
||||
isPreInstalled
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>false</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Ruby: {
|
||||
indent_size: true,
|
||||
rubocop_path: true
|
||||
}
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options, context)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options, context)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,216 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>RubyBeautify</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
RubyBeautify
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/ruby-beautify.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"Ruby Beautify"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/erniebrodeur/ruby-beautify"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='isPreInstalled-variable'>
|
||||
isPreInstalled
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>false</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Ruby: {
|
||||
indent_size: true,
|
||||
indent_char: true
|
||||
}
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,213 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Rustfmt</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Rustfmt
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/rustfmt.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"rustfmt"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/rust-lang-nursery/rustfmt"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='isPreInstalled-variable'>
|
||||
isPreInstalled
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>false</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Rust: true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options, context)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options, context)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,234 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>SassConvert</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
SassConvert
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/sass-convert.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"SassConvert"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>[
|
||||
{
|
||||
name: "SassConvert",
|
||||
cmd: "sass-convert",
|
||||
homepage: "http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax",
|
||||
installation: "http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax",
|
||||
version: {
|
||||
parse: function(text) {
|
||||
return text.match(/Sass (\d+\.\d+\.\d+)/)[1];
|
||||
}
|
||||
},
|
||||
docker: {
|
||||
image: "unibeautify/sass-convert"
|
||||
}
|
||||
}
|
||||
]</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
|
||||
/*
|
||||
TODO: Add support for options
|
||||
*/
|
||||
CSS: false,
|
||||
Sass: false,
|
||||
SCSS: false
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options, context)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options, context)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,213 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Sqlformat</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Sqlformat
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/sqlformat.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"sqlformat"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/andialbrecht/sqlparse"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='isPreInstalled-variable'>
|
||||
isPreInstalled
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>false</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
SQL: true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,213 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>StylishHaskell</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
StylishHaskell
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/stylish-haskell.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"stylish-haskell"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/jaspervdj/stylish-haskell"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='isPreInstalled-variable'>
|
||||
isPreInstalled
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>false</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Haskell: true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,228 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Terraformfmt</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Terraformfmt
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/terraformfmt.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"terraformfmt"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://www.terraform.io/docs/commands/fmt.html"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Terraform: false
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>[
|
||||
{
|
||||
name: "Terraform",
|
||||
cmd: "terraform",
|
||||
homepage: "https://www.terraform.io",
|
||||
installation: "https://www.terraform.io",
|
||||
version: {
|
||||
parse: function(text) {
|
||||
return text.match(/Terraform v(\d+\.\d+\.\d+)/)[1];
|
||||
}
|
||||
},
|
||||
docker: {
|
||||
image: "hashicorp/terraform"
|
||||
}
|
||||
}
|
||||
]</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,205 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>TidyMarkdown</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
TidyMarkdown
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/tidy-markdown.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"Tidy Markdown"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/slang800/tidy-markdown"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Markdown: false
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,214 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>TypeScriptFormatter</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
TypeScriptFormatter
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/typescript-formatter.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"TypeScript Formatter"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/vvakame/typescript-formatter"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
TypeScript: {
|
||||
indent_with_tabs: true,
|
||||
tab_width: true,
|
||||
indent_size: true
|
||||
},
|
||||
TSX: {
|
||||
indent_with_tabs: true,
|
||||
tab_width: true,
|
||||
indent_size: true
|
||||
}
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,222 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Uncrustify</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Uncrustify
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/uncrustify/index.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"Uncrustify"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/uncrustify/uncrustify"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'></code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Apex: true,
|
||||
C: true,
|
||||
"C++": true,
|
||||
"C#": true,
|
||||
"Objective-C": true,
|
||||
D: true,
|
||||
Pawn: true,
|
||||
Vala: true,
|
||||
Java: true,
|
||||
Arduino: true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options, context)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options, context)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,227 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>VhdlBeautifier</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
VhdlBeautifier
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/vhdl-beautifier/index.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"VHDL Beautifier"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://www.gnu.org/software/emacs/"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='executables-variable'>
|
||||
executables
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>[
|
||||
{
|
||||
name: "Emacs",
|
||||
cmd: "emacs",
|
||||
homepage: "https://www.gnu.org/software/emacs/",
|
||||
installation: "https://www.gnu.org/software/emacs/",
|
||||
version: {
|
||||
parse: function(text) {
|
||||
return text.match(/Emacs (\d+\.\d+\.\d+)/)[1];
|
||||
}
|
||||
}
|
||||
}
|
||||
]</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
VHDL: {
|
||||
emacs_script_path: true
|
||||
}
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,205 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>VueBeautifier</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
VueBeautifier
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/vue-beautifier.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"Vue Beautifier"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/Glavin001/atom-beautify/blob/master/src/beautifiers/vue-beautifier.coffee"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Vue: true
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
213
dotfiles/.atom/packages/atom-beautify/docs/code/class/Yapf.html
Normal file
213
dotfiles/.atom/packages/atom-beautify/docs/code/class/Yapf.html
Normal file
|
|
@ -0,0 +1,213 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../javascript/application.js'></script>
|
||||
<script src='../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>Yapf</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
Class:
|
||||
Yapf
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers/yapf.coffee</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Inherits:</td>
|
||||
<td>
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Variables Summary</h2>
|
||||
<dl class='constants'>
|
||||
<dt id='name-variable'>
|
||||
name
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"yapf"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='link-variable'>
|
||||
link
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>"https://github.com/google/yapf"</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='isPreInstalled-variable'>
|
||||
isPreInstalled
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>false</code></pre>
|
||||
|
||||
</dd>
|
||||
<dt id='options-variable'>
|
||||
options
|
||||
=
|
||||
</dt>
|
||||
<dd>
|
||||
<pre><code class='coffeescript'>{
|
||||
Python: false
|
||||
}</code></pre>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<h3 class='inherited'>
|
||||
Variable inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#Promise-variable'>Promise</a>
|
||||
<a href='../class/Beautifier.html#name-variable'>name</a>
|
||||
<a href='../class/Beautifier.html#options-variable'>options</a>
|
||||
<a href='../class/Beautifier.html#executables-variable'>executables</a>
|
||||
<a href='../class/Beautifier.html#_exe-variable'>_exe</a>
|
||||
<a href='../class/Beautifier.html#languages-variable'>languages</a>
|
||||
<a href='../class/Beautifier.html#beautify-variable'>beautify</a>
|
||||
<a href='../class/Beautifier.html#logger-variable'>logger</a>
|
||||
</p>
|
||||
<h2>Instance Method Summary</h2>
|
||||
<ul class='summary'>
|
||||
<li>
|
||||
<span class='signature'>
|
||||
<a href='#beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
</a>
|
||||
</span>
|
||||
<span class='desc'>
|
||||
</span>
|
||||
</li>
|
||||
</ul>
|
||||
<h2>
|
||||
<small>Inherited Method Summary</small>
|
||||
<h3 class='inherited'>
|
||||
Methods inherited from
|
||||
<a href='../class/Beautifier.html'>Beautifier</a>
|
||||
</h3>
|
||||
<p class='inherited'>
|
||||
<a href='../class/Beautifier.html#isPreInstalled-dynamic'>#isPreInstalled</a>
|
||||
<a href='../class/Beautifier.html#loadExecutables-dynamic'>#loadExecutables</a>
|
||||
<a href='../class/Beautifier.html#exe-dynamic'>#exe</a>
|
||||
<a href='../class/Beautifier.html#deprecate-dynamic'>#deprecate</a>
|
||||
<a href='../class/Beautifier.html#deprecateOptionForExecutable-dynamic'>#deprecateOptionForExecutable</a>
|
||||
<a href='../class/Beautifier.html#tempFile-dynamic'>#tempFile</a>
|
||||
<a href='../class/Beautifier.html#readFile-dynamic'>#readFile</a>
|
||||
<a href='../class/Beautifier.html#findFile-dynamic'>#findFile</a>
|
||||
<a href='../class/Beautifier.html#getDefaultLineEnding-dynamic'>#getDefaultLineEnding</a>
|
||||
<a href='../class/Beautifier.html#which-dynamic'>#which</a>
|
||||
<a href='../class/Beautifier.html#run-dynamic'>#run</a>
|
||||
<a href='../class/Beautifier.html#setupLogger-dynamic'>#setupLogger</a>
|
||||
</p>
|
||||
</h2>
|
||||
<h2>Instance Method Details</h2>
|
||||
<div class='methods'>
|
||||
<div class='method_details'>
|
||||
<p class='signature' id='beautify-dynamic'>
|
||||
#
|
||||
(void)
|
||||
<b>beautify</b><span>(text, language, options)</span>
|
||||
<br>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
720
dotfiles/.atom/packages/atom-beautify/docs/code/class_list.html
Normal file
720
dotfiles/.atom/packages/atom-beautify/docs/code/class_list.html
Normal file
|
|
@ -0,0 +1,720 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='javascript/application.js'></script>
|
||||
<script src='javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body class='list'>
|
||||
<div class='list tree' id='content'>
|
||||
<h1 class='full_list_header'>Class List</h1>
|
||||
<nav>
|
||||
<a target='_self' href='class_list.html'>
|
||||
Classes
|
||||
</a>
|
||||
<a target='_self' href='file_list.html'>
|
||||
Files
|
||||
</a>
|
||||
<a target='_self' href='method_list.html'>
|
||||
Methods
|
||||
</a>
|
||||
<a target='_self' href='extra_list.html'>
|
||||
Extras
|
||||
</a>
|
||||
</nav>
|
||||
<div id='search'>
|
||||
Search:
|
||||
<input type='text'>
|
||||
</div>
|
||||
<ul>
|
||||
<li>
|
||||
<a href='class/AlignYaml.html' target='main'>
|
||||
AlignYaml
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Autopep8.html' target='main'>
|
||||
Autopep8
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Beautifier.html' target='main'>
|
||||
Beautifier
|
||||
</a>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/BashBeautify.html' target='main'>
|
||||
BashBeautify
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Brittany.html' target='main'>
|
||||
Brittany
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/ClangFormat.html' target='main'>
|
||||
ClangFormat
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Cljfmt.html' target='main'>
|
||||
Cljfmt
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/CoffeeFmt.html' target='main'>
|
||||
CoffeeFmt
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/CoffeeFormatter.html' target='main'>
|
||||
CoffeeFormatter
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Crystal.html' target='main'>
|
||||
Crystal
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/JSBeautify.html' target='main'>
|
||||
JSBeautify
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Dfmt.html' target='main'>
|
||||
Dfmt
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/ElmFormat.html' target='main'>
|
||||
ElmFormat
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/ErlTidy.html' target='main'>
|
||||
ErlTidy
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/ESLintFixer.html' target='main'>
|
||||
ESLintFixer
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Executable.html' target='main'>
|
||||
Executable
|
||||
</a>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/HybridExecutable.html' target='main'>
|
||||
HybridExecutable
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Executable
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/R.html' target='main'>
|
||||
R
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/FortranBeautifier.html' target='main'>
|
||||
FortranBeautifier
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Gherkin.html' target='main'>
|
||||
Gherkin
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/GN.html' target='main'>
|
||||
GN
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Gofmt.html' target='main'>
|
||||
Gofmt
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Goimports.html' target='main'>
|
||||
Goimports
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/HhFormat.html' target='main'>
|
||||
HhFormat
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Hindent.html' target='main'>
|
||||
Hindent
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/HTMLBeautifier.html' target='main'>
|
||||
HTMLBeautifier
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Beautifiers.html' target='main'>
|
||||
Beautifiers
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
EventEmitter
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/JSCSFixer.html' target='main'>
|
||||
JSCSFixer
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/LatexBeautify.html' target='main'>
|
||||
LatexBeautify
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Lua.html' target='main'>
|
||||
Lua
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/MarkoBeautifier.html' target='main'>
|
||||
MarkoBeautifier
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/NginxBeautify.html' target='main'>
|
||||
NginxBeautify
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/OCPIndent.html' target='main'>
|
||||
OCPIndent
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/PerlTidy.html' target='main'>
|
||||
PerlTidy
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/PHPCSFixer.html' target='main'>
|
||||
PHPCSFixer
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/PHPCBF.html' target='main'>
|
||||
PHPCBF
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Prettier.html' target='main'>
|
||||
Prettier
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/PrettyDiff.html' target='main'>
|
||||
PrettyDiff
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/PugBeautify.html' target='main'>
|
||||
PugBeautify
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/PuppetFix.html' target='main'>
|
||||
PuppetFix
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/PythonBeautifier.html' target='main'>
|
||||
PythonBeautifier
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Remark.html' target='main'>
|
||||
Remark
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Rubocop.html' target='main'>
|
||||
Rubocop
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/RubyBeautify.html' target='main'>
|
||||
RubyBeautify
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Rustfmt.html' target='main'>
|
||||
Rustfmt
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/SassConvert.html' target='main'>
|
||||
SassConvert
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Sqlformat.html' target='main'>
|
||||
Sqlformat
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/StylishHaskell.html' target='main'>
|
||||
StylishHaskell
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Terraformfmt.html' target='main'>
|
||||
Terraformfmt
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/TidyMarkdown.html' target='main'>
|
||||
TidyMarkdown
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/TypeScriptFormatter.html' target='main'>
|
||||
TypeScriptFormatter
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Uncrustify.html' target='main'>
|
||||
Uncrustify
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/EmacsVerilogMode.html' target='main'>
|
||||
EmacsVerilogMode
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/VhdlBeautifier.html' target='main'>
|
||||
VhdlBeautifier
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/VueBeautifier.html' target='main'>
|
||||
VueBeautifier
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Yapf.html' target='main'>
|
||||
Yapf
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
Beautifier
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/Languages.html' target='main'>
|
||||
Languages
|
||||
</a>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
<li>
|
||||
<a href='class/LoadingView.html' target='main'>
|
||||
LoadingView
|
||||
</a>
|
||||
<small class='parent'>
|
||||
<
|
||||
View
|
||||
</small>
|
||||
<small class='namespace'>
|
||||
|
||||
</small>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
File diff suppressed because it is too large
Load Diff
1042
dotfiles/.atom/packages/atom-beautify/docs/code/extra/README.md.html
Normal file
1042
dotfiles/.atom/packages/atom-beautify/docs/code/extra/README.md.html
Normal file
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,46 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='javascript/application.js'></script>
|
||||
<script src='javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body class='list'>
|
||||
<div class='list tree' id='content'>
|
||||
<h1 class='full_list_header'>File List</h1>
|
||||
<nav>
|
||||
<a target='_self' href='class_list.html'>
|
||||
Classes
|
||||
</a>
|
||||
<a target='_self' href='file_list.html'>
|
||||
Files
|
||||
</a>
|
||||
<a target='_self' href='method_list.html'>
|
||||
Methods
|
||||
</a>
|
||||
<a target='_self' href='extra_list.html'>
|
||||
Extras
|
||||
</a>
|
||||
</nav>
|
||||
<div id='search'>
|
||||
Search:
|
||||
<input type='text'>
|
||||
</div>
|
||||
<ul>
|
||||
<li>
|
||||
<a href='extra/README.md.html' target='main'>
|
||||
README.md
|
||||
</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href='extra/CHANGELOG.md.html' target='main'>
|
||||
CHANGELOG.md
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,123 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../../../javascript/application.js'></script>
|
||||
<script src='../../../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../../../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../../../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../../../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../../../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>src</span>
|
||||
»
|
||||
<span class='title'>beautifiers</span>
|
||||
»
|
||||
<span class='title'>align-yaml.coffee</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
File:
|
||||
align-yaml.coffee
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Classes:
|
||||
</td>
|
||||
<td>
|
||||
<a href='../../../class/AlignYaml.html'>
|
||||
AlignYaml
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,123 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../../../javascript/application.js'></script>
|
||||
<script src='../../../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../../../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../../../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../../../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../../../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>src</span>
|
||||
»
|
||||
<span class='title'>beautifiers</span>
|
||||
»
|
||||
<span class='title'>autopep8.coffee</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
File:
|
||||
autopep8.coffee
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Classes:
|
||||
</td>
|
||||
<td>
|
||||
<a href='../../../class/Autopep8.html'>
|
||||
Autopep8
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,123 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../../../javascript/application.js'></script>
|
||||
<script src='../../../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../../../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../../../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../../../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../../../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>src</span>
|
||||
»
|
||||
<span class='title'>beautifiers</span>
|
||||
»
|
||||
<span class='title'>bash-beautify.coffee</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
File:
|
||||
bash-beautify.coffee
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Classes:
|
||||
</td>
|
||||
<td>
|
||||
<a href='../../../class/BashBeautify.html'>
|
||||
BashBeautify
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,123 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../../../javascript/application.js'></script>
|
||||
<script src='../../../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../../../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../../../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../../../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../../../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>src</span>
|
||||
»
|
||||
<span class='title'>beautifiers</span>
|
||||
»
|
||||
<span class='title'>beautifier.coffee</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
File:
|
||||
beautifier.coffee
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Classes:
|
||||
</td>
|
||||
<td>
|
||||
<a href='../../../class/Beautifier.html'>
|
||||
Beautifier
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,123 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../../../javascript/application.js'></script>
|
||||
<script src='../../../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../../../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../../../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../../../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../../../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>src</span>
|
||||
»
|
||||
<span class='title'>beautifiers</span>
|
||||
»
|
||||
<span class='title'>beautifysh.coffee</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
File:
|
||||
beautifysh.coffee
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Classes:
|
||||
</td>
|
||||
<td>
|
||||
<a href='../../../class/BashBeautify.html'>
|
||||
BashBeautify
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,123 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../../../javascript/application.js'></script>
|
||||
<script src='../../../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../../../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../../../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../../../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../../../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>src</span>
|
||||
»
|
||||
<span class='title'>beautifiers</span>
|
||||
»
|
||||
<span class='title'>beautysh.coffee</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
File:
|
||||
beautysh.coffee
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Classes:
|
||||
</td>
|
||||
<td>
|
||||
<a href='../../../class/BashBeautify.html'>
|
||||
BashBeautify
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,123 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='UTF-8'>
|
||||
<title>Atom-Beautify Documentation</title>
|
||||
<script src='../../../javascript/application.js'></script>
|
||||
<script src='../../../javascript/search.js'></script>
|
||||
<link rel='stylesheet' href='../../../stylesheets/application.css' type='text/css'>
|
||||
</head>
|
||||
<body>
|
||||
<div id='base' data-path='../../../'></div>
|
||||
<div id='header'>
|
||||
<div id='menu'>
|
||||
<a href='../../../extra/README.md.html' title='Atom-Beautify'>
|
||||
Atom-Beautify
|
||||
</a>
|
||||
»
|
||||
<a href='../../../alphabetical_index.html' title='Index'>
|
||||
Index
|
||||
</a>
|
||||
»
|
||||
<span class='title'>src</span>
|
||||
»
|
||||
<span class='title'>beautifiers</span>
|
||||
»
|
||||
<span class='title'>brittany.coffee</span>
|
||||
</div>
|
||||
</div>
|
||||
<div id='content'>
|
||||
<h1>
|
||||
File:
|
||||
brittany.coffee
|
||||
</h1>
|
||||
<table class='box'>
|
||||
<tr>
|
||||
<td>Defined in:</td>
|
||||
<td>src/beautifiers</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Classes:
|
||||
</td>
|
||||
<td>
|
||||
<a href='../../../class/Brittany.html'>
|
||||
Brittany
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div id='footer'>
|
||||
By
|
||||
<a href='https://github.com/coffeedoc/codo' title='CoffeeScript API documentation generator'>
|
||||
Codo
|
||||
</a>
|
||||
2.1.2
|
||||
✲
|
||||
Press H to see the keyboard shortcuts
|
||||
✲
|
||||
<a href='http://twitter.com/netzpirat' target='_parent'>@netzpirat</a>
|
||||
✲
|
||||
<a href='http://twitter.com/_inossidabile' target='_parent'>@_inossidabile</a>
|
||||
</div>
|
||||
<iframe id='search_frame'></iframe>
|
||||
<div id='fuzzySearch'>
|
||||
<input type='text'>
|
||||
<ol></ol>
|
||||
</div>
|
||||
<div id='help'>
|
||||
<p>
|
||||
Quickly fuzzy find classes, mixins, methods, file:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>T</span>
|
||||
Open fuzzy finder dialog
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
Control the navigation frame:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>L</span>
|
||||
Toggle list view
|
||||
</li>
|
||||
<li>
|
||||
<span>C</span>
|
||||
Show class list
|
||||
</li>
|
||||
<li>
|
||||
<span>I</span>
|
||||
Show mixin list
|
||||
</li>
|
||||
<li>
|
||||
<span>F</span>
|
||||
Show file list
|
||||
</li>
|
||||
<li>
|
||||
<span>M</span>
|
||||
Show method list
|
||||
</li>
|
||||
<li>
|
||||
<span>E</span>
|
||||
Show extras list
|
||||
</li>
|
||||
</ul>
|
||||
<p>
|
||||
You can focus and blur the search input:
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<span>S</span>
|
||||
Focus search input
|
||||
</li>
|
||||
<li>
|
||||
<span>Esc</span>
|
||||
Blur search input
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user