This adds an alternative backend to the :ui vc-gutter module, enabled with the +diff-hl flag. In the future, I intend for diff-hl to replace git-gutter, as it is slightly faster and depends on more native functionality (vc.el), but it's still a little buggy. It will remain opt-in until those issues are sorted out.
11 lines
402 B
EmacsLisp
11 lines
402 B
EmacsLisp
;;; ui/vc-gutter/autoload/vc-gutter.el -*- lexical-binding: t; -*-
|
|
;;;###if (not (featurep! +diff-hl))
|
|
|
|
;;;###autoload
|
|
(defalias '+vc-gutter/stage-hunk #'git-gutter:stage-hunk)
|
|
;;;###autoload
|
|
(defalias '+vc-gutter/revert-hunk #'git-gutter:revert-hunk)
|
|
;;;###autoload
|
|
(defalias '+vc-gutter/next-hunk #'git-gutter:next-hunk)
|
|
;;;###autoload
|
|
(defalias '+vc-gutter/previous-hunk #'git-gutter:previous-hunk)
|