10.07-Idea的使用

1、Idea配置html

    -一、指定設置中maven的路徑和Git的路徑git

        --1.一、配置maven路徑:github

            ---(1)Configure — Settings — 搜索「Maven」 緩存

            ---(2)點擊「Maven」,在右側的「Maven home directory」中選擇已安裝maven的根目錄,而後「User setting file」選擇maven根目錄下conf文件中的setting.xml文件,最後點擊Apply。maven

        --1.二、配置Git路徑編輯器

            ---(1)Configure — Settings — 搜索「Git」ide

            ---(2)點擊「Git」,在右側「Path to Git executable」中選擇安裝Git的bin目錄中Git.exe文件,而後點擊「Test」,成功後點擊Apply。函數

 

    -二、Idea界面、字體、背景配置測試

        --2.一、界面配置字體

            ---(1)點擊「View」,勾選「Toolbar」,取消勾選「Navigation Bar」;

        --2.二、字體配置

            ---(1)先配置全局的字體,「Settings」 — 「Appearance&BeHavior」 — 「Appearance」 — 勾選 「Use custom font」 選擇字體

            ---(2)設置編輯器的字體,「Settings」 — 」Editor」 — 「Font」 —在右側「Font」和「Size」設置字體的字體大小

        --2.三、背景設置

            ---(1)編輯器字體背景,「Settings」 — 」Editor」 — 「Color Scheme」 — 「General」,右側點擊「Text」 — 「Default text」,最右側勾選「Bold」和選擇「Background」(護眼色: #C7EDCC

            ---(2)設置背景圖片:「Settings」 — 「Keymap」 — 輸入「Set Background Image」搜索,設置快捷鍵(Ctrl + Alt +Shift + Q),使用快捷鍵選擇上傳的圖片,調試好。

    -三、功能設置

        --3.一、統一編碼:「Settings」 — 「Editor」 — 「File Encodings」,將右側的編碼統一改成UTF-8,勾上「Transparent native-to-ascii conversion」,使配置文件不亂碼

        --3.二、方法分隔線:「Settings」 — 「Editor」 — 「General」 — 「Appearance」,右側勾上「Show method separators」

        --3.三、類的註釋模板:「Setting」 — 「Editor」 — 「File and Code Template」 — 「Includes」 — 「File Header」,編寫想要的模板,以下:     

/**
 * @Author Lee_Finn
 * @Date ${DATE}
 * @Time ${TIME}
 * @Desc null
 */

        --3.四、設置Tab鍵:「Setting」 — 「Editor」 — 「Code Style」 — 「Java」 — 「Tabs and Indents」,點擊「Use tab character」

        --3.五、設置單行註釋:「Setting」 — 「Editor」 — 「Code Style」 — 「Java」 — 「Code Generation」,取消勾選「Line comment at first column」,勾選「Add a space at comment start」

        --3.六、設置Idea內存:找到並打開Idea安裝地址bin目錄下idea.exe.vmoptions和idea64.exe.vmoptions

-Xms2048m
-Xmx2048m
-XX:ReservedCodeCacheSize=1024m                 (測試調試地址:https://blog.csdn.net/github_32521685/article/details/50541436

           

    

   

    

 

1.一、 修改idea緩存文件位置(修改後須要從新;也能夠將原來的緩存複製到想要存放的位置,這樣就不須要了)

    1.1.一、 找到idea.properties(在idea安裝目錄的bin目錄中),用記事本打開,找到以下的代碼 :

#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE config folder. Make sure you're using forward slashes.
#---------------------------------------------------------------------
# idea.config.path=${user.home}/.IntelliJIdea/config

#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE system folder. Make sure you're using forward slashes.
#---------------------------------------------------------------------
# idea.system.path=${user.home}/.IntelliJIdea/system

1.1.二、配置本身想要存在的位置

#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE config folder. Make sure you're using forward slashes.
#---------------------------------------------------------------------
# idea.config.path=${user.home}/.IntelliJIdea/config
idea.config.path=D:/AppTools/Idea/IdeaIU/cache/config

#---------------------------------------------------------------------
# Uncomment this option if you want to customize path to IDE system folder. Make sure you're using forward slashes.
#---------------------------------------------------------------------
# idea.system.path=${user.home}/.IntelliJIdea/system
idea.system.path=D:/AppTools/Idea/IdeaIU/cache/system
 

1.三、設置idea構建堆的大小

 

2、Idea的基本樣式設置

   

File  --> Settings --> Editor --> Color Scheme --> General --> 右側 Text --> Default text 點擊  ,

勾上Bold則會對編碼頁面的字體加粗, 勾上Italic則會將編碼頁面的字體變成斜體

點擊Background則會改變編碼的背景色(護眼色爲 R:199,G:237,B:204)

  

2.1.2-左邊欄背景色設置

首先將電腦設置成護眼模式,而後在Idea的setting中以下圖設置,確認便可

  

3、快捷鍵設置

    3.1-  Ctrl    +    其餘鍵 

序號 快 捷 鍵 Idea 默認 自定義(me)
0一、 Ctrl                            +                            A 選中全部  
0二、 Ctrl                            +                            B 查看類、方法、定義的字段或者關鍵字的聲明  
0三、 Ctrl                            +                            C 複製選中的  
0四、 Ctrl                            +                            D 複製行 刪除行
0五、 Ctrl                            +                            E 能夠顯示最近編輯的文件列表  
0六、 Ctrl                            +                            F 查找  
0七、 Ctrl                            +                            G 定位行  
0八、 Ctrl                            +                            H 顯示類結構圖(類的繼承層次) 全局查找
0九、 Ctrl                            +                            I 實現方法  
十、 Ctrl                            +                            J 自動代碼  
十一、 Ctrl                            +                            M 讓光標處位於文本中間  
十二、 Ctrl                            +                            N 查找類  
1三、 Ctrl                            +                            O 重寫方法  
1四、 Ctrl                            +                            Q 顯示註釋文檔  
1五、 Ctrl                            +                            R 替換文本  
1六、 Ctrl                            +                            S 保存  
1七、 Ctrl                            +                            U 找到對應的父類  
1八、 Ctrl                            +                            V 粘貼  
1九、 Ctrl                            +                           W 能夠選擇單詞繼而選中語句繼而選中行繼而選中函數  
20、 Ctrl                            +                            X 剪切  
2一、 Ctrl                            +                            Y 刪除代碼 無效
2二、 Ctrl                            +                            Z 撤回上一步  
2三、 Ctrl                            +                     - 或 + 當前方法的摺疊或展開  
2四、 Ctrl                            +                      Enter 語句前,向上插一行;語句末尾,向下插一行  
2五、 Ctrl                            +                           F7 查詢當前元素在當前文件中的引用,而後按 F3 能夠選擇  
2六、 Ctrl                            +                           F12 浮動顯示當前文件的結構  
2七、 Ctrl                            +                            ~ 快速切換方案(界面外觀、代碼風格、快捷鍵映射等菜單)  

 3.2- Alt    +    其餘鍵

序號 快 捷 鍵 Idea 默認 自定義(me)
0一、 Alt                            +                            J 選擇多個相同關鍵字的數據  
0二、 Alt                            +                            Q 查看當前方法的聲明  
0三、 Alt                            +                            Insert 生成構造器/Getter/Setter等  
0四、 Alt                            +                            Up/Down 在方法間快速移動定位  
0五、 Alt                            +                            Left/Right 切換代碼視圖  
0六、 Alt                            +                            1 快速打開或隱藏工程面板  
0七、 Alt                            +                            F1 查找代碼所在位置  
0八、 Alt                            +                            F3 查找相同文本,並高亮顯示  
0九、 Alt                            +                            F7 查找整個工程中使用地某一個類、方法或者變量的位置  

  3.3- Shift    +    其餘鍵

序號 快 捷 鍵 Idea 默認 自定義(me)
0一、 shift                        +                                click 關閉點擊的文件  

3.4- Ctrl    +    Shift    +    其餘鍵  

序號 快 捷 鍵 Idea 默認 自定義(me)
0一、 Ctrl                +                Shift                +                E 最近更改的文件  
0二、      

3.5- Ctrl    +    Alt    +    其餘鍵

序號 快 捷 鍵 Idea 默認 自定義(me)
0一、 Ctrl            +            Alt            +            left/right 返回至上次瀏覽的位置  
0二、 Ctrl            +            Alt            +            up/down 向上/下移動語句  
0三、 Ctrl            +            Alt            +            B 跳轉到抽象方法的實現 無效
0四、 Ctrl            +            Alt            +            I 將選中的代碼進行自動縮進編排(html文件也行)  
0五、 Ctrl            +            Alt            +            J 用動態模板環繞  
0六、 Ctrl            +            Alt            +            L 格式化代碼 無效
相關文章
相關標籤/搜索