Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Child pages (Children Display)

Related pages

  • ...

...



Nice characteristics / features of PyCharm

  • The pop-up 'tip of the day'.
  • Being able to search anywhere in the options menu.
  • The attractive Darcula theme.

...

  • Format code: ctrl+alt+l (the lowercase letter "L")
  • Find and replace: ctrl+r
  • Surround a selected block of code with some statement: Ctrl + Alt + T (Source)
    • This is really helpful when working with HTML, as you'll often want to surround something like an <img> tag or an <a> tag with a <div> tag so that you can adjust the width and height of the element.

Side-windows / panes

  • Close the bottom pane tools (Terminal, Python console): Alt + F12
  • Close all tool windows (left pane, bottom pane, right pane): Ctrl + Alt + F12
  • 2016.10.23 - I'm finding that I really like having two windows open side-by-side, where one pane is for the actual code and the other pane is for the tests.
    • Right-click and select 'Split vertically'.
    • Also, I'm finding that I like zooming the code out in each pane so that I can see the entire function at once.

...