Atom automatic update by http://atom.io/packages/sync-settings
Last active
January 13, 2017 14:20
-
-
Save aanton/82220203e3d87dbab505281653c1ee9c to your computer and use it in GitHub Desktop.
automatic update by http://atom.io/packages/sync-settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://discuss.atom.io/t/move-to-beginning-of-line/19409 | |
atom.commands.add 'atom-text-editor', 'editor:select-to-end-of-buffer-line', -> | |
textEditor = atom.workspace.getActiveTextEditor() | |
selectedRanges = for cursorPosition in textEditor.getCursorBufferPositions() | |
endColumn = textEditor.lineTextForBufferRow(cursorPosition.row).length | |
endPosition = cursorPosition.translate([0, endColumn - cursorPosition.column]) | |
[ cursorPosition, endPosition ] | |
textEditor.setSelectedBufferRanges(selectedRanges) | |
atom.commands.add 'atom-text-editor', 'editor:select-to-beginning-of-buffer-line', -> | |
textEditor = atom.workspace.getActiveTextEditor() | |
selectedRanges = for cursorPosition in textEditor.getCursorBufferPositions() | |
endColumn = textEditor.indentationForBufferRow(cursorPosition.row) | |
if textEditor.getSoftTabs() then endColumn *= textEditor.getTabLength() | |
endPosition = cursorPosition.translate([0, endColumn - cursorPosition.column]) | |
[ cursorPosition, endPosition ] | |
textEditor.setSelectedBufferRanges(selectedRanges) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'.platform-linux .editor': | |
'ctrl-shift-L': 'editor:split-selections-into-lines' | |
'ctrl-shift-M': 'markdown-preview:toggle' | |
'ctrl-shift-O': 'link:open' | |
'ctrl-&': 'editor:toggle-line-comments' # ctrl-shift-7 | |
'body': | |
'ctrl-k ctrl-w': 'pane:close' | |
'ctrl-k left': 'window:focus-pane-on-left' | |
'ctrl-k right': 'window:focus-pane-on-right' | |
'ctrl-k up': 'window:focus-pane-above' | |
'ctrl-k down': 'window:focus-pane-below' | |
'ctrl-k ctrl-left': 'pane:split-left' | |
'ctrl-k ctrl-right': 'pane:split-right' | |
'ctrl-k ctrl-up': 'pane:split-up' | |
'ctrl-k ctrl-down': 'pane:split-down' | |
'ctrl-k m left': 'window:move-active-item-to-pane-on-left' | |
'ctrl-k m right': 'window:move-active-item-to-pane-on-right' | |
'ctrl-k m up': 'window:move-active-item-to-pane-above' | |
'ctrl-k m down': 'window:move-active-item-to-pane-below' | |
'atom-text-editor': | |
'ctrl-alt-n': 'atom-autocomplete-php:namespace' | |
'ctrl-alt-g': 'atom-autocomplete-php:goto' | |
'end': 'editor:move-to-end-of-line' | |
'home': 'editor:move-to-beginning-of-line' | |
# 'shift-end': 'editor:select-to-end-of-buffer-line' # new command in init.coffee | |
# 'shift-home': 'editor:select-to-beginning-of-buffer-line' # new command in init.coffee |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name": "about", | |
"version": "1.7.2" | |
}, | |
{ | |
"name": "archive-view", | |
"version": "0.62.0" | |
}, | |
{ | |
"name": "atom-autocomplete-php", | |
"version": "0.21.0" | |
}, | |
{ | |
"name": "atom-beautify", | |
"version": "0.29.16" | |
}, | |
{ | |
"name": "atom-dark-syntax", | |
"version": "0.28.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "atom-dark-ui", | |
"version": "0.53.0", | |
"theme": "ui" | |
}, | |
{ | |
"name": "atom-light-syntax", | |
"version": "0.29.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "atom-light-ui", | |
"version": "0.46.0", | |
"theme": "ui" | |
}, | |
{ | |
"name": "autocomplete-atom-api", | |
"version": "0.10.0" | |
}, | |
{ | |
"name": "autocomplete-css", | |
"version": "0.14.1" | |
}, | |
{ | |
"name": "autocomplete-html", | |
"version": "0.7.2" | |
}, | |
{ | |
"name": "autocomplete-plus", | |
"version": "2.33.1" | |
}, | |
{ | |
"name": "autocomplete-snippets", | |
"version": "1.11.0" | |
}, | |
{ | |
"name": "autoflow", | |
"version": "0.29.0" | |
}, | |
{ | |
"name": "autosave", | |
"version": "0.23.2" | |
}, | |
{ | |
"name": "background-tips", | |
"version": "0.26.1" | |
}, | |
{ | |
"name": "base16-tomorrow-dark-theme", | |
"version": "1.4.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "base16-tomorrow-light-theme", | |
"version": "1.4.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "bookmarks", | |
"version": "0.43.2" | |
}, | |
{ | |
"name": "bracket-matcher", | |
"version": "0.85.1" | |
}, | |
{ | |
"name": "command-palette", | |
"version": "0.39.1" | |
}, | |
{ | |
"name": "deprecation-cop", | |
"version": "0.55.1" | |
}, | |
{ | |
"name": "dev-live-reload", | |
"version": "0.47.0" | |
}, | |
{ | |
"name": "emmet", | |
"version": "2.4.3" | |
}, | |
{ | |
"name": "encoding-selector", | |
"version": "0.22.0" | |
}, | |
{ | |
"name": "exception-reporting", | |
"version": "0.40.0" | |
}, | |
{ | |
"name": "find-and-replace", | |
"version": "0.204.5" | |
}, | |
{ | |
"name": "fuzzy-finder", | |
"version": "1.4.0" | |
}, | |
{ | |
"name": "git-diff", | |
"version": "1.2.0" | |
}, | |
{ | |
"name": "git-plus", | |
"version": "7.1.0" | |
}, | |
{ | |
"name": "git-time-machine", | |
"version": "1.5.4" | |
}, | |
{ | |
"name": "go-to-line", | |
"version": "0.31.2" | |
}, | |
{ | |
"name": "grammar-selector", | |
"version": "0.48.2" | |
}, | |
{ | |
"name": "image-view", | |
"version": "0.60.0" | |
}, | |
{ | |
"name": "incompatible-packages", | |
"version": "0.26.1" | |
}, | |
{ | |
"name": "keybinding-resolver", | |
"version": "0.35.0" | |
}, | |
{ | |
"name": "language-c", | |
"version": "0.54.0" | |
}, | |
{ | |
"name": "language-clojure", | |
"version": "0.22.1" | |
}, | |
{ | |
"name": "language-coffee-script", | |
"version": "0.48.1" | |
}, | |
{ | |
"name": "language-csharp", | |
"version": "0.13.0" | |
}, | |
{ | |
"name": "language-css", | |
"version": "0.40.1" | |
}, | |
{ | |
"name": "language-diff", | |
"version": "0.7.0" | |
}, | |
{ | |
"name": "language-gfm", | |
"version": "0.88.0" | |
}, | |
{ | |
"name": "language-git", | |
"version": "0.15.0" | |
}, | |
{ | |
"name": "language-go", | |
"version": "0.43.0" | |
}, | |
{ | |
"name": "language-html", | |
"version": "0.47.1" | |
}, | |
{ | |
"name": "language-hyperlink", | |
"version": "0.16.1" | |
}, | |
{ | |
"name": "language-java", | |
"version": "0.24.0" | |
}, | |
{ | |
"name": "language-javascript", | |
"version": "0.122.0" | |
}, | |
{ | |
"name": "language-json", | |
"version": "0.18.3" | |
}, | |
{ | |
"name": "language-less", | |
"version": "0.29.6" | |
}, | |
{ | |
"name": "language-make", | |
"version": "0.22.2" | |
}, | |
{ | |
"name": "language-mustache", | |
"version": "0.13.0" | |
}, | |
{ | |
"name": "language-objective-c", | |
"version": "0.15.1" | |
}, | |
{ | |
"name": "language-perl", | |
"version": "0.37.0" | |
}, | |
{ | |
"name": "language-php", | |
"version": "0.37.3" | |
}, | |
{ | |
"name": "language-property-list", | |
"version": "0.8.0" | |
}, | |
{ | |
"name": "language-python", | |
"version": "0.45.1" | |
}, | |
{ | |
"name": "language-ruby", | |
"version": "0.70.2" | |
}, | |
{ | |
"name": "language-ruby-on-rails", | |
"version": "0.25.1" | |
}, | |
{ | |
"name": "language-sass", | |
"version": "0.57.0" | |
}, | |
{ | |
"name": "language-shellscript", | |
"version": "0.23.0" | |
}, | |
{ | |
"name": "language-source", | |
"version": "0.9.0" | |
}, | |
{ | |
"name": "language-sql", | |
"version": "0.25.0" | |
}, | |
{ | |
"name": "language-text", | |
"version": "0.7.1" | |
}, | |
{ | |
"name": "language-todo", | |
"version": "0.29.1" | |
}, | |
{ | |
"name": "language-toml", | |
"version": "0.18.1" | |
}, | |
{ | |
"name": "language-xml", | |
"version": "0.34.12" | |
}, | |
{ | |
"name": "language-yaml", | |
"version": "0.27.1" | |
}, | |
{ | |
"name": "line-ending-selector", | |
"version": "0.5.1" | |
}, | |
{ | |
"name": "link", | |
"version": "0.31.2" | |
}, | |
{ | |
"name": "linter", | |
"version": "1.11.21" | |
}, | |
{ | |
"name": "linter-csslint", | |
"version": "1.3.3" | |
}, | |
{ | |
"name": "linter-jshint", | |
"version": "3.0.2" | |
}, | |
{ | |
"name": "linter-jsonlint", | |
"version": "1.3.0" | |
}, | |
{ | |
"name": "linter-php", | |
"version": "1.3.1" | |
}, | |
{ | |
"name": "markdown-preview", | |
"version": "0.159.1" | |
}, | |
{ | |
"name": "merge-conflicts", | |
"version": "1.4.4" | |
}, | |
{ | |
"name": "metrics", | |
"version": "1.1.2" | |
}, | |
{ | |
"name": "notifications", | |
"version": "0.65.1" | |
}, | |
{ | |
"name": "one-dark-syntax", | |
"version": "1.6.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "one-dark-ui", | |
"version": "1.8.2", | |
"theme": "ui" | |
}, | |
{ | |
"name": "one-light-syntax", | |
"version": "1.6.0", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "one-light-ui", | |
"version": "1.8.2", | |
"theme": "ui" | |
}, | |
{ | |
"name": "open-in-browser", | |
"version": "0.4.7" | |
}, | |
{ | |
"name": "open-on-github", | |
"version": "1.2.1" | |
}, | |
{ | |
"name": "open-terminal-here", | |
"version": "2.1.4" | |
}, | |
{ | |
"name": "package-generator", | |
"version": "1.0.2" | |
}, | |
{ | |
"name": "project-manager", | |
"version": "3.3.3" | |
}, | |
{ | |
"name": "script", | |
"version": "3.14.0" | |
}, | |
{ | |
"name": "settings-view", | |
"version": "0.244.0" | |
}, | |
{ | |
"name": "snippets", | |
"version": "1.0.4" | |
}, | |
{ | |
"name": "solarized-dark-syntax", | |
"version": "1.1.1", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "solarized-light-syntax", | |
"version": "1.1.1", | |
"theme": "syntax" | |
}, | |
{ | |
"name": "sort-lines", | |
"version": "0.14.0" | |
}, | |
{ | |
"name": "spell-check", | |
"version": "0.70.2" | |
}, | |
{ | |
"name": "split-diff", | |
"version": "1.1.1" | |
}, | |
{ | |
"name": "status-bar", | |
"version": "1.6.0" | |
}, | |
{ | |
"name": "styleguide", | |
"version": "0.48.0" | |
}, | |
{ | |
"name": "symbols-view", | |
"version": "0.113.1" | |
}, | |
{ | |
"name": "sync-settings", | |
"version": "0.8.1" | |
}, | |
{ | |
"name": "tabs", | |
"version": "0.103.1" | |
}, | |
{ | |
"name": "timecop", | |
"version": "0.33.2" | |
}, | |
{ | |
"name": "tree-view", | |
"version": "0.211.1" | |
}, | |
{ | |
"name": "update-package-dependencies", | |
"version": "0.10.0" | |
}, | |
{ | |
"name": "welcome", | |
"version": "0.35.1" | |
}, | |
{ | |
"name": "whitespace", | |
"version": "0.35.0" | |
}, | |
{ | |
"name": "wrap-guide", | |
"version": "0.39.0" | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"atom-autocomplete-php": { | |
"insertNewlinesForUseStatements": true, | |
"verboseErrors": true | |
}, | |
"atom-beautify": { | |
"general": { | |
"analytics": false | |
} | |
}, | |
"autocomplete-plus": { | |
"confirmCompletion": "tab", | |
"enableExtendedUnicodeSupport": true | |
}, | |
"core": { | |
"disabledPackages": [ | |
"open-on-github" | |
], | |
"packagesWithKeymapsDisabled": [ | |
"split-diff", | |
"atom-autocomplete-php" | |
], | |
"telemetryConsent": "no" | |
}, | |
"editor": { | |
"fontFamily": "Fira Code", | |
"fontSize": 23, | |
"preferredLineLength": 120, | |
"showIndentGuide": true, | |
"showInvisibles": true, | |
"softWrap": true, | |
"softWrapAtPreferredLineLength": true, | |
"softWrapHangingIndent": 2 | |
}, | |
"exception-reporting": { | |
"userId": "6dc4e42d-7788-cb36-3616-795c5c698c81" | |
}, | |
"git-plus": { | |
"general": { | |
"_analyticsUserId": "ac1b47a8-062b-4cb3-9667-286204c06281" | |
} | |
}, | |
"linter": {}, | |
"linter-jshint": { | |
"lintInlineJavaScript": true | |
}, | |
"markdown-preview": { | |
"useGitHubStyle": true | |
}, | |
"project-manager": { | |
"alwaysOpenInSameWindow": true, | |
"closeCurrent": false, | |
"environmentSpecificProjects": true | |
}, | |
"spell-check": { | |
"addKnownWords": true, | |
"knownWords": [ | |
"microservicio", | |
"widget" | |
], | |
"locales": [ | |
"es_ES" | |
] | |
}, | |
"split-diff": { | |
"diffWords": true, | |
"ignoreWhitespace": true, | |
"leftEditorColor": "red", | |
"rightEditorColor": "green", | |
"syncHorizontalScroll": true | |
}, | |
"sync-settings": { | |
"analytics": false | |
}, | |
"tree-view": { | |
"hideIgnoredNames": true | |
}, | |
"welcome": { | |
"showOnStartup": false | |
}, | |
"whitespace": { | |
"ensureSingleTrailingNewline": false, | |
"ignoreWhitespaceOnCurrentLine": false, | |
"removeTrailingWhitespace": false | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# snippets file (not found) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// styles file (not found) | |
atom-text-editor::shadow .string.quoted, | |
atom-text-editor::shadow .string.regexp { | |
-webkit-font-feature-settings: "liga" off, "calt" off; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment