4
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Emacsでバージョン管理下のコードの変更点を視覚化(diff-hl.el)

Last updated at Posted at 2014-02-27

Git管理下のコードなら、git-gutter.elやgit-gutter-fringe.elを使って変更点を視覚化できるが、Subversion, CVSなどには対応していない。

diff-hl.el

https://github.com/dgutov/diff-hl
diff-hl.elは、GitやSubversionなどのVCバックエンドに対応しているバージョン管理下のコードの変更点を視覚化することができる。

設定

.emacs
; diff-hl.el
; バージョン管理下のコードをハイライト
(global-diff-hl-mode)
(add-hook 'dired-mode-hook 'diff-hl-dired-mode)
(unless (window-system) (diff-hl-margin-mode))

スクリーンショット

diff-hl.el.png

問題点(1)

行番号表示(linum)モードと併用できない。

問題点(2)

Emacsのモードラインに一文字空白が余計に入ってしまう。

diff-hl.el問題点.png

4
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?