tips:atom

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
tips:atom [2016/03/01 10:45] – [keyboard] scipiotips:atom [2017/10/15 20:32] (current) – [general] scipio
Line 26: Line 26:
 ===== general ===== ===== general =====
  
 +<code>
 +pip install python-language-server
 +
 +apm install \
 + atom-ide-ui \
 + ide-python \
 + ide-typescript \
 + seti-syntax \
 + seti-ui \
 + minimap \
 + highlight-selected \
 + minimap-highlight-selected \
 + atom-save-all \
 +
 +</code>
 +
 +  * [[https://github.com/facebook-atom/atom-ide-ui/blob/master/docs/keybindings.md|keybindings]]
 +
 +old
 <code> <code>
 apm install project-manager \ apm install project-manager \
- linter \ 
  minimap \  minimap \
 + highlight-selected \
 + minimap-highlight-selected \
 + atom-save-all \
 + atom-typescript \
 + AutoComplete \
 + seti-syntax \
 + seti-ui \
 + pigments \
 + emmet \
 + autoclose-html \
 +
 +</code>
 +
 +not verified
 +<code>
  atom-beautify \  atom-beautify \
  atom-overtype-mode \  atom-overtype-mode \
Line 35: Line 68:
  color-picker \  color-picker \
  navigation-history \  navigation-history \
- atom-save-all+ atom-save-all 
 + symbols-tree-view \ 
 + merge-conflicts \ 
 + todo-show \ 
 + auto-detect-indentation \ 
 + jumpy \ 
 + autocomplete-python \
 </code> </code>
  
Line 47: Line 86:
 $HOME/.atom/config.cson $HOME/.atom/config.cson
 <code> <code>
 +"*":
 +  "atom-beautify":
 +    analytics: false
 +    python_max_line_length: 120
 +  "autocomplete-python":
 +    pythonPaths: "/lab/$PROJECT_NAME/lib/bin/python"
 +  core:
 +    disabledPackages: [
 +      "linter-pep8"
 +      "python-tools"
 +      "seti-icons"
 +      "symbol-gen"
 +      "metrics"
 +    ]
 +    themes: [
 +      "atom-dark-ui"
 +      "base16-tomorrow-dark-theme"
 +    ]
   editor:   editor:
     invisibles: {}     invisibles: {}
-    softWrapHangingIndent: 4+    preferredLineLength: 120 
 +    showIndentGuide: true 
 +    tabLength: 4 
 +  welcome: 
 +    showOnStartup: false 
 +".console.python.text": 
 +  editor: 
 +    preferredLineLength: 120 
 +".python.regexp.source": 
 +  editor: 
 +    preferredLineLength: 120 
 +".python.source": 
 +  editor: 
 +    preferredLineLength: 120 
 +".python.text.traceback": 
 +  editor: 
 +    preferredLineLength: 120
 </code> </code>
  
Line 58: Line 131:
 'atom-workspace': 'atom-workspace':
   'ctrl-alt-u': 'autocomplete-python:show-usages'   'ctrl-alt-u': 'autocomplete-python:show-usages'
 +  'ctrl-tab': 'tab-switcher:next'
 +  'ctrl-shift-tab': 'tab-switcher:previous'  
 </code> </code>
  
Line 66: Line 141:
   * ctrl-shift-p: command palette   * ctrl-shift-p: command palette
   * ctrl-,: settings   * ctrl-,: settings
 +  * ctrl-alt-o: toggle tree objects
 +  * ctrl-\: toggle tree view
  
   * ctrl-b: list opened files   * ctrl-b: list opened files
Line 73: Line 150:
   * ctrl-alt-u: find usage   * ctrl-alt-u: find usage
  
-  * alt--: back +  * ctrl-ohistory jump back 
-  * shift-alt--: forward+  * ctrl-i: history jump forward 
 +  * ctrl-shift-F2: take boomarks 
 +  * F2: jump to next bookmarks 
 +  * shift-F2: jump to previous bookmarks 
 +  * shit-enterjumpy mode
  
   * ctrl-click: multi cursor   * ctrl-click: multi cursor
Line 104: Line 185:
 apm install linter-tslint apm install linter-tslint
 apm install pigments apm install pigments
 +apm install cursor-history
 </code> </code>
  
  • tips/atom.1456825503.txt.gz
  • Last modified: 2016/03/01 10:45
  • by scipio