Pycharm快捷键

  • Ctrl+Shift+TNavigate | Class ) : open any class in the editor quickly     
  • Ctrl+空格 : Code Completion  

  • Ctrl+G ( Find Usages in the popup menu ) :  find all places where a particular class, method or variable is used in the whole project     

  • Ctrl+Shift+空格 (View | Quick Documentation)  : see the documentation for the symbol    

  • Ctrl+F3 (Navigate | File Structurt) :  quickly navigate in the currently edited file     

  • 使用tab键来完成代码补全比enter键好,因为前者可以覆盖剩余的字符串。
  • The speed search is available in all the tree views: just start typing and you'll quickly locate the necessary item. (用上下方向键切换词)    

   

  • Alt+Shift+Ohighlight variable  

    Ctrl+K and Ctrl+Shift+Knavigate through highlighted usages     

    Esc : remove highlighting     

  • Local History | Show History :  You can navigate through different file versions     

  • Ctrl+E : see the recently visited files     

  • Ctrl+Alt+Shift+N (Navigate | Symbol)  : To open any particular method or field in the editor quickly     

  • F4 (Navigate | Type Hierarchy) : To see the inheritance hierarchy for a selected class

   

  

  

原文地址:https://www.cnblogs.com/xingyun/p/4675002.html