欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

atom配置python开发环境

程序员文章站 2022-07-14 12:53:20
...

需要安装的插件

atom配置python开发环境

快捷键配置

ctrl + shift + p,搜索key map,修改配置文件如下:

# 'atom-text-editor':
#   'enter': 'editor:newline'
#
# 'atom-workspace':
#   'ctrl-shift-p': 'core:move-up'
#   'ctrl-p': 'core:move-down'

'atom-text-editor':
  'cmd-d': 'editor:delete-line'
  'cmd-shift-f': 'atom-beautify:beautify-editor'

'.platform-darwin atom-text-editor':
  'cmd-r': 'script:run'
  'ctrl-r': 'symbols-view:toggle-file-symbols'

'atom-workspace atom-text-editor:not([mini])':
  'cmd-down': 'editor:duplicate-lines'
  'alt-down': 'editor:move-line-down'
  'alt-up': 'editor:move-line-up'

'atom-text-editor[data-grammar~="python"]:not([mini])':
  'cmd-g': 'python-tools:goto-definition'
相关标签: python