automatic update by http://atom.io/packages/sync-settings
/*
* Your Stylesheet
*
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed and saved.
*
* Add your own CSS or Less to fully customize Atom.
* If you are unfamiliar with Less, you can read more about it here:
* http://lesscss.org
*/
/*
* Examples
* (To see them, uncomment and save)
*/
// style the background color of the tree view
.tree-view {
// background-color: whitesmoke;
}
// style the background and foreground colors on the atom-text-editor-element itself
atom-text-editor {
// color: white;
// background-color: hsl(180, 24%, 12%);
}
// To style other content in the text editor's shadow DOM, use the ::shadow expression
atom-text-editor::shadow .cursor {
// border-color: red;
}
# Your snippets
#
# Atom snippets allow you to enter a simple prefix in the editor and hit tab to
# expand the prefix into a larger code block with templated values.
#
# You can create a new snippet in this file by typing "snip" and then hitting
# tab.
#
# An example CoffeeScript snippet to expand log to console.log:
#
# '.source.coffee':
# 'Console log':
# 'prefix': 'log'
# 'body': 'console.log $1'
#
# Each scope (e.g. '.source.coffee' above) can only be declared once.
#
# This file uses CoffeeScript Object Notation (CSON).
# If you are unfamiliar with CSON, you can read more about it in the
# Atom Flight Manual:
# https://atom.io/docs/latest/using-atom-basic-customization#cson
#
# ------------------------------------------------------------------------------
'.text.html, .text.html .meta.scope.between-tag-pair, .text.html .punctuation.tag.begin':
# A
'Anchor':
'prefix': 'a'
'body': '<a href="${1:#}">$2</a>$0'
'Abbreviation':
'prefix': 'abbr'
'body': '<abbr title="$1">$2</abbr>$0'
'Address':
'prefix': 'address'
'body': '<address ${1:class="$2"}>\n\t$3\n</address>'
'Area':
'prefix': 'area'
'body': '<area ${1:shape="${2:default}"} coords="$3" ${4:href="${5:#}"} />$0'
'Article':
'prefix': 'article'
'body': '<article class="$1">\n\t$2\n</article>'
'Aside':
'prefix': 'aside'
'body': '<aside class="$1">\n\t$2\n</aside>'
'Audio':
'prefix': 'audio'
'body': '<audio src="$1">\n\t$2\n</audio>'
# B
'Body':
'prefix': 'body'
'body': '<body>\n\t$1\n</body>'
'Bold':
'prefix': 'b'
'body': '<b>$1</b>$0'
'Base':
'prefix': 'base'
'body': '<base href="${1:#}" target="${2:_blank}" />$0'
'Bi-Directional Isolation':
'prefix': 'bdi'
'body': '<bdi dir="${1:auto}">$2</bdi>$0'
'Bi-Directional Override':
'prefix': 'bdo'
'body': '<bdo dir="${1:auto}">$2</bdo>$0'
'Blockquote':
'prefix': 'blockquote'
'body': '<blockquote cite="${1:http://}">\n\t$2\n</blockquote>'
'Line Breaker':
'prefix': 'br'
'body': '<br>'
'Button':
'prefix': 'button'
'body': '<button type="${1:button}"${2: name="${3:button}"}>$4</button>$0'
# C
'Canvas':
'prefix': 'canvas'
'body': '<canvas id="${1:canvas}" width="${2:300}" height="${3:300}">$4</canvas>$0'
'Caption':
'prefix': 'caption'
'body': '<caption>$1</caption>$0'
'Citation':
'prefix': 'cite'
'body': '<cite>$1</cite>$0'
'Code':
'prefix': 'code'
'body': '<code>$1</code>$0'
'Column':
'prefix': 'col'
'body': '<col>$1</col>$0'
'Column Group':
'prefix': 'colgroup'
'body': '<colgroup>$1</colgroup>$0'
'Content':
'prefix': 'content'
'body': '<content select="$1">$2</content>$0'
'Comment':
'prefix': '--'
'body': '<!-- $1 -->$0'
# D
'HTML — 5':
'prefix': 'doctype'
'body': '<!DOCTYPE html>\n'
'Data':
'prefix': 'data'
'body': '<data value="$1">$2</data>$0'
'Data List':
'prefix': 'datalist'
'body': '<datalist class="$1">\n\t$2\n</datalist>'
'Description':
'prefix': 'dd'
'body': '<dd>$1</dd>$0'
'Deleted Text':
'prefix': 'del'
'body': '<del>$1</del>$0'
'Details':
'prefix': 'details'
'body': '<details ${1:open}>$2</details>$0'
'Definition':
'prefix': 'dfn'
'body': '<dfn>$1</dfn>$0'
'Description List':
'prefix': 'dl'
'body': '<dl class="$1">\n\t$2\n</dl>'
'Definition Term':
'prefix': 'dt'
'body': '<dt>$1</dt>$0'
'Div':
'prefix': 'div'
'body': '<div class="$2">\n\t$3\n</div>'
# E
'Emphasis':
'prefix': 'em'
'body': '<em>$1</em>$0'
'Embed':
'prefix': 'embed'
'body': '<embed type="${1:video/quicktime}" src="${2:#}" width="${3:300}" height="${4:300}">$0'
# F
'Favicon':
'prefix': 'favicon'
'body': '<link rel="shortcut icon" href="$1.ico">$0'
'Fieldset':
'prefix': 'fieldset'
'body': '<fieldset>$1</fieldset>$0'
'Figure Caption':
'prefix': 'figcaption'
'body': '<figcaption>$1</figcaption>$0'
'Figure':
'prefix': 'figure'
'body': '<figure>$1</figure>$0'
'Footer':
'prefix': 'footer'
'body': '<footer>$1</footer>$0'
'Form':
'prefix': 'form'
'body': '<form class="$1" action="${2:index.html}" method="${3:post}">\n\t$4\n</form>'
# G
# H
'Heading 1':
'prefix': 'h1'
'body': '<h1>$1</h1>$0'
'Heading 2':
'prefix': 'h2'
'body': '<h2>$1</h2>$0'
'Heading 3':
'prefix': 'h3'
'body': '<h3>$1</h3>$0'
'Heading 4':
'prefix': 'h4'
'body': '<h4>$1</h4>$0'
'Heading 5':
'prefix': 'h5'
'body': '<h5>$1</h5>$0'
'Heading 6':
'prefix': 'h6'
'body': '<h6>$1</h6>$0'
'Head':
'prefix': 'head'
'body': '<head>\n\t$1\n</head>'
'Header':
'prefix': 'header'
'body': '<header>\n\t$1\n</header>'
'Horizontal Rule':
'prefix': 'hr'
'body': '<hr>'
'HTML':
'prefix': 'html'
'body': '<!DOCTYPE html>\n<html>\n\t<head>\n\t\t<meta charset="utf-8">\n\t\t<title>$1</title>\n\t</head>\n\t<body>\n\t\t$2\n\t</body>\n</html>'
# I
'Italic':
'prefix': 'i'
'body': '<i>$1</i>$0'
'Inline Frame':
'prefix': 'iframe'
'body': '<iframe src="$1" width="$2" height="$3">$4</iframe>$0'
'Input':
'prefix': 'input'
'body': '<input type="${1:button}" name="${2:name}" value="$3">$0'
'Image':
'prefix': 'img'
'body': '<img src="$1" alt="$2" />$0'
'Import':
'prefix': 'import'
'body': '<link rel="import" href="$1">$0'
'Inserted Text':
'prefix': 'ins'
'body': '<ins>$1</ins>$0'
# J
# K
'Keyboard Input':
'prefix': 'kbd'
'body': '<kbd>$1</kbd>$0'
'Keygen':
'prefix': 'keygen'
'body': '<keygen name="${1:name}" challenge="${2:string}" keytype="${3:RSA}" keyparams="${4:medium}">$0'
# L
'Label':
'prefix': 'label'
'body': '<label${1: for="$2"}>$3</label>$0'
'Legend':
'prefix': 'legend'
'body': '<legend>$1</legend>$0'
'List Item':
'prefix': 'li'
'body': '<li>$1</li>$0'
'Link':
'prefix': 'link'
'body': '<link rel="${1:stylesheet}" href="${2:/css/master.css}" media="${3:screen}" title="${4:no title}" charset="${5:utf-8}">$0'
# M
'Main':
'prefix': 'main'
'body': '<main>\n\t$1\n</main>'
'Map':
'prefix': 'map'
'body': '<map>\n\t$1\n</map>'
'Mark':
'prefix': 'mark'
'body': '<mark>$1</mark>$0'
'Menu':
'prefix': 'menu'
'body': '<menu>\n\t$1\n</menu>'
'Menu Item':
'prefix': 'menuitem'
'body': '<menuitem type="${1:command}" label="${2:Save}">$0'
'Meter':
'prefix': 'meter'
'body': '<meter min="${1:200}" max="${2:500}" value="${3:350}">$0'
'Mail Anchor':
'prefix': 'mailto'
'body': '<a href="mailto:${1:joe@example.com}?subject=${2:feedback}">${3:email me}</a>$0'
'Meta':
'prefix': 'meta'
'body': '<meta name="${1:name}" content="${2:content}">$0'
# N
'Navigation':
'prefix': 'nav'
'body': '<nav>\n\t$1\n</nav>'
'Noscript':
'prefix': 'noscript'
'body': '<noscript>\n\t$1\n</noscript>'
# O
'Object':
'prefix': 'object'
'body': '<object data="${1:http://}" type="${2:mimetype}">$3</object>$0'
'Ordered List':
'prefix': 'ol'
'body': '<ol>\n\t$1\n</ol>'
'Option Group':
'prefix': 'optgroup'
'body': '<optgroup label="${1:Group 1}">\n\t$2\n</optgroup>'
'Option':
'prefix': 'opt'
'body': '<option${1: value="${2:option}"}>${3:option}</option>$0'
'Output':
'prefix': 'output'
'body': '<output name="${1:result}">$2</output>$0'
# P
'Paragraph':
'prefix': 'p'
'body': '<p>\n\t$1\n</p>'
'Parameter':
'prefix': 'param'
'body': '<param name="${1:foo}" value="${2:bar}">$0'
'Preformatted Text':
'prefix': 'pre'
'body': '<pre>\n\t$1\n</pre>'
'Progress':
'prefix': 'progress'
'body': '<progress value="${1:50}" max="${2:100}">${3:50%}</progress>$0'
# Q
'Quote':
'prefix': 'q'
'body': '<q cite="$1">$2</q>$0'
# R
'Ruby Base':
'prefix': 'rb'
'body': '<rb>$1</rb>$0'
'Ruby Parenthesis':
'prefix': 'rp'
'body': '<rp>$1</rp>$0'
'Ruby Pronunciation':
'prefix': 'rt'
'body': '<rt>$1</rt>$0'
'Ruby Text Container':
'prefix': 'rtc'
'body': '<rtc>$1</rtc>$0'
'Ruby Annotation':
'prefix': 'ruby'
'body': '<ruby>$1</ruby>$0'
# S
'Strikethrough':
'prefix': 's'
'body': '<s>$1</s>$0'
'Sample Output':
'prefix': 'samp'
'body': '<samp>$1</samp>$0'
'Script':
'prefix': 'script'
'body': '<script${1: type="${2:text/javascript}"}>\n\t$3\n</script>'
'Script With External Source':
'prefix': 'scriptsrc'
'body': '<script src="$1" charset="${2:utf-8}"></script>$0'
'Section':
'prefix': 'section'
'body': '<section>\n\t$1\n</section>'
'Select':
'prefix': 'select'
'body': '<select class="$1" name="$2">\n\t$3\n</select>'
'Small':
'prefix': 'small'
'body': '<small>$1</small>$0'
'Source':
'prefix': 'source'
'body': '<source src="${1:http://}" type="${2:mimetype}">$0'
'Span':
'prefix': 'span'
'body': '<span>$1</span>$0'
'Strong':
'prefix': 'strong'
'body': '<strong>$1</strong>$0'
'Style':
'prefix': 'style'
'body': '<style media="screen">\n\t$1\n</style>'
'Subscript':
'prefix': 'sub'
'body': '<sub>$1</sub>$0'
'Summary':
'prefix': 'summary'
'body': '<summary>$1</summary>$0'
'Superscript':
'prefix': 'sup'
'body': '<sup>$1</sup>$0'
# T
'Table':
'prefix': 'table'
'body': '<table>\n\t$1\n</table>'
'Table Body':
'prefix': 'tbody'
'body': '<tbody>\n\t$1\n</tbody>'
'Table Cell':
'prefix': 'td'
'body': '<td>\n\t$1\n</td>'
'Template':
'prefix': 'template'
'body': '<template id="$1">\n\t$2\n</template>'
'Text Area':
'prefix': 'textarea'
'body': '<textarea name="${1:name}" rows="${2:8}" cols="${3:40}">$4</textarea>$0'
'Table Foot':
'prefix': 'tfoot'
'body': '<tfoot>\n\t$1\n</tfoot>'
'Table Header Cell':
'prefix': 'th'
'body': '<th>\n\t$1\n</th>'
'Table Head':
'prefix': 'thead'
'body': '<thead>\n\t$1\n</thead>'
'Time':
'prefix': 'time'
'body': '<time>$1</time>$0'
'Title':
'prefix': 'title'
'body': '<title>${1:Page Title}</title>$0'
'Table Row':
'prefix': 'tr'
'body': '<tr>\n\t$1\n</tr>'
'Track':
'prefix': 'track'
'body': '<track kind="${1:subtitles}" src="${2:sampleSubtitles_en.srt}" srclang="${3:en}">$0'
# U
'Underline':
'prefix': 'u'
'body': '<u>$1</u>$0'
'Unordered List':
'prefix': 'ul'
'body': '<ul>\n\t$1\n</ul>'
# V
'Variable':
'prefix': 'var'
'body': '<var>$1</var>$0'
'Video':
'prefix': 'video'
'body': '<video src="${1:videofile.ogg}" ${2:autoplay} ${3:poster="${4:posterimage.jpg}"}>\n\t$5\n</video>'
# W
'Word Break Opportunity':
'prefix': 'wbr'
'body': '<wbr>'
# These null out the snippets so the snippets are not available when in a tag or
# in embedded contexts like <script> and <style>
'.text.html .meta.tag, .text.html .embedded':
# A
'Anchor':
'prefix': 'a'
'Abbreviation':
'prefix': 'abbr'
'Address':
'prefix': 'address'
'Area':
'prefix': 'area'
'Article':
'prefix': 'article'
'Aside':
'prefix': 'aside'
'Audio':
'prefix': 'audio'
# B
'Body':
'prefix': 'body'
'Bold':
'prefix': 'b'
'Base':
'prefix': 'base'
'Bi-Directional Isolation':
'prefix': 'bdi'
'Bi-Directional Override':
'prefix': 'bdo'
'Blockquote':
'prefix': 'blockquote'
'Line Breaker':
'prefix': 'br'
'Button':
'prefix': 'button'
# C
'Canvas':
'prefix': 'canvas'
'Caption':
'prefix': 'caption'
'Citation':
'prefix': 'cite'
'Code':
'prefix': 'code'
'Column':
'prefix': 'col'
'Column Group':
'prefix': 'colgroup'
'Content':
'prefix': 'content'
'Comment':
'prefix': '--'
# D
'HTML — 5':
'prefix': 'doctype'
'Data':
'prefix': 'data'
'Data List':
'prefix': 'datalist'
'Description':
'prefix': 'dd'
'Deleted Text':
'prefix': 'del'
'Details':
'prefix': 'details'
'Definition':
'prefix': 'dfn'
'Description List':
'prefix': 'dl'
'Definition Term':
'prefix': 'dt'
'Div':
'prefix': 'div'
# E
'Emphasis':
'prefix': 'em'
'Embed':
'prefix': 'embed'
# F
'Fieldset':
'prefix': 'fieldset'
'Figure Caption':
'prefix': 'figcaption'
'Figure':
'prefix': 'figure'
'Footer':
'prefix': 'footer'
'Form':
'prefix': 'form'
# G
# H
'Heading 1':
'prefix': 'h1'
'Heading 2':
'prefix': 'h2'
'Heading 3':
'prefix': 'h3'
'Heading 4':
'prefix': 'h4'
'Heading 5':
'prefix': 'h5'
'Heading 6':
'prefix': 'h6'
'Head':
'prefix': 'head'
'Header':
'prefix': 'header'
'Horizontal Rule':
'prefix': 'hr'
'HTML':
'prefix': 'html'
# I
'Italic':
'prefix': 'i'
'Inline Frame':
'prefix': 'iframe'
'Input':
'prefix': 'input'
'Image':
'prefix': 'img'
'Inserted Text':
'prefix': 'ins'
# J
# K
'Keyboard Input':
'prefix': 'kbd'
'Keygen':
'prefix': 'keygen'
# L
'Label':
'prefix': 'label'
'Legend':
'prefix': 'legend'
'List Item':
'prefix': 'li'
'Link':
'prefix': 'link'
# M
'Main':
'prefix': 'main'
'Map':
'prefix': 'map'
'Mark':
'prefix': 'mark'
'Menu':
'prefix': 'menu'
'Menu Item':
'prefix': 'menuitem'
'Meter':
'prefix': 'meter'
'Mail Anchor':
'prefix': 'mailto'
'Meta':
'prefix': 'meta'
# N
'Navigation':
'prefix': 'nav'
'Noscript':
'prefix': 'noscript'
# O
'Object':
'prefix': 'object'
'Ordered List':
'prefix': 'ol'
'Option Group':
'prefix': 'optgroup'
'Option':
'prefix': 'opt'
'Output':
'prefix': 'output'
# P
'Paragraph':
'prefix': 'p'
'Parameter':
'prefix': 'param'
'Preformatted Text':
'prefix': 'pre'
'Progress':
'prefix': 'progress'
# Q
'Quote':
'prefix': 'q'
# R
'Ruby Parenthesis':
'prefix': 'rp'
'Ruby Pronunciation':
'prefix': 'rt'
'Ruby Annotation':
'prefix': 'ruby'
# S
'Strikethrough':
'prefix': 's'
'Sample Output':
'prefix': 'samp'
'Script':
'prefix': 'script'
'Script With External Source':
'prefix': 'scriptsrc'
'Section':
'prefix': 'section'
'Select':
'prefix': 'select'
'Small':
'prefix': 'small'
'Source':
'prefix': 'source'
'Span':
'prefix': 'span'
'Strong':
'prefix': 'strong'
'Style':
'prefix': 'style'
'Subscript':
'prefix': 'sub'
'Summary':
'prefix': 'summary'
'Superscript':
'prefix': 'sup'
# T
'Table':
'prefix': 'table'
'Table Body':
'prefix': 'tbody'
'Table Cell':
'prefix': 'td'
'Template':
'prefix': 'template'
'Text Area':
'prefix': 'textarea'
'Table Foot':
'prefix': 'tfoot'
'Table Header Cell':
'prefix': 'th'
'Table Head':
'prefix': 'thead'
'Time':
'prefix': 'time'
'Title':
'prefix': 'title'
'Table Row':
'prefix': 'tr'
'Track':
'prefix': 'track'
# U
'Underline':
'prefix': 'u'
'Unordered List':
'prefix': 'ul'
# V
'Variable':
'prefix': 'var'
'Video':
'prefix': 'video'
# W
'Word Break Opportunity':
'prefix': 'wbr'
# ------------------------------------------------------------------------------
'.text.html.basic':
'div.class':
'prefix': 'dc'
'body': '<div class="$1">$0</div>'
# ------------------------------------------------------------------------------
'.source.js':
'console.log':
'prefix': 'log'
'body': 'console.log(${1:"crash"});$2'
{
"atom-beautify": {
"general": {
"_analyticsUserId": "ed627ed5-e612-49cf-94b5-38c0fe612757"
}
},
"atom-terminal": {
"MacWinRunDirectly": true,
"surpressDirectoryArgument": false
},
"autocomplete-plus": {},
"chrome-color-picker": {
"General": {}
},
"core": {
"audioBeep": false,
"disabledPackages": [
"todo",
"atom-terminal-panel",
"language-c",
"language-clojure",
"language-csharp",
"language-go",
"language-make",
"language-objective-c",
"language-perl",
"language-property-list",
"language-python",
"language-ruby",
"language-ruby-on-rails",
"language-shellscript",
"language-toml",
"language-yaml",
"emmet-snippets-compatibility",
"linter-markdown",
"atom-terminal"
],
"ignoredNames": [
".git",
".hg",
".svn",
".DS_Store",
"._*",
"Thumbs.db",
".history",
".sass-cache",
".vscode",
"node_modules"
],
"openEmptyEditorOnStart": false,
"packagesWithKeymapsDisabled": []
},
"editor": {
"showIndentGuide": true,
"softWrapAtPreferredLineLength": true,
"tabLength": 4,
"zoomFontWhenCtrlScrolling": false
},
"exception-reporting": {
"userId": "a47cb6f9-e23e-5cfa-8daa-74a003b94f94"
},
"gulp-task-launcher": {
"__browserify": true,
"__copyJsApp": true,
"__cssImg": true,
"__font": true,
"__img": true,
"_assets": true,
"_clean": true,
"_css": true,
"_delRev": true,
"_html": true,
"_html_dev": true,
"_jsApp": true,
"_jsAppBrowserify": true,
"_jsBase": true,
"_revCss": true,
"_sassdoc": true,
"_scsscopy": true,
"_sourcemap": true,
"_watch": true,
"build": true,
"default": true,
"dev": true,
"fe": true,
"fetest": true,
"help": true,
"product": true,
"release": true,
"tasks": [
"__browserify",
"__copyJsApp",
"__cssImg",
"__font",
"__img",
"_assets",
"_clean",
"_css",
"_delRev",
"_html",
"_html_dev",
"_jsApp",
"_jsAppBrowserify",
"_jsBase",
"_revCss",
"_sassdoc",
"_scsscopy",
"_sourcemap",
"_watch",
"build",
"default",
"dev",
"fe",
"fetest",
"help",
"product",
"release",
"watch",
"watch_dev",
"watch_fe"
],
"watch": true,
"watch_dev": true,
"watch_fe": true
},
"minimap": {
"plugins": {
"bookmarks": true,
"bookmarksDecorationsZIndex": 0
}
},
"sync-settings": {},
"terminal-panel": {
"overrideLs": false,
"shell": "C:\\Windows\\System32\\cmd.exe"
},
"todo-show": {
"sortAscending": false
},
"tree-view": {},
"welcome": {
"showOnStartup": false
}
}
[
{
"name": "about",
"version": "1.4.2"
},
{
"name": "advanced-new-file",
"version": "0.5.0"
},
{
"name": "archive-view",
"version": "0.61.1"
},
{
"name": "atom-beautify",
"version": "0.29.7"
},
{
"name": "atom-dark-syntax",
"version": "0.27.0",
"theme": "syntax"
},
{
"name": "atom-dark-ui",
"version": "0.51.0",
"theme": "ui"
},
{
"name": "atom-json-color",
"version": "0.4.2"
},
{
"name": "atom-light-syntax",
"version": "0.28.0",
"theme": "syntax"
},
{
"name": "atom-light-ui",
"version": "0.43.0",
"theme": "ui"
},
{
"name": "atomic-chrome",
"version": "0.3.0"
},
{
"name": "autocomplete-atom-api",
"version": "0.10.0"
},
{
"name": "autocomplete-css",
"version": "0.11.0"
},
{
"name": "autocomplete-html",
"version": "0.7.2"
},
{
"name": "autocomplete-paths",
"version": "1.0.2"
},
{
"name": "autocomplete-plus",
"version": "2.29.1"
},
{
"name": "autocomplete-snippets",
"version": "1.10.0"
},
{
"name": "autoflow",
"version": "0.27.0"
},
{
"name": "autosave",
"version": "0.23.1"
},
{
"name": "background-tips",
"version": "0.26.0"
},
{
"name": "base16-tomorrow-dark-theme",
"version": "1.1.0",
"theme": "syntax"
},
{
"name": "base16-tomorrow-light-theme",
"version": "1.1.1",
"theme": "syntax"
},
{
"name": "bookmarks",
"version": "0.38.2"
},
{
"name": "bottom-dock",
"version": "0.4.4"
},
{
"name": "bracket-matcher",
"version": "0.81.0"
},
{
"name": "chrome-color-picker",
"version": "0.8.0"
},
{
"name": "color-picker",
"version": "2.1.1"
},
{
"name": "command-palette",
"version": "0.38.0"
},
{
"name": "css-snippets",
"version": "0.9.0"
},
{
"name": "deprecation-cop",
"version": "0.54.1"
},
{
"name": "dev-live-reload",
"version": "0.47.0"
},
{
"name": "emmet",
"version": "2.4.3"
},
{
"name": "emmet-simplified",
"version": "2.5.0"
},
{
"name": "encoding-selector",
"version": "0.21.0"
},
{
"name": "exception-reporting",
"version": "0.37.0"
},
{
"name": "file-bookmark",
"version": "0.3.1"
},
{
"name": "file-icon-supplement",
"version": "0.8.3"
},
{
"name": "file-icons",
"version": "1.7.13"
},
{
"name": "filecolor",
"version": "0.3.2"
},
{
"name": "find-and-replace",
"version": "0.199.0"
},
{
"name": "frontendler-atom-snippets",
"version": "0.4.6"
},
{
"name": "fuzzy-finder",
"version": "1.0.5"
},
{
"name": "git-control",
"version": "0.7.1"
},
{
"name": "git-diff",
"version": "1.0.1"
},
{
"name": "git-plus",
"version": "5.14.0"
},
{
"name": "git-time-machine",
"version": "1.5.3"
},
{
"name": "go-to-line",
"version": "0.30.0"
},
{
"name": "grammar-selector",
"version": "0.48.1"
},
{
"name": "gulp-manager",
"version": "0.2.19"
},
{
"name": "gulp-snippets",
"version": "0.6.2"
},
{
"name": "html-head-snippets",
"version": "0.1.0"
},
{
"name": "html-to-css",
"version": "0.2.2"
},
{
"name": "image-view",
"version": "0.57.0"
},
{
"name": "incompatible-packages",
"version": "0.25.1"
},
{
"name": "jQuery",
"version": "1.2.4"
},
{
"name": "jquery-snippets",
"version": "11.0.0"
},
{
"name": "keybinding-resolver",
"version": "0.35.0"
},
{
"name": "language-coffee-script",
"version": "0.46.1"
},
{
"name": "language-css",
"version": "0.36.0"
},
{
"name": "language-gfm",
"version": "0.85.0"
},
{
"name": "language-git",
"version": "0.12.1"
},
{
"name": "language-html",
"version": "0.44.1"
},
{
"name": "language-hyperlink",
"version": "0.16.0"
},
{
"name": "language-java",
"version": "0.17.0"
},
{
"name": "language-javascript",
"version": "0.110.0"
},
{
"name": "language-json",
"version": "0.17.6"
},
{
"name": "language-less",
"version": "0.29.0"
},
{
"name": "language-mustache",
"version": "0.13.0"
},
{
"name": "language-php",
"version": "0.37.0"
},
{
"name": "language-sass",
"version": "0.46.0"
},
{
"name": "language-source",
"version": "0.9.0"
},
{
"name": "language-sql",
"version": "0.20.0"
},
{
"name": "language-text",
"version": "0.7.1"
},
{
"name": "language-todo",
"version": "0.27.0"
},
{
"name": "language-xml",
"version": "0.34.4"
},
{
"name": "line-ending-selector",
"version": "0.3.1"
},
{
"name": "link",
"version": "0.31.1"
},
{
"name": "markdown-folder",
"version": "0.5.0"
},
{
"name": "markdown-mindmap",
"version": "0.2.4"
},
{
"name": "markdown-preview",
"version": "0.158.0"
},
{
"name": "markdown-preview-plus",
"version": "2.4.0"
},
{
"name": "markdown-scroll-sync",
"version": "2.1.2"
},
{
"name": "markdown-toc",
"version": "0.4.1"
},
{
"name": "markdown-writer",
"version": "2.3.3"
},
{
"name": "metrics",
"version": "0.53.1"
},
{
"name": "minimap",
"version": "4.24.3"
},
{
"name": "minimap-bookmarks",
"version": "0.3.1"
},
{
"name": "new-file-plus",
"version": "0.2.1"
},
{
"name": "notifications",
"version": "0.63.1"
},
{
"name": "one-dark-syntax",
"version": "1.2.0",
"theme": "syntax"
},
{
"name": "one-dark-ui",
"version": "1.2.0",
"theme": "ui"
},
{
"name": "one-light-syntax",
"version": "1.2.0",
"theme": "syntax"
},
{
"name": "one-light-ui",
"version": "1.2.0",
"theme": "ui"
},
{
"name": "open-on-github",
"version": "1.0.1"
},
{
"name": "open-terminal-here",
"version": "2.1.4"
},
{
"name": "open_in_cmd",
"version": "0.6.1"
},
{
"name": "package-generator",
"version": "1.0.0"
},
{
"name": "pigments",
"version": "0.29.1"
},
{
"name": "regex-railroad-diagram",
"version": "0.16.0"
},
{
"name": "regex-tester",
"version": "0.2.0"
},
{
"name": "sequential-command",
"version": "0.3.0"
},
{
"name": "settings-view",
"version": "0.235.1"
},
{
"name": "simplified-chinese-menu",
"version": "3.4.11"
},
{
"name": "snippet-collections-xiaolai",
"version": "0.1.0"
},
{
"name": "snippets",
"version": "1.0.1"
},
{
"name": "solarized-dark-syntax",
"version": "1.0.0",
"theme": "syntax"
},
{
"name": "solarized-light-syntax",
"version": "1.0.0",
"theme": "syntax"
},
{
"name": "spell-check",
"version": "0.67.0"
},
{
"name": "status-bar",
"version": "1.1.2"
},
{
"name": "styleguide",
"version": "0.45.2"
},
{
"name": "symbols-tree-view",
"version": "0.13.2"
},
{
"name": "symbols-view",
"version": "0.112.0"
},
{
"name": "sync-settings",
"version": "0.7.2"
},
{
"name": "tabs",
"version": "0.96.0"
},
{
"name": "terminal-panel",
"version": "1.14.1"
},
{
"name": "tidy-markdown",
"version": "3.0.1"
},
{
"name": "timecop",
"version": "0.33.1"
},
{
"name": "todo-manager",
"version": "0.2.9"
},
{
"name": "todo-show",
"version": "1.6.0"
},
{
"name": "toggle-markdown-task",
"version": "0.5.0"
},
{
"name": "tree-view",
"version": "0.205.0"
},
{
"name": "update-package-dependencies",
"version": "0.10.0"
},
{
"name": "url-encode",
"version": "0.5.0"
},
{
"name": "vue-snippets",
"version": "0.6.0"
},
{
"name": "welcome",
"version": "0.34.0"
},
{
"name": "whitespace",
"version": "0.32.2"
},
{
"name": "wrap-guide",
"version": "0.38.1"
}
]
# Your keymap
#
# Atom keymaps work similarly to style sheets. Just as style sheets use
# selectors to apply styles to elements, Atom keymaps use selectors to associate
# keystrokes with events in specific contexts. Unlike style sheets however,
# each selector can only be declared once.
#
# You can create a new keybinding in this file by typing "key" and then hitting
# tab.
#
# Here's an example taken from Atom's built-in keymap:
#
# 'atom-text-editor':
# 'enter': 'editor:newline'
#
# 'atom-workspace':
# 'ctrl-shift-p': 'core:move-up'
# 'ctrl-p': 'core:move-down'
#
# You can find more information about keymaps in these guides:
# * https://atom.io/docs/latest/using-atom-basic-customization#customizing-key-bindings
# * https://atom.io/docs/latest/behind-atom-keymaps-in-depth
#
# If you're having trouble with your keybindings not working, try the
# Keybinding Resolver: `Cmd+.` on OS X and `Ctrl+.` on other platforms. See the
# Debugging Guide for more information:
# * https://atom.io/docs/latest/hacking-atom-debugging#check-the-keybindings
#
# This file uses CoffeeScript Object Notation (CSON).
# If you are unfamiliar with CSON, you can read more about it in the
# Atom Flight Manual:
# https://atom.io/docs/latest/using-atom-basic-customization#cson
# ------------------------------------------------------------------------------
#
# ------------------------------------------------------------------------------
# @@line
#'atom-text-editor':
#
#
#
# /@@line
# ------------------------------------------------------------------------------
#
# ------------------------------------------------------------------------------
# @@emmet
#
# /@@emmet
# ------------------------------------------------------------------------------
'.platform-win32 atom-text-editor, .platform-linux atom-text-editor':
'ctrl-d': 'editor:delete-line'
'ctrl-h': 'find-and-replace:use-selection-as-find-pattern'
'atom-text-editor:not([mini])':
'ctrl-e': 'emmet:expand-abbreviation'
'atom-workspace':
'ctrl-alt-down': 'editor:duplicate-lines'
'alt-up': 'editor:move-line-up'
'alt-down': 'editor:move-line-down'
# Default Keymaps for Markdown Writer
# https://atom.io/packages/markdown-writer
#
# Wiki: https://github.com/zhuochun/md-writer/wiki/Settings-for-Keymaps
#
".platform-win32 atom-text-editor:not([mini])":
"shift-ctrl-K": "markdown-writer:insert-link"
"shift-ctrl-I": "markdown-writer:insert-image"
"ctrl-i": "markdown-writer:toggle-italic-text"
"ctrl-b": "markdown-writer:toggle-bold-text"
"ctrl-'": "markdown-writer:toggle-code-text"
'ctrl-`': "markdown-writer:toggle-codeblock-text"
"ctrl-h": "markdown-writer:toggle-strikethrough-text"
"ctrl-1": "markdown-writer:toggle-h1"
"ctrl-2": "markdown-writer:toggle-h2"
"ctrl-3": "markdown-writer:toggle-h3"
"ctrl-4": "markdown-writer:toggle-h4"
"ctrl-5": "markdown-writer:toggle-h5"
# Your init script
#
# Atom will evaluate this file each time a new window is opened. It is run
# after packages are loaded/activated and after the previous editor state
# has been restored.
#
# An example hack to log to the console when each text editor is saved.
#
# atom.workspace.observeTextEditors (editor) ->
# editor.onDidSave ->
# console.log "Saved! #{editor.getPath()}"