Vim 是 Linux 下一款很經常使用的文本編輯器,雖然它對初學者而言並不友好,但經過一些插件的配合,它能夠被打形成一款很強大的 IDE 。良許曾經介紹過三款很經常使用的插件,可點擊如下連接查看:linux
本文再介紹一款 Vim 編輯器中的一款很強大插件—— VIM Fugitive
。這款插件能夠實現你在 Vim 編輯器裏直接完成 Git 操做,而無需退出 Vim 。更多 Linux 精選乾貨電子書,可在公衆號「良許Linux」後臺回覆 「資料」獲取。github
這個插件是開源項目,咱們能夠在如下地址獲取源碼:面試
https://github.com/tpope/vim-fugitive複製代碼
安裝方法:vim
cd ~/.vim/bundle
git clone https://github.com/tpope/vim-fugitive.git
vim -u NONE -c "helptags vim-fugitive/doc" -c q複製代碼
如今進行一些基本功能演示。假如如今有這麼一段代碼:編輯器
1 package main
2
3 import "fmt"
4
5 func main() {
6 x := true
7 items := []string{"tv", "pc", "tablet"}
8
9 if x {
10 for _, i := range items {
11 fmt.Println(i)
12 }
13 }
14 }複製代碼
如今咱們將第 6 行刪除,再修改第 9 行,同時在 11 行後添加一行代碼。如今咱們想查看這些修改,按往常作法,咱們是先保存文檔再退出,而後執行 git status 。學習
但如今,咱們沒必要退出,直接在命令模式下輸入 :Gstatus ,直接就能夠看到改動:spa
1 # On branch master
2 # Your branch is up to date with 'origin/master'.
3 #
4 # Changes not staged for commit:
5 # (use "git add <file>..." to update what will be committed)
6 # (use "git checkout -- <file>..." to discard changes in working directory)
7 #
8 # modified: vim-5plugins/examples/test1.go
9 #
10 no changes added to commit (use "git add" and/or "git commit -a")
--------------------------------------------------------------------------------------------------------
1 package main
2
3 import "fmt"
4
_ 5 func main() {
6 items := []string{"tv", "pc", "tablet"}
7
~ 8 if len(items) > 0 {
9 for _, i := range items {
10 fmt.Println(i)
+ 11 fmt.Println("------")
12 }
13 }
14 }複製代碼
如結果所示,Vim Fugitive 打開了一個有上下分屏的界面,上面一半,跟咱們日常執行 git status 看到的結果同樣,下面一半,就是具體發動內容,跟 git diff 相似。.net
2020 精選 阿里/騰訊等一線大廠 面試、簡歷、進階、電子書 公衆號「良許Linux」後臺回覆「資料」免費獲取插件
在下半屏裏,有三個符號:_
表示在第 5 行與第 6 行之間有代碼被刪除,~
表示在第 8 行代碼被修改過,+
表示 11 行新增了代碼。
一樣的,咱們能夠查看每行代碼是誰改的,能夠用 git blame ,而在這裏對應的是 Gblame 。
e9949066 (Alvin Yan 2019-6-7 18:17:19 -0500)│ 1 package main
e9949066 (Alvin Yan 2019-6-7 18:17:19 -0500)│ 2
e9949066 (Alvin Yan 2019-6-7 18:17:19 -0500)│ 3 import "fmt"
e9949066 (Alvin Yan 2019-6-7 18:17:19 -0500)│ 4
e9949066 (Alvin Yan 2019-6-7 18:17:19 -0500)│_ 5 func main() {
e9949066 (Alvin Yan 2019-6-7 18:17:19 -0500)│ 6 items := []string{"tv", "pc", "tablet"}
e9949066 (Alvin Yan 2019-6-7 18:17:19 -0500)│ 7
00000000 (Not Committed Yet 2019-6-7 18:55:00 -0500)│~ 8 if len(items) > 0 {
e9949066 (Alvin Yan 2019-6-7 18:17:19 -0500)│ 9 for _, i := range items {
e9949066 (Alvin Yan 2019-6-7 18:17:19 -0500)│ 10 fmt.Println(i)
00000000 (Not Committed Yet 2019-6-7 18:55:00 -0500)│+ 11 fmt.Println("------")
e9949066 (Alvin Yan 2019-6-7 18:17:19 -0500)│ 12 }
e9949066 (Alvin Yan 2019-6-7 18:17:19 -0500)│ 13 }
e9949066 (Alvin Yan 2019-6-7 18:17:19 -0500)│ 14 }複製代碼
咱們一樣也看到第 8 和 11 行尚未提交。
如今咱們想要提交咱們的改動,能夠敲入 :Gcommit 命令。Vim Fugitive 將打開另一塊區域,咱們能夠在裏面寫入要提交的信息。
1 vim-5plugins: Updated test1.go example file
2 # Please enter the commit message for your changes. Lines starting
3 # with '#' will be ignored, and an empty message aborts the commit.
4 #
5 # On branch master
6 # Your branch is up to date with 'origin/master'.
7 #
8 # Changes to be committed:
9 # modified: vim-5plugins/examples/test1.go
10 #複製代碼
而後咱們就能夠執行 :wq 結束提交。
[master c3bf80f] vim-5plugins: Updated test1.go example file
1 file changed, 2 insertions(+), 2 deletions(-)
Press ENTER or type command to continue複製代碼
咱們一樣能夠繼續使用 :Gstatus 來查看提交後的狀態,也可使用 :Gpush 將提交推送到遠程倉庫。
1 # On branch master
2 # Your branch is ahead of 'origin/master' by 1 commit.
3 # (use "git push" to publish your local commits)
4 #
5 nothing to commit, working tree clean複製代碼
以上這些是 Vim Fugitive 最基礎的用法,若是想學習它的更高級用法,能夠去它的 Github倉庫查看,那裏有更詳細的教程。