From 4fc7c724a54a90dbbc800edabfdb1f2e610d4a0f Mon Sep 17 00:00:00 2001 From: Jan-Cornelius Molnar Date: Mon, 1 Jun 2015 23:29:06 +0200 Subject: [PATCH] updated docs. --- docs/options.md | 49 ++++++++ package.json | 309 ++++++++++++++++++++++-------------------------- 2 files changed, 193 insertions(+), 165 deletions(-) diff --git a/docs/options.md b/docs/options.md index da25b2d..e109d97 100644 --- a/docs/options.md +++ b/docs/options.md @@ -162,6 +162,24 @@ Retain empty lines. Consecutive empty lines will be converted to a single empty **Description**: Path to uncrustify config file. i.e. uncrustify.cfg (Supported by Uncrustify) +### Fortran - Emacs path + +**Key**: `fortran_emacs_path` + +**Type**: `string` + +**Description**: + +Path to the `emacs` executable (Supported by Fortran Beautifier) +### Fortran - Emacs script path + +**Key**: `fortran_emacs_script_path` + +**Type**: `string` + +**Description**: + +Path to the emacs script (Supported by Fortran Beautifier) ### HTML - Indent inner html **Key**: `html_indent_inner_html` @@ -924,6 +942,37 @@ Default Beautifier to be used for Go **Description**: Automatically beautify Go files on save +### Language Config - Fortran - Disable Beautifying Language + +**Key**: `language_fortran_disabled` + +**Type**: `boolean` + +**Description**: + +Disable Fortran Beautification +### Language Config - Fortran - Default Beautifier + +**Key**: `language_fortran_default_beautifier` + +**Default**: `Fortran Beautifier` + +**Type**: `string` + +**Enum**: `Fortran Beautifier` + +**Description**: + +Default Beautifier to be used for Fortran +### Language Config - Fortran - Beautify On Save + +**Key**: `language_fortran_beautify_on_save` + +**Type**: `boolean` + +**Description**: + +Automatically beautify Fortran files on save ### Language Config - Handlebars - Disable Beautifying Language **Key**: `language_handlebars_disabled` diff --git a/package.json b/package.json index eb9f415..9a93454 100644 --- a/package.json +++ b/package.json @@ -1,173 +1,152 @@ { - "name": "atom-beautify", - "main": "./src/beautify", - "version": "0.27.9", - "private": true, - "description": "Beautify HTML, CSS, JavaScript, PHP, Python, Ruby, Java, C, C++, C#, Objective-C, CoffeeScript, TypeScript, and SQL in Atom", - "repository": { - "type": "git", - "url": "https://github.com/Glavin001/atom-beautify" + "name": "atom-beautify", + "main": "./src/beautify", + "version": "0.27.9", + "private": true, + "description": "Beautify HTML, CSS, JavaScript, PHP, Python, Ruby, Java, C, C++, C#, Objective-C, CoffeeScript, TypeScript, and SQL in Atom", + "repository": { + "type": "git", + "url": "https://github.com/Glavin001/atom-beautify" + }, + "bugs": { + "url": "https://github.com/Glavin001/atom-beautify/issues" + }, + "license": "MIT", + "author": { + "name": "Glavin Wiechert", + "email": "glavin.wiechert@gmail.com", + "url": "https://github.com/Glavin001" + }, + "contributors": [ + { + "name": "Donald Pipowitch", + "email": "pipo@senaeh.de", + "url": "https://github.com/donaldpipowitch" }, - "bugs": { - "url": "https://github.com/Glavin001/atom-beautify/issues" + { + "name": "László Károlyi", + "url": "https://github.com/karolyi" }, - "license": "MIT", - "author": { - "name": "Glavin Wiechert", - "email": "glavin.wiechert@gmail.com", - "url": "https://github.com/Glavin001" + { + "name": "Marco Tanzi", + "url": "https://github.com/mtanzi" }, - "contributors": [{ - "name": "Donald Pipowitch", - "email": "pipo@senaeh.de", - "url": "https://github.com/donaldpipowitch" - }, { - "name": "László Károlyi", - "url": "https://github.com/karolyi" - }, { - "name": "Marco Tanzi", - "url": "https://github.com/mtanzi" - }, { - "name": "gvn lazar suntop", - "url": "https://github.com/gvn" - }, { - "name": "Vadim K.", - "url": "https://github.com/vadirn" - }, { - "name": "Filipe Silva", - "url": "https://github.com/filipesilva" - }, { - "name": "Ramón Cahenzli", - "url": "https://github.com/psy-q" - }], - "engines": { - "atom": ">=0.174.0 <2.0.0" + { + "name": "gvn lazar suntop", + "url": "https://github.com/gvn" }, - "dependencies": { - "analytics-node": "^1.2.2", - "async": "^1.0.0", - "atom-message-panel": "^1.2.4", - "atom-space-pen-views": "^2.0.5", - "bluebird": "^2.9.26", - "coffee-fmt": "0.10.2", - "coffee-formatter": "^0.1.2", - "csscomb": "^3.1.5", - "diff": "^1.4.0", - "editorconfig": "^0.12.2", - "emissary": "^1.3.3", - "event-kit": "^1.2.0", - "expand-home-dir": "0.0.2", - "extend": "^2.0.1", - "js-beautify": "^1.5.6", - "lodash": "3.9.3", - "loophole": "^1.0.0", - "node-dir": "^0.1.8", - "node-uuid": "^1.4.3", - "prettydiff": "^1.11.21", - "space-pen": "^5.1.1", - "strip-json-comments": "^1.0.2", - "temp": "^0.8.1", - "tidy-markdown": "^0.3.2", - "typescript-formatter": "~0.3.2", - "underscore-plus": "^1.6.6", - "winston": "^1.0.0", - "yaml-front-matter": "^3.2.3" + { + "name": "Vadim K.", + "url": "https://github.com/vadirn" }, - "activationCommands": { - "atom-workspace": [ - "atom-beautify:help-debug-editor", - "atom-beautify:beautify-editor", - "core:save", - "core:save-as" - ], - ".tree-view .file .name": [ - "atom-beautify:beautify-file" - ], - ".tree-view .directory .name": [ - "atom-beautify:beautify-directory" - ] + { + "name": "Filipe Silva", + "url": "https://github.com/filipesilva" }, - "keywords": [ - "atom", - "beautify", - "beautifier", - "js-beautify", - "format", - "pretty", - "html", - "handlebars", - "mustache", - "xml", - "css", - "javascript", - "json", - "css", - "sass", - "scss", - "less", - "sql", - "markdown", - "php", - "python", - "ruby", - "coffeescript", - "typescript", - "c", - "c++", - "cpp", - "objective-c", - "c-sharp", - "c#", - "uncrustify", - "java", - "pawn", - "vala", - "d", - "erb", - "editorconfig", - "yaml", - "front matter", - "jekyll", - "marko", - "go", - "golang" - ], - "dependencies": { - "analytics-node": "^1.2.2", - "async": "^1.0.0", - "atom-message-panel": "^1.2.4", - "atom-space-pen-views": "^2.0.5", - "bluebird": "^2.9.26", - "coffee-fmt": "0.10.2", - "coffee-formatter": "^0.1.2", - "csscomb": "^3.1.5", - "diff": "^1.4.0", - "editorconfig": "^0.12.2", - "emissary": "^1.3.3", - "event-kit": "^1.2.0", - "expand-home-dir": "0.0.2", - "extend": "^2.0.1", - "js-beautify": "^1.5.6", - "lodash": "3.9.3", - "loophole": "^1.0.0", - "node-dir": "^0.1.8", - "node-uuid": "^1.4.3", - "prettydiff": "^1.11.21", - "space-pen": "^5.1.1", - "strip-json-comments": "^1.0.2", - "temp": "^0.8.1", - "tidy-markdown": "^0.3.2", - "typescript-formatter": "~0.3.2", - "underscore-plus": "^1.6.6", - "winston": "^1.0.0", - "yaml-front-matter": "^3.2.3" - }, - "devDependencies": { - "coffee-script": "^1.9.3", - "handlebars": "^3.0.3" - }, - "scripts": { - "prepublish": "npm run docs", - "docs": "coffee docs/" + { + "name": "Ramón Cahenzli", + "url": "https://github.com/psy-q" } -} \ No newline at end of file + ], + "engines": { + "atom": ">=0.174.0 <2.0.0" + }, + "dependencies": { + "analytics-node": "^1.2.2", + "async": "^1.1.0", + "atom-message-panel": "^1.2.4", + "atom-space-pen-views": "^2.0.5", + "bluebird": "^2.9.26", + "coffee-fmt": "0.10.2", + "coffee-formatter": "^0.1.2", + "csscomb": "^3.1.5", + "diff": "^1.4.0", + "editorconfig": "^0.12.2", + "emissary": "^1.3.3", + "event-kit": "^1.2.0", + "expand-home-dir": "0.0.2", + "extend": "^2.0.1", + "handlebars": "^3.0.3", + "js-beautify": "^1.5.6", + "lodash": "3.9.3", + "loophole": "^1.0.0", + "node-dir": "^0.1.8", + "node-uuid": "^1.4.3", + "prettydiff": "^1.11.21", + "space-pen": "^5.1.1", + "strip-json-comments": "^1.0.2", + "temp": "^0.8.1", + "tidy-markdown": "^0.3.2", + "typescript-formatter": "~0.3.2", + "underscore-plus": "^1.6.6", + "winston": "^1.0.0", + "yaml-front-matter": "^3.2.3" + }, + "activationCommands": { + "atom-workspace": [ + "atom-beautify:help-debug-editor", + "atom-beautify:beautify-editor", + "core:save", + "core:save-as" + ], + ".tree-view .file .name": [ + "atom-beautify:beautify-file" + ], + ".tree-view .directory .name": [ + "atom-beautify:beautify-directory" + ] + }, + "keywords": [ + "atom", + "beautify", + "beautifier", + "js-beautify", + "format", + "pretty", + "html", + "handlebars", + "mustache", + "xml", + "css", + "javascript", + "json", + "css", + "sass", + "scss", + "less", + "sql", + "markdown", + "php", + "python", + "ruby", + "coffeescript", + "typescript", + "c", + "c++", + "cpp", + "objective-c", + "c-sharp", + "c#", + "uncrustify", + "java", + "pawn", + "vala", + "d", + "erb", + "editorconfig", + "yaml", + "front matter", + "jekyll", + "marko", + "go", + "golang" + ], + "devDependencies": { + "coffee-script": "^1.9.3", + "handlebars": "^3.0.3" + }, + "scripts": { + "prepublish": "npm run docs", + "docs": "coffee docs/" + } +}