Add support for prefix arg to vc-push and vc-pull
Dependencies
- [2]
AQ7J5S5EAdd support for vc-pull - [3]
Z33EQSBWAdd support for vc-push - [4]
V4ZIPDRUUpdate the README - [5]
MAGPFPZBinit - [6]
OXA7DUHMCreate README.md - [7]
VBTAFJFKSwitch from DARCS to Pijul
Change contents
- edit in vc-pijul.el at line 419
(defun vc-pijul--handle-prompt (command args)(let* ((root (vc-pijul-root default-directory))(buffer (format "*vc-pijul : %s*" (expand-file-name root))))(setq args (split-string(read-shell-command(format "Pijul %s command: " command)(format "%s %s %s" vc-pijul-program-name command (concat args)))" " t))(setq pijul-program (car args)command (cadr args)args (cddr args))(require 'vc-dispatcher)(apply #'vc-do-async-command buffer root pijul-program command args))) - replacement in vc-pijul.el at line 436
(vc-pijul-do-command 'push 0 nil))(if arg(vc-pijul--handle-prompt "push" nil)(vc-pijul-do-command 'push 0 nil))) - replacement in vc-pijul.el at line 442
(vc-pijul-do-command 'pull 0 nil))(if arg(vc-pijul--handle-prompt "pull" nil)(vc-pijul-do-command 'pull 0 nil))) - edit in README.md at line 18
TODO:fix C-u argument