search
HomeBackend DevelopmentPython TutorialPycharm Shortcut Key Manual
Pycharm Shortcut Key ManualDec 03, 2016 am 11:17 AM
python

Alt+Enter Automatically add packages

Ctrl+t SVN update

Ctrl+k SVN commit

Ctrl + / Comment (uncomment) the selected line

Ctrl+Shift+F Advanced search

Ctrl+Enter completion

Shift + Enter Start a new line

TAB Shift+TAB Indent/unindent the selected line

Ctrl + Alt + I Automatically indent the line

Ctrl + Y Delete the line where the current caret is located

Ctrl + D Copy the current line or selected block

Ctrl + Shift + J Merge lines

Ctrl + Shift + V Paste from the recent buffer

Ctrl + Delete Delete to the end of the character

Ctrl + Backspace Delete to the character Start

Ctrl + NumPad+/- expand or shrink code blocks

Ctrl + Shift + NumPad+ expand all code blocks

Ctrl + Shift + NumPad- shrink all code blocks

in PyCharm /opt/pycharm-3.4.1 You can find the English version of ReferenceCard.pdf shortcut keys in the /help directory

PyCharm Default Keymap

PyCharm3.0 default shortcut keys (translated)

1. Editing (Editing)

Ctrl + Space Basic Code completion (classes, methods, properties)

Ctrl + Alt + Space Quickly import any class

Ctrl + Shift + Enter Statement completion

Ctrl + P Parameter information (call parameters in methods)

Ctrl + Q Quick view Documentation

Shift + F1 External documentation

Ctrl + Mouse Introduction

Ctrl + F1 Display error description or warning message

Alt + Insert Automatically generate code

Ctrl + O Re-method

Ctrl + Alt + T Select

Ctrl + / Line comment

Ctrl + Shift + / Block comment

Ctrl + W Select the added code block

Ctrl + Shift + W Return to the previous state

Ctrl + Shift + ]/[ End of the selected code block, Start

Alt + Enter Quick fix

Ctrl + Alt + L Code formatting

Ctrl + Alt + O Optimize import

Ctrl + Alt + I Automatic indent

Tab / Shift + Tab Indent, not indent Current line

Ctrl+X/Shift+Delete Cut the current line or selected code block to the clipboard

Ctrl+C/Ctrl+Insert Copy the current line or selected code block to the clipboard

Ctrl+V /Shift+Insert Paste from clipboard

Ctrl + Shift + V Paste from recent buffer

Ctrl + D Copy selected range or lines

Ctrl + Y Delete selected lines

Ctrl + Shift + J Add smart line

Ctrl + Enter Smart line cutting

Shift + Enter Start a new line

Ctrl + Shift + U Switch between selected areas or code blocks

Ctrl + Delete Delete to the end of the character

Ctrl + Backspace Delete to the beginning of the character

Ctrl + Numpad+/- Expand the collapsed code block

Ctrl + Numpad+ Expand all

Ctrl + Numpad- Collapse all

Ctrl + F4 Close the running tab

2. Find/Replace ( Search/Replace)

F3 Next

Shift + F3 Previous

Ctrl + R Replace

Ctrl + Shift + F Global search

Ctrl + Shift + R Global replace

3. Running

Alt + Shift + F10 Run mode configuration

Alt + Shift + F9 Debug mode configuration

Shift + F10 Run

Shift + F9 Debug

Ctrl + Shift + F10 Run editor configuration

Ctrl + Alt + R Run manage.py task

4. Debugging

F8 Skip

F7 Enter

Shift + F8 Exit

Alt + F9 Run cursor

Alt + F8 Verify expression

Ctrl + Alt + F8 Quickly verify expressions

F9 Resume program

Ctrl + F8 Breakpoint switch

Ctrl + Shift + F8 View breakpoints

5. Navigation (Navigation)

Ctrl + N Jump to class

Ctrl + Shift + N Jump to the symbol

Alt + Right/Left Jump to the next or previous editing tab

F12 Return to the previous tool window

Esc Return to the editing window from the tool window

Shift + Esc Hide the running and recently running windows

Ctrl + Shift + F4 Close the actively running tab

Ctrl + G View the current line number and character symbol

Ctrl + E The current file pops up

Ctrl+Alt+Left /Right Back, forward

Ctrl+Shift+Backspace Navigate to the recent editing area

Alt + F1 Find the current file or logo

Ctrl+B / Ctrl+Click Jump to statement

Ctrl + Alt + B Jump to Implement

Ctrl + Shift + I to view quick definition

Ctrl + Shift + B jump to type declaration

Ctrl + U jump to parent method, parent class

Alt + Up/Down jump to previous and next A method

Ctrl + ]/[jump to the end and start of the code block

Ctrl + F12 pop up file structure

Ctrl + H type hierarchy

Ctrl + Shift + H method hierarchy

Ctrl + Alt + H Call hierarchy

F2 / Shift + F2 Next and previous highlighted errors

F4 / Ctrl + Enter to edit resources and view resources

Alt + Home to display the navigation bar F11 bookmark switch

Ctrl + Shift + F11 bookmark Mnemonic switch

Ctrl + #[0-9] Jump to the marked bookmark

Shift + F11 to display the bookmark

6. Search related (Usage Search)

Alt + F7/Ctrl + F7 Query in the file Usage

Ctrl + Shift + F7 Highlight usage in the file

Ctrl + Alt + F7 Show usage

7. Refactoring

F5 Copy F6 Cut

Alt + Delete Safely delete

Shift + F6 Rename

Ctrl + F6 Change Signature

Ctrl + Alt + N Inline

Ctrl + Alt + M extraction method

Ctrl + Alt + V to extract attributes

Ctrl + Alt + F to extract fields

Ctrl + Alt + C to extract constants

Ctrl + Alt + P to extract parameters

8, Control VCS/Local History

Ctrl + K Submit project

Ctrl + T Update project

Alt + Shift + C View recent changes

Alt + BackQuote(')VCS quick popup

9. Template (Live Templates)

Ctrl + Alt + JCurrent line uses templates

Ctrl +JInsert templates

10. Basic (General)

Alt + #[0-9] Open the corresponding tool window

Ctrl + Alt + Y Sync

Ctrl + Shift + F12 Maximize editing switch

Alt + Shift + F Add to favorites

Alt + Shift + I Check current file according to configuration

Ctrl + BackQuote(') Quickly switch current plan

Ctrl + Alt + S Open the settings page

Ctrl + Shift + A to find all actions in the editor

Ctrl + Tab to switch between windows


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.