pycharm快捷鍵

CTRL + SHIFT  + 上/下(方向箭)        ===========》  將光標所在行的代碼向上或向下移動express

CTRL + SHIFT + J               ===========》 將光標所在行代碼和下一行代碼鏈接爲一行,並移除沒必要要的空格,匹配你的代碼樣式app

CTRL + Y       =============>   刪除光標所在行代碼  或 選中的行ide

SHIFT + Delete    ==========》 刪除光標所在行代碼 顴選中的行函數

CTRL + SHIFT + Backspace ( Navigate | Last Edit Location ) brings you to the last place where you made changes in the code.字體

Pressing Ctrl + Shift + Backspace a few times moves you deeper into your changes history.ui

CTRL + /         註釋光標所在的行,或所選擇的行this

CTRL + P       將光標放在函數的圓括號裏,按CTRL + P ,能夠顯示參數編碼

CTRL + ]        光標跳到行尾spa

CTRL + [        光標跳到行首插件

SHIFT + Enter  快速 換行,即光標無需在行尾

CTRL + E    調出 Recent Files 對話框

 

pycharm   run 運行 改成 ALT + X  ,原來爲shift + F10

 

CTRL + 上箭頭/下箭頭          向下滾動代碼,向上滾動代碼 (便於查看代碼),代替鼠標操做,更加快捷

When using basic code completion ( CtrL + 空格 ),type any characters  tha exists anywhere in an identifier.

 

Use Alt + 向上箭頭 and  Alt + 向下箭頭 kyes to quicky move between methods in the editor

 

 

 

 

 

 

 1、在PyCharm下爲你的Python項目配置Python解釋器

    一、Settings--》Editor--》Project:當前項目名--》Project Interpreter--》Add Local

  2、在Python下建立Python文件、Python模塊

    一、File--》New--》Python File

    二、File--》New--》Python Package

  3、使用PyCharm安裝Python第三方模塊

    一、Settings--》Editor--》Project:當前項目名--》Project Interpreter--》點擊右側綠色加號

  4、Python基本設置

    一、不使用Tab,Tab=4空格:Editor--》Code Style--》Python--》Tabs and Indents頁籤

    二、字體、字體顏色:           Editor--》Colors & Fonts--》Font/Language Defaults/Python

    三、關閉自動更新:              Editor--》Appearance & Behavior--》System Settings--》Updates

    四、腳本頭設置:                 Editor--》Code Style--》File and Code Templates--》Python Script

    五、顯示行號:         Editor--》General--》Appearance--》Show line numbers

    六、右側豎線是PEP8的代碼規範:提示一行不要超過120個字符。

    七、導出、導入你自定義的配置:File--》Export Settings、Import Settings

  5、經常使用快捷鍵

     Editor--》Keymap

    一、Crtl + D :複製當前行

    二、Ctrl + Y  :刪除當前行

    三、Shift + Enter :快速換行

    四、Ctrl + / :快速註釋 (選中多行後能夠批量註釋)

    五、Tab :縮進當前行 (選中多行後能夠批量縮進)

    六、Shift + Tab :取消縮進 (選中多行後能夠批量取消縮進)

    七、Ctrl + F :查找

    八、Ctrl + R :替換

    九、Ctrl + ] :跳到行尾

    十、Ctrl + [:跳到行首

  6、PyCharm安裝插件

    一、 Editor--》Plugins Editor--》Browse repositories --》Install

  7、Git配置

    一、Editor--》Version Control--》Git

  8、經常使用操做指南

    一、複製文件路徑:左側文件列表右鍵選中的文件--》Copy Path

    二、在文件管理器中打開:左側文件列表右鍵選中的文件--》Show in Explorer

    三、快速定位:Ctrl + 某些內建模塊以後,點擊在原文件中展開

      Scroll from Source / Collapse All

    四、查看結構:IDE左側邊欄Structure查看當前項目的結構

    五、Tab批量換Space:Edit--》Convent Indents--》To Spaces/To Tobs

    六、TODO的使用:#TODO要作的事情

    七、把當前Tab頁移到窗口右邊(下邊),方便對比:Tab頁籤右鍵--》Move to Right(Down)

    八、查看文件修改先後對比:文件中右鍵--》Local History

    九、IDE右下角一些有用的信息:當前光標在第幾行的第幾個字符/當前回車換行/當前編碼類型/當前Git分支

    十、IDE右側邊欄--》DataBase

  9、PEP8代碼規範

    一、單獨一行的註釋:# + 1空格 + 註釋內容

    二、代碼後跟着的註釋:2空格 + # + 1空格 + 註釋內容

 

  10、SSH Terminal Default encoding

    一、Editor--》Tools--》SSH Terminal--》Default encoding UTF-8

  11、編碼統一

    Editor--》File Encoding--》IDE Encoding 和 Project Encoding 編碼統一 UTF-8

Use Ctrl + Shift + F7 ( Edit | Find | Highlight Usages in File ) to quickly highlight usages of some variable in the current file.

Use F3 and Shitf + F3 keys to navigate through highlighted usages

Press Esc to remove highlighting.

 

With a single keystroke, you cna apply another code style/coding scheme or keymap right from the editor. Just press Ctrl + ` (View | Quick Switch Scheme ), to specify the scheme you want to change.

 

 

To see your local history of changes in a file,invoke  Local History |  Show History from the context menu.

You can navigate through difference file versions, see the differences and roll back to any previous versiion.

Use the same context menu item to see the history of changes on a directory. You will never lose any code with this feature!

 翻譯過來就是:要查看一個文件的改變的本地歷史,能夠調用上下菜單(即右鍵菜單)的 Local History ---》 Show History 命令。你能夠經過不一樣文件版原本導航,查看版本之間的不一樣及及回退(回滾)到以前的版本。

在一個目錄上使用一樣的上下文環境,來查看目錄的修改歷史。

 

Use the Ctrl + Shift + v shotchut to choose and insert recent clipboard contents into the text

 

Ctrl + w (extend selection) in the editor selects the word at the caret and then selects expanding areas of the source code. For example, it mya select a method name, the the expression that calls this method, then the whole statement, then containing block, etc. You can  also select the word at the caret and the expanding areas of the source code by double-clicking the target areas in the editor.

 

The Ctrl + shift + J shortcut joins two lines into one and remove unnecessary spaces to match your code style.

 Ctrl + D in the editor duplicates the selected block or the current line when no block selected.

相關文章
相關標籤/搜索