emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] scratch/add-vdiff 4bb84e4 073/258: Add update command to hydra


From: Justin Burkett
Subject: [elpa] scratch/add-vdiff 4bb84e4 073/258: Add update command to hydra
Date: Wed, 17 May 2017 08:13:25 -0400 (EDT)

branch: scratch/add-vdiff
commit 4bb84e42b6f4f09dc176e2d88af4d3725a8df51a
Author: justbur <address@hidden>
Commit: justbur <address@hidden>

    Add update command to hydra
---
 vdiff.el | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/vdiff.el b/vdiff.el
index 6cdd63e..37f1cf1 100644
--- a/vdiff.el
+++ b/vdiff.el
@@ -1010,22 +1010,23 @@ enabled automatically if `vdiff-lock-scrolling' is 
non-nil."
   (defhydra vdiff-hydra (nil nil :hint nil :foreign-keys run)
     "
  Navigation^^             Transmit^^        Folds^^^^                Other^^
- -^^-------------------  --^^------------  -^^^^------------------  
--^-^---------------
- [_n_] next change        [_s_] send        [_o_/_O_] open (all)     [_w_] 
save buffers
- [_p_] previous change    [_r_] receive     [_c_/_C_] close (all)    [_q_] 
quit hydra
- [_g_] goto corr. line     ^ ^               ^ ^ ^ ^                 [_Q_] 
quit vdiff "
-    ("g" vdiff-goto-corresponding-line)
+ -^^-------------------  --^^------------  -^^^^------------------  
--^-^-^-^-------------------
+ [_n_] next change        [_s_] send        [_o_/_O_] open (all)     [_u_]^ ^  
update diff
+ [_p_] previous change    [_r_] receive     [_c_/_C_] close (all)    [_w_]^ ^  
save buffers
+ [_g_] goto corr. line     ^ ^               ^ ^ ^ ^                 [_q_/_Q_] 
quit hydra/vdiff"
     ("n" vdiff-next-change)
     ("p" vdiff-previous-change)
+    ("g" vdiff-goto-corresponding-line)
     ("s" vdiff-send-changes)
     ("r" vdiff-receive-changes)
-    ("Q" vdiff-quit)
-    ("w" vdiff-save-buffers)
     ("o" vdiff-open-fold)
     ("O" vdiff-open-all-folds)
     ("c" vdiff-close-fold)
     ("C" vdiff-close-all-folds)
-    ("q" nil :exit t)))
+    ("u" vdiff-refresh)
+    ("w" vdiff-save-buffers)
+    ("q" nil :exit t)
+    ("Q" vdiff-quit)))
 
 (provide 'vdiff)
 ;;; vdiff.el ends here



reply via email to

[Prev in Thread] Current Thread [Next in Thread]