Update packages

This commit is contained in:
Gergely Polonkai 2016-10-18 12:52:16 +02:00
parent c632ce604e
commit 175a795998
225 changed files with 379 additions and 259 deletions

View File

@ -3,8 +3,8 @@
;;; Code: ;;; Code:
(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path)))) (add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path))))
;;;### (autoloads nil "ace-window" "ace-window.el" (22527 12801 878759 ;;;### (autoloads nil "ace-window" "ace-window.el" (22535 7932 710222
;;;;;; 425000)) ;;;;;; 652000))
;;; Generated autoloads from ace-window.el ;;; Generated autoloads from ace-window.el
(autoload 'ace-select-window "ace-window" "\ (autoload 'ace-select-window "ace-window" "\

View File

@ -1,2 +1,2 @@
;;; -*- no-byte-compile: t -*- ;;; -*- no-byte-compile: t -*-
(define-package "ace-window" "20160923.1117" "Quickly switch windows." '((avy "0.2.0")) :url "https://github.com/abo-abo/ace-window" :keywords '("window" "location")) (define-package "ace-window" "20161018.1624" "Quickly switch windows." '((avy "0.2.0")) :url "https://github.com/abo-abo/ace-window" :keywords '("window" "location"))

View File

@ -5,7 +5,7 @@
;; Author: Oleh Krehel <ohwoeowho@gmail.com> ;; Author: Oleh Krehel <ohwoeowho@gmail.com>
;; Maintainer: Oleh Krehel <ohwoeowho@gmail.com> ;; Maintainer: Oleh Krehel <ohwoeowho@gmail.com>
;; URL: https://github.com/abo-abo/ace-window ;; URL: https://github.com/abo-abo/ace-window
;; Package-Version: 20160923.1117 ;; Package-Version: 20161018.1624
;; Version: 0.9.0 ;; Version: 0.9.0
;; Package-Requires: ((avy "0.2.0")) ;; Package-Requires: ((avy "0.2.0"))
;; Keywords: window, location ;; Keywords: window, location
@ -109,6 +109,11 @@ This will make `ace-window' act different from `other-window' for
one or two windows." one or two windows."
:type 'boolean) :type 'boolean)
(defcustom aw-reverse-frame-list nil
"When non-nil `ace-window' will order frames for selection in
the reverse of `frame-list'"
:type 'boolean)
(defface aw-leading-char-face (defface aw-leading-char-face
'((((class color)) (:foreground "red")) '((((class color)) (:foreground "red"))
(((background dark)) (:foreground "gray100")) (((background dark)) (:foreground "gray100"))
@ -395,7 +400,7 @@ Windows are numbered top down, left to right."
(e2 (window-edges wnd2))) (e2 (window-edges wnd2)))
(cond ((string< (frame-parameter f1 'window-id) (cond ((string< (frame-parameter f1 'window-id)
(frame-parameter f2 'window-id)) (frame-parameter f2 'window-id))
nil) aw-reverse-frame-list)
((< (car e1) (car e2)) ((< (car e1) (car e2))
t) t)
((> (car e1) (car e2)) ((> (car e1) (car e2))

View File

@ -1 +0,0 @@
(define-package "dash" "20160820.501" "A modern list library for Emacs" 'nil :keywords '("lists"))

View File

@ -1,10 +1,9 @@
;;; dash-autoloads.el --- automatically extracted autoloads ;;; dash-autoloads.el --- automatically extracted autoloads
;; ;;
;;; Code: ;;; Code:
(add-to-list 'load-path (or (file-name-directory #$) (car load-path))) (add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path))))
;;;### (autoloads nil nil ("dash-pkg.el" "dash.el") (22490 24939 ;;;### (autoloads nil nil ("dash.el") (22533 64997 280351 636000))
;;;;;; 339398 67000))
;;;*** ;;;***

View File

@ -0,0 +1,2 @@
;;; -*- no-byte-compile: t -*-
(define-package "dash" "20161018.136" "A modern list library for Emacs" 'nil :keywords '("lists"))

View File

@ -4,7 +4,7 @@
;; Author: Magnar Sveen <magnars@gmail.com> ;; Author: Magnar Sveen <magnars@gmail.com>
;; Version: 2.13.0 ;; Version: 2.13.0
;; Package-Version: 20160820.501 ;; Package-Version: 20161018.136
;; Keywords: lists ;; Keywords: lists
;; This program is free software; you can redistribute it and/or modify ;; This program is free software; you can redistribute it and/or modify
@ -1261,6 +1261,7 @@ See also: `-select-columns', `-select-by-indices'"
in the first form, making a list of it if it is not a list in the first form, making a list of it if it is not a list
already. If there are more forms, insert the first form as the already. If there are more forms, insert the first form as the
second item in second form, etc." second item in second form, etc."
(declare (debug (form &rest [&or symbolp (sexp &rest form)])))
(cond (cond
((null form) x) ((null form) x)
((null more) (if (listp form) ((null more) (if (listp form)
@ -1273,6 +1274,7 @@ second item in second form, etc."
in the first form, making a list of it if it is not a list in the first form, making a list of it if it is not a list
already. If there are more forms, insert the first form as the already. If there are more forms, insert the first form as the
last item in second form, etc." last item in second form, etc."
(declare (debug ->))
(cond (cond
((null form) x) ((null form) x)
((null more) (if (listp form) ((null more) (if (listp form)
@ -1285,6 +1287,7 @@ last item in second form, etc."
signified by the token `it' in the first form. If there are more signified by the token `it' in the first form. If there are more
forms, insert the first form at the position signified by `it' in forms, insert the first form at the position signified by `it' in
in second form, etc." in second form, etc."
(declare (debug ->))
(if (null more) (if (null more)
(if (listp form) (if (listp form)
(--map-when (eq it 'it) x form) (--map-when (eq it 'it) x form)
@ -1294,6 +1297,7 @@ in second form, etc."
(defmacro -some-> (x &optional form &rest more) (defmacro -some-> (x &optional form &rest more)
"When expr is non-nil, thread it through the first form (via `->'), "When expr is non-nil, thread it through the first form (via `->'),
and when that result is non-nil, through the next form, etc." and when that result is non-nil, through the next form, etc."
(declare (debug ->))
(if (null form) x (if (null form) x
(let ((result (make-symbol "result"))) (let ((result (make-symbol "result")))
`(-some-> (-when-let (,result ,x) `(-some-> (-when-let (,result ,x)
@ -1303,6 +1307,7 @@ and when that result is non-nil, through the next form, etc."
(defmacro -some->> (x &optional form &rest more) (defmacro -some->> (x &optional form &rest more)
"When expr is non-nil, thread it through the first form (via `->>'), "When expr is non-nil, thread it through the first form (via `->>'),
and when that result is non-nil, through the next form, etc." and when that result is non-nil, through the next form, etc."
(declare (debug ->))
(if (null form) x (if (null form) x
(let ((result (make-symbol "result"))) (let ((result (make-symbol "result")))
`(-some->> (-when-let (,result ,x) `(-some->> (-when-let (,result ,x)
@ -1312,6 +1317,7 @@ and when that result is non-nil, through the next form, etc."
(defmacro -some--> (x &optional form &rest more) (defmacro -some--> (x &optional form &rest more)
"When expr in non-nil, thread it through the first form (via `-->'), "When expr in non-nil, thread it through the first form (via `-->'),
and when that result is non-nil, through the next form, etc." and when that result is non-nil, through the next form, etc."
(declare (debug ->))
(if (null form) x (if (null form) x
(let ((result (make-symbol "result"))) (let ((result (make-symbol "result")))
`(-some--> (-when-let (,result ,x) `(-some--> (-when-let (,result ,x)

View File

@ -3,8 +3,8 @@
;;; Code: ;;; Code:
(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path)))) (add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path))))
;;;### (autoloads nil "flycheck" "flycheck.el" (22527 12709 290696 ;;;### (autoloads nil "flycheck" "flycheck.el" (22535 7931 202223
;;;;;; 478000)) ;;;;;; 337000))
;;; Generated autoloads from flycheck.el ;;; Generated autoloads from flycheck.el
(autoload 'flycheck-manual "flycheck" "\ (autoload 'flycheck-manual "flycheck" "\
@ -228,7 +228,7 @@ Use this together with the `option', `option-list' and
;;;*** ;;;***
;;;### (autoloads nil nil ("flycheck-buttercup.el" "flycheck-ert.el" ;;;### (autoloads nil nil ("flycheck-buttercup.el" "flycheck-ert.el"
;;;;;; "flycheck-pkg.el") (22527 12709 286696 474000)) ;;;;;; "flycheck-pkg.el") (22535 7931 198223 338000))
;;;*** ;;;***

View File

@ -1,4 +1,4 @@
(define-package "flycheck" "20161012.433" "On-the-fly syntax checking" (define-package "flycheck" "20161018.1343" "On-the-fly syntax checking"
'((dash "2.12.1") '((dash "2.12.1")
(pkg-info "0.4") (pkg-info "0.4")
(let-alist "1.0.4") (let-alist "1.0.4")

View File

@ -213,6 +213,7 @@ attention to case differences."
php-phpmd php-phpmd
php-phpcs php-phpcs
processing processing
protobuf-protoc
pug pug
puppet-parser puppet-parser
puppet-lint puppet-lint
@ -246,6 +247,7 @@ attention to case differences."
slim slim
slim-lint slim-lint
sql-sqlint sql-sqlint
systemd-analyze
tex-chktex tex-chktex
tex-lacheck tex-lacheck
texinfo texinfo
@ -7974,6 +7976,26 @@ See https://github.com/processing/processing/wiki/Command-Line"
;; This syntax checker needs a file name ;; This syntax checker needs a file name
:predicate (lambda () (buffer-file-name))) :predicate (lambda () (buffer-file-name)))
(flycheck-define-checker protobuf-protoc
"A protobuf syntax checker using the protoc compiler.
See URL `https://developers.google.com/protocol-buffers/'."
:command ("protoc" "--error_format" "gcc"
(eval (concat "--java_out=" (flycheck-temp-dir-system)))
;; Add the file directory of protobuf path to resolve import directives
(eval (concat "--proto_path=" (file-name-directory (buffer-file-name))))
source-inplace)
:error-patterns
((info line-start (file-name) ":" line ":" column
": note: " (message) line-end)
(error line-start (file-name) ":" line ":" column
": " (message) line-end)
(error line-start
(message "In file included from") " " (file-name) ":" line ":"
column ":" line-end))
:modes protobuf-mode
:predicate (lambda () (buffer-file-name)))
(flycheck-define-checker pug (flycheck-define-checker pug
"A Pug syntax checker using the pug compiler. "A Pug syntax checker using the pug compiler.
@ -9139,6 +9161,15 @@ See URL `https://github.com/purcell/sqlint'."
line-end)) line-end))
:modes (sql-mode)) :modes (sql-mode))
(flycheck-define-checker systemd-analyze
"A systemd unit checker using systemd-analyze(1).
See URL `https://www.freedesktop.org/software/systemd/man/systemd-analyze.html'."
:command ("systemd-analyze" "verify" source-original)
:error-patterns
((error line-start "[" (file-name) ":" line "] " (message) line-end))
:modes (systemd-mode))
(flycheck-def-config-file-var flycheck-chktexrc tex-chktex ".chktexrc" (flycheck-def-config-file-var flycheck-chktexrc tex-chktex ".chktexrc"
:safe #'stringp) :safe #'stringp)

View File

@ -3,8 +3,8 @@
;;; Code: ;;; Code:
(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path)))) (add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path))))
;;;### (autoloads nil "helm-adaptive" "helm-adaptive.el" (22532 34656 ;;;### (autoloads nil "helm-adaptive" "helm-adaptive.el" (22535 7928
;;;;;; 132334 628000)) ;;;;;; 746224 452000))
;;; Generated autoloads from helm-adaptive.el ;;; Generated autoloads from helm-adaptive.el
(defvar helm-adaptive-mode nil "\ (defvar helm-adaptive-mode nil "\
@ -30,8 +30,8 @@ Useful when you have a old or corrupted `helm-adaptive-history-file'.
;;;*** ;;;***
;;;### (autoloads nil "helm-apt" "helm-apt.el" (22532 34656 96334 ;;;### (autoloads nil "helm-apt" "helm-apt.el" (22535 7928 710224
;;;;;; 318000)) ;;;;;; 468000))
;;; Generated autoloads from helm-apt.el ;;; Generated autoloads from helm-apt.el
(autoload 'helm-apt "helm-apt" "\ (autoload 'helm-apt "helm-apt" "\
@ -42,8 +42,8 @@ With a prefix arg reload cache.
;;;*** ;;;***
;;;### (autoloads nil "helm-bookmark" "helm-bookmark.el" (22532 34656 ;;;### (autoloads nil "helm-bookmark" "helm-bookmark.el" (22535 7928
;;;;;; 188335 110000)) ;;;;;; 806224 424000))
;;; Generated autoloads from helm-bookmark.el ;;; Generated autoloads from helm-bookmark.el
(autoload 'helm-bookmarks "helm-bookmark" "\ (autoload 'helm-bookmarks "helm-bookmark" "\
@ -60,8 +60,8 @@ only if external library addressbook-bookmark.el is available.
;;;*** ;;;***
;;;### (autoloads nil "helm-buffers" "helm-buffers.el" (22532 34656 ;;;### (autoloads nil "helm-buffers" "helm-buffers.el" (22535 7928
;;;;;; 80334 181000)) ;;;;;; 698224 473000))
;;; Generated autoloads from helm-buffers.el ;;; Generated autoloads from helm-buffers.el
(autoload 'helm-buffers-list "helm-buffers" "\ (autoload 'helm-buffers-list "helm-buffers" "\
@ -76,8 +76,8 @@ Preconfigured `helm' lightweight version (buffer -> recentf).
;;;*** ;;;***
;;;### (autoloads nil "helm-color" "helm-color.el" (22532 34656 168334 ;;;### (autoloads nil "helm-color" "helm-color.el" (22535 7928 786224
;;;;;; 938000)) ;;;;;; 434000))
;;; Generated autoloads from helm-color.el ;;; Generated autoloads from helm-color.el
(autoload 'helm-colors "helm-color" "\ (autoload 'helm-colors "helm-color" "\
@ -87,8 +87,8 @@ Preconfigured `helm' for color.
;;;*** ;;;***
;;;### (autoloads nil "helm-command" "helm-command.el" (22532 34656 ;;;### (autoloads nil "helm-command" "helm-command.el" (22535 7928
;;;;;; 32333 769000)) ;;;;;; 650224 495000))
;;; Generated autoloads from helm-command.el ;;; Generated autoloads from helm-command.el
(autoload 'helm-M-x "helm-command" "\ (autoload 'helm-M-x "helm-command" "\
@ -106,8 +106,8 @@ You can get help on each command by persistent action.
;;;*** ;;;***
;;;### (autoloads nil "helm-config" "helm-config.el" (22532 34656 ;;;### (autoloads nil "helm-config" "helm-config.el" (22535 7928
;;;;;; 184335 76000)) ;;;;;; 794224 430000))
;;; Generated autoloads from helm-config.el ;;; Generated autoloads from helm-config.el
(autoload 'helm-configuration "helm-config" "\ (autoload 'helm-configuration "helm-config" "\
@ -117,8 +117,8 @@ Customize `helm'.
;;;*** ;;;***
;;;### (autoloads nil "helm-dabbrev" "helm-dabbrev.el" (22532 34656 ;;;### (autoloads nil "helm-dabbrev" "helm-dabbrev.el" (22535 7928
;;;;;; 112334 456000)) ;;;;;; 718224 464000))
;;; Generated autoloads from helm-dabbrev.el ;;; Generated autoloads from helm-dabbrev.el
(autoload 'helm-dabbrev "helm-dabbrev" "\ (autoload 'helm-dabbrev "helm-dabbrev" "\
@ -128,8 +128,8 @@ Preconfigured helm for dynamic abbreviations.
;;;*** ;;;***
;;;### (autoloads nil "helm-elisp" "helm-elisp.el" (22532 34656 176335 ;;;### (autoloads nil "helm-elisp" "helm-elisp.el" (22535 7928 790224
;;;;;; 6000)) ;;;;;; 432000))
;;; Generated autoloads from helm-elisp.el ;;; Generated autoloads from helm-elisp.el
(autoload 'helm-lisp-completion-at-point "helm-elisp" "\ (autoload 'helm-lisp-completion-at-point "helm-elisp" "\
@ -183,7 +183,7 @@ Preconfigured helm for complex command history.
;;;*** ;;;***
;;;### (autoloads nil "helm-elisp-package" "helm-elisp-package.el" ;;;### (autoloads nil "helm-elisp-package" "helm-elisp-package.el"
;;;;;; (22532 34656 36333 804000)) ;;;;;; (22535 7928 654224 493000))
;;; Generated autoloads from helm-elisp-package.el ;;; Generated autoloads from helm-elisp-package.el
(autoload 'helm-list-elisp-packages "helm-elisp-package" "\ (autoload 'helm-list-elisp-packages "helm-elisp-package" "\
@ -199,8 +199,8 @@ Same as `helm-list-elisp-packages' but don't fetch packages on remote.
;;;*** ;;;***
;;;### (autoloads nil "helm-elscreen" "helm-elscreen.el" (22532 34656 ;;;### (autoloads nil "helm-elscreen" "helm-elscreen.el" (22535 7928
;;;;;; 24333 700000)) ;;;;;; 638224 500000))
;;; Generated autoloads from helm-elscreen.el ;;; Generated autoloads from helm-elscreen.el
(autoload 'helm-elscreen "helm-elscreen" "\ (autoload 'helm-elscreen "helm-elscreen" "\
@ -215,8 +215,8 @@ Preconfigured helm to list elscreen in history order.
;;;*** ;;;***
;;;### (autoloads nil "helm-eshell" "helm-eshell.el" (22532 34656 ;;;### (autoloads nil "helm-eshell" "helm-eshell.el" (22535 7928
;;;;;; 56333 975000)) ;;;;;; 666224 488000))
;;; Generated autoloads from helm-eshell.el ;;; Generated autoloads from helm-eshell.el
(autoload 'helm-esh-pcomplete "helm-eshell" "\ (autoload 'helm-esh-pcomplete "helm-eshell" "\
@ -231,8 +231,8 @@ Preconfigured helm for eshell history.
;;;*** ;;;***
;;;### (autoloads nil "helm-eval" "helm-eval.el" (22532 34656 140334 ;;;### (autoloads nil "helm-eval" "helm-eval.el" (22535 7928 754224
;;;;;; 698000)) ;;;;;; 448000))
;;; Generated autoloads from helm-eval.el ;;; Generated autoloads from helm-eval.el
(autoload 'helm-eval-expression "helm-eval" "\ (autoload 'helm-eval-expression "helm-eval" "\
@ -252,8 +252,8 @@ Preconfigured helm for `helm-source-calculation-result'.
;;;*** ;;;***
;;;### (autoloads nil "helm-external" "helm-external.el" (22532 34656 ;;;### (autoloads nil "helm-external" "helm-external.el" (22535 7928
;;;;;; 12333 596000)) ;;;;;; 626224 506000))
;;; Generated autoloads from helm-external.el ;;; Generated autoloads from helm-external.el
(autoload 'helm-run-external-command "helm-external" "\ (autoload 'helm-run-external-command "helm-external" "\
@ -266,8 +266,8 @@ You can set your own list of commands with
;;;*** ;;;***
;;;### (autoloads nil "helm-files" "helm-files.el" (22532 34656 116334 ;;;### (autoloads nil "helm-files" "helm-files.el" (22535 7928 730224
;;;;;; 491000)) ;;;;;; 458000))
;;; Generated autoloads from helm-files.el ;;; Generated autoloads from helm-files.el
(autoload 'helm-projects-history "helm-files" "\ (autoload 'helm-projects-history "helm-files" "\
@ -355,8 +355,8 @@ It allows additionally to delete more than one connection at once.
;;;*** ;;;***
;;;### (autoloads nil "helm-font" "helm-font.el" (22532 34656 60334 ;;;### (autoloads nil "helm-font" "helm-font.el" (22535 7928 670224
;;;;;; 9000)) ;;;;;; 486000))
;;; Generated autoloads from helm-font.el ;;; Generated autoloads from helm-font.el
(autoload 'helm-select-xfont "helm-font" "\ (autoload 'helm-select-xfont "helm-font" "\
@ -371,8 +371,8 @@ Preconfigured helm for `ucs-names' math symbols.
;;;*** ;;;***
;;;### (autoloads nil "helm-grep" "helm-grep.el" (22532 34656 192335 ;;;### (autoloads nil "helm-grep" "helm-grep.el" (22535 7928 810224
;;;;;; 144000)) ;;;;;; 422000))
;;; Generated autoloads from helm-grep.el ;;; Generated autoloads from helm-grep.el
(autoload 'helm-goto-precedent-file "helm-grep" "\ (autoload 'helm-goto-precedent-file "helm-grep" "\
@ -399,8 +399,8 @@ With a prefix arg ARG git-grep the whole repository.
;;;*** ;;;***
;;;### (autoloads nil "helm-help" "helm-help.el" (22532 34656 4333 ;;;### (autoloads nil "helm-help" "helm-help.el" (22535 7928 618224
;;;;;; 529000)) ;;;;;; 510000))
;;; Generated autoloads from helm-help.el ;;; Generated autoloads from helm-help.el
(autoload 'helm-documentation "helm-help" "\ (autoload 'helm-documentation "helm-help" "\
@ -420,8 +420,8 @@ String displayed in mode-line in `helm-source-find-files'.")
;;;*** ;;;***
;;;### (autoloads nil "helm-id-utils" "helm-id-utils.el" (22532 34656 ;;;### (autoloads nil "helm-id-utils" "helm-id-utils.el" (22535 7928
;;;;;; 84334 216000)) ;;;;;; 706224 470000))
;;; Generated autoloads from helm-id-utils.el ;;; Generated autoloads from helm-id-utils.el
(autoload 'helm-gid "helm-id-utils" "\ (autoload 'helm-gid "helm-id-utils" "\
@ -435,8 +435,8 @@ See <https://www.gnu.org/software/idutils/>.
;;;*** ;;;***
;;;### (autoloads nil "helm-imenu" "helm-imenu.el" (22532 34656 68334 ;;;### (autoloads nil "helm-imenu" "helm-imenu.el" (22535 7928 686224
;;;;;; 79000)) ;;;;;; 478000))
;;; Generated autoloads from helm-imenu.el ;;; Generated autoloads from helm-imenu.el
(autoload 'helm-imenu "helm-imenu" "\ (autoload 'helm-imenu "helm-imenu" "\
@ -453,8 +453,8 @@ or it have an association in `helm-imenu-all-buffer-assoc'.
;;;*** ;;;***
;;;### (autoloads nil "helm-info" "helm-info.el" (22532 34656 64334 ;;;### (autoloads nil "helm-info" "helm-info.el" (22535 7928 678224
;;;;;; 44000)) ;;;;;; 482000))
;;; Generated autoloads from helm-info.el ;;; Generated autoloads from helm-info.el
(autoload 'helm-info "helm-info" "\ (autoload 'helm-info "helm-info" "\
@ -470,8 +470,8 @@ With a prefix-arg insert symbol at point.
;;;*** ;;;***
;;;### (autoloads nil "helm-locate" "helm-locate.el" (22532 34656 ;;;### (autoloads nil "helm-locate" "helm-locate.el" (22535 7928
;;;;;; 20333 666000)) ;;;;;; 634224 502000))
;;; Generated autoloads from helm-locate.el ;;; Generated autoloads from helm-locate.el
(autoload 'helm-projects-find-files "helm-locate" "\ (autoload 'helm-projects-find-files "helm-locate" "\
@ -498,8 +498,8 @@ Where db_path is a filename matched by
;;;*** ;;;***
;;;### (autoloads nil "helm-man" "helm-man.el" (22532 34656 144334 ;;;### (autoloads nil "helm-man" "helm-man.el" (22535 7928 758224
;;;;;; 731000)) ;;;;;; 446000))
;;; Generated autoloads from helm-man.el ;;; Generated autoloads from helm-man.el
(autoload 'helm-man-woman "helm-man" "\ (autoload 'helm-man-woman "helm-man" "\
@ -510,8 +510,8 @@ With a prefix arg reinitialize the cache.
;;;*** ;;;***
;;;### (autoloads nil "helm-misc" "helm-misc.el" (22532 34656 124334 ;;;### (autoloads nil "helm-misc" "helm-misc.el" (22535 7928 742224
;;;;;; 560000)) ;;;;;; 453000))
;;; Generated autoloads from helm-misc.el ;;; Generated autoloads from helm-misc.el
(autoload 'helm-browse-menubar "helm-misc" "\ (autoload 'helm-browse-menubar "helm-misc" "\
@ -552,8 +552,8 @@ Preconfigured `helm' that provide completion of `comint' history.
;;;*** ;;;***
;;;### (autoloads nil "helm-mode" "helm-mode.el" (22532 34655 992333 ;;;### (autoloads nil "helm-mode" "helm-mode.el" (22535 7928 606224
;;;;;; 424000)) ;;;;;; 515000))
;;; Generated autoloads from helm-mode.el ;;; Generated autoloads from helm-mode.el
(autoload 'helm-comp-read "helm-mode" "\ (autoload 'helm-comp-read "helm-mode" "\
@ -724,8 +724,8 @@ Note: This mode is incompatible with Emacs23.
;;;*** ;;;***
;;;### (autoloads nil "helm-net" "helm-net.el" (22532 34656 164334 ;;;### (autoloads nil "helm-net" "helm-net.el" (22535 7928 778224
;;;;;; 903000)) ;;;;;; 437000))
;;; Generated autoloads from helm-net.el ;;; Generated autoloads from helm-net.el
(autoload 'helm-surfraw "helm-net" "\ (autoload 'helm-surfraw "helm-net" "\
@ -745,8 +745,8 @@ Preconfigured `helm' for Wikipedia lookup with Wikipedia suggest.
;;;*** ;;;***
;;;### (autoloads nil "helm-org" "helm-org.el" (22532 34656 196335 ;;;### (autoloads nil "helm-org" "helm-org.el" (22535 7928 814224
;;;;;; 178000)) ;;;;;; 420000))
;;; Generated autoloads from helm-org.el ;;; Generated autoloads from helm-org.el
(autoload 'helm-org-agenda-files-headings "helm-org" "\ (autoload 'helm-org-agenda-files-headings "helm-org" "\
@ -777,8 +777,8 @@ Preconfigured helm for org templates.
;;;*** ;;;***
;;;### (autoloads nil "helm-regexp" "helm-regexp.el" (22532 34656 ;;;### (autoloads nil "helm-regexp" "helm-regexp.el" (22535 7928
;;;;;; 160334 869000)) ;;;;;; 770224 440000))
;;; Generated autoloads from helm-regexp.el ;;; Generated autoloads from helm-regexp.el
(autoload 'helm-moccur-mode "helm-regexp" "\ (autoload 'helm-moccur-mode "helm-regexp" "\
@ -817,8 +817,8 @@ The prefix arg can be set before calling
;;;*** ;;;***
;;;### (autoloads nil "helm-ring" "helm-ring.el" (22532 34656 333 ;;;### (autoloads nil "helm-ring" "helm-ring.el" (22535 7928 614224
;;;;;; 494000)) ;;;;;; 511000))
;;; Generated autoloads from helm-ring.el ;;; Generated autoloads from helm-ring.el
(defvar helm-push-mark-mode nil "\ (defvar helm-push-mark-mode nil "\
@ -876,8 +876,8 @@ This command is useful when used with persistent action.
;;;*** ;;;***
;;;### (autoloads nil "helm-semantic" "helm-semantic.el" (22532 34656 ;;;### (autoloads nil "helm-semantic" "helm-semantic.el" (22535 7928
;;;;;; 76334 146000)) ;;;;;; 690224 477000))
;;; Generated autoloads from helm-semantic.el ;;; Generated autoloads from helm-semantic.el
(autoload 'helm-semantic "helm-semantic" "\ (autoload 'helm-semantic "helm-semantic" "\
@ -899,8 +899,8 @@ Fill in the symbol at point by default.
;;;*** ;;;***
;;;### (autoloads nil "helm-sys" "helm-sys.el" (22532 34656 104334 ;;;### (autoloads nil "helm-sys" "helm-sys.el" (22535 7928 714224
;;;;;; 388000)) ;;;;;; 466000))
;;; Generated autoloads from helm-sys.el ;;; Generated autoloads from helm-sys.el
(defvar helm-top-poll-mode nil "\ (defvar helm-top-poll-mode nil "\
@ -935,8 +935,8 @@ Preconfigured helm for xrandr.
;;;*** ;;;***
;;;### (autoloads nil "helm-tags" "helm-tags.el" (22532 34656 48333 ;;;### (autoloads nil "helm-tags" "helm-tags.el" (22535 7928 662224
;;;;;; 906000)) ;;;;;; 490000))
;;; Generated autoloads from helm-tags.el ;;; Generated autoloads from helm-tags.el
(autoload 'helm-etags-select "helm-tags" "\ (autoload 'helm-etags-select "helm-tags" "\
@ -955,8 +955,8 @@ This function aggregates three sources of tag files:
;;;*** ;;;***
;;;### (autoloads nil "helm-utils" "helm-utils.el" (22532 34656 28333 ;;;### (autoloads nil "helm-utils" "helm-utils.el" (22535 7928 642224
;;;;;; 734000)) ;;;;;; 498000))
;;; Generated autoloads from helm-utils.el ;;; Generated autoloads from helm-utils.el
(defvar helm-popup-tip-mode nil "\ (defvar helm-popup-tip-mode nil "\
@ -977,7 +977,7 @@ Show help-echo informations in a popup tip at end of line.
;;;*** ;;;***
;;;### (autoloads nil nil ("helm-easymenu.el" "helm-pkg.el" "helm-types.el") ;;;### (autoloads nil nil ("helm-easymenu.el" "helm-pkg.el" "helm-types.el")
;;;;;; (22532 34656 204335 248000)) ;;;;;; (22535 7928 818224 419000))
;;;*** ;;;***

View File

@ -206,6 +206,34 @@ Possible value are:
:group 'helm-grep :group 'helm-grep
:type '(alist :key-type string :value-type function)) :type '(alist :key-type string :value-type function))
(defcustom helm-grep-pipe-cmd-switches nil
"A list of additional parameters to pass to grep pipe command.
This will be used for pipe command for multiple pattern matching
for grep, zgrep ack-grep and git-grep backends.
If you add extra args for ack-grep, use ack-grep options,
for others (grep, zgrep and git-grep) use grep options.
Here are the commands where you may want to add switches:
grep --color=always
ack-grep --smart-case --color
You probably don't need to use this unless you know what you are doing."
:group 'helm-grep
:type 'string)
(defcustom helm-grep-ag-pipe-cmd-switches nil
"A list of additional parameters to pass to grep-ag pipe command.
You can use either grep or ack-grep backend, give options according
to which backend you use.
Here are the commands where you may want to add switches:
grep --perl-regexp --color=always
ack-grep --smart-case --color
You probably don't need to use this unless you know what you are doing."
:group 'helm-grep
:type 'string)
;;; Faces ;;; Faces
;; ;;
@ -254,7 +282,6 @@ Possible value are:
(define-key map (kbd "M-<up>") 'helm-goto-precedent-file) (define-key map (kbd "M-<up>") 'helm-goto-precedent-file)
(define-key map (kbd "C-c o") 'helm-grep-run-other-window-action) (define-key map (kbd "C-c o") 'helm-grep-run-other-window-action)
(define-key map (kbd "C-c C-o") 'helm-grep-run-other-frame-action) (define-key map (kbd "C-c C-o") 'helm-grep-run-other-frame-action)
(define-key map (kbd "C-w") 'helm-yank-text-at-point)
(define-key map (kbd "C-x C-s") 'helm-grep-run-save-buffer) (define-key map (kbd "C-x C-s") 'helm-grep-run-save-buffer)
(when helm-grep-use-ioccur-style-keys (when helm-grep-use-ioccur-style-keys
(define-key map (kbd "<right>") 'helm-execute-persistent-action) (define-key map (kbd "<right>") 'helm-execute-persistent-action)
@ -267,7 +294,6 @@ Possible value are:
(set-keymap-parent map helm-map) (set-keymap-parent map helm-map)
(define-key map (kbd "M-<down>") 'helm-goto-next-file) (define-key map (kbd "M-<down>") 'helm-goto-next-file)
(define-key map (kbd "M-<up>") 'helm-goto-precedent-file) (define-key map (kbd "M-<up>") 'helm-goto-precedent-file)
(define-key map (kbd "C-w") 'helm-yank-text-at-point)
map) map)
"Keymap used in pdfgrep.") "Keymap used in pdfgrep.")
@ -426,19 +452,19 @@ It is intended to use as a let-bound variable, DON'T set this globaly.")
(helm-grep-default-command (helm-grep-default-command
(concat helm-grep-default-command " %m")) ; `%m' like multi. (concat helm-grep-default-command " %m")) ; `%m' like multi.
(patterns (split-string helm-pattern)) (patterns (split-string helm-pattern))
(pipe-switches (mapconcat 'identity helm-grep-pipe-cmd-switches " "))
(pipes (pipes
(helm-aif (cdr patterns) (helm-aif (cdr patterns)
(cl-loop with pipcom = (pcase (helm-grep-command) (cl-loop with pipcom = (pcase (helm-grep-command)
;; Use grep for GNU regexp based tools. ;; Use grep for GNU regexp based tools.
((or "grep" "zgrep" "git-grep") ((or "grep" "zgrep" "git-grep")
(replace-regexp-in-string (format "grep --color=always%s %s"
"\\s-\\'" "" (if smartcase " -i" "")
(format "grep --color=always %s" pipe-switches))
(if smartcase "-i" ""))))
;; Use ack-grep for PCRE based tools. ;; Use ack-grep for PCRE based tools.
;; Sometimes ack-grep cmd is ack only. ;; Sometimes ack-grep cmd is ack only.
((and (pred (string-match-p "ack")) ack) ((and (pred (string-match-p "ack")) ack)
(format "%s --smart-case --color" ack))) (format "%s --smart-case --color %s" ack pipe-switches)))
for p in it concat for p in it concat
(format " | %s %s" pipcom (shell-quote-argument p))) (format " | %s %s" pipcom (shell-quote-argument p)))
""))) "")))
@ -1328,11 +1354,17 @@ if available with current AG version."
(smartcase (let ((case-fold-search nil)) (smartcase (let ((case-fold-search nil))
(string-match-p (string-match-p
"[[:upper:]]" helm-pattern))) "[[:upper:]]" helm-pattern)))
(pipe-cmd (cond ((executable-find "ack") "ack --smart-case --color") (pipe-switches (mapconcat 'identity helm-grep-ag-pipe-cmd-switches " "))
((executable-find "ack-grep") "ack-grep --smart-case --color") (pipe-cmd (helm-acond ((or (executable-find "ack")
(t (replace-regexp-in-string (executable-find "ack-grep"))
"\\s-\\'" "" (format "grep --perl-regexp --color=always %s" (replace-regexp-in-string
(if smartcase "-i" "")))))) "\\s-\\'" ""
(format "%s --smart-case --color %s"
(helm-basename it)
pipe-switches)))
(t (format "grep --perl-regexp --color=always%s %s"
(if smartcase " -i" "")
pipe-switches))))
(cmd (format helm-grep-ag-command (cmd (format helm-grep-ag-command
(mapconcat 'identity type " ") (mapconcat 'identity type " ")
(shell-quote-argument (car patterns)) (shell-quote-argument (car patterns))

View File

@ -128,7 +128,6 @@ For Windows and `es' use something like \"es -r ^%s.*%s.*$\"."
(define-key map (kbd "C-c C-x") 'helm-ff-run-open-file-externally) (define-key map (kbd "C-c C-x") 'helm-ff-run-open-file-externally)
(define-key map (kbd "C-c X") 'helm-ff-run-open-file-with-default-tool) (define-key map (kbd "C-c X") 'helm-ff-run-open-file-with-default-tool)
(define-key map (kbd "M-.") 'helm-ff-run-etags) (define-key map (kbd "M-.") 'helm-ff-run-etags)
(define-key map (kbd "C-w") 'helm-yank-text-at-point)
(define-key map (kbd "C-c @") 'helm-ff-run-insert-org-link) (define-key map (kbd "C-c @") 'helm-ff-run-insert-org-link)
map) map)
"Generic Keymap for files.") "Generic Keymap for files.")

View File

@ -1,4 +1,4 @@
(define-package "helm" "20161016.827" "Helm is an Emacs incremental and narrowing framework" (define-package "helm" "20161018.1253" "Helm is an Emacs incremental and narrowing framework"
'((emacs "24.4") '((emacs "24.4")
(async "1.9") (async "1.9")
(popup "0.5.3") (popup "0.5.3")

View File

@ -82,7 +82,6 @@ Any other non--nil value update after confirmation."
(set-keymap-parent map helm-map) (set-keymap-parent map helm-map)
(define-key map (kbd "M-<down>") 'helm-goto-next-file) (define-key map (kbd "M-<down>") 'helm-goto-next-file)
(define-key map (kbd "M-<up>") 'helm-goto-precedent-file) (define-key map (kbd "M-<up>") 'helm-goto-precedent-file)
(define-key map (kbd "C-w") 'helm-yank-text-at-point)
(define-key map (kbd "C-c o") 'helm-moccur-run-goto-line-ow) (define-key map (kbd "C-c o") 'helm-moccur-run-goto-line-ow)
(define-key map (kbd "C-c C-o") 'helm-moccur-run-goto-line-of) (define-key map (kbd "C-c C-o") 'helm-moccur-run-goto-line-of)
(define-key map (kbd "C-x C-s") 'helm-moccur-run-save-buffer) (define-key map (kbd "C-x C-s") 'helm-moccur-run-save-buffer)

View File

@ -96,7 +96,6 @@ one match."
(set-keymap-parent map helm-map) (set-keymap-parent map helm-map)
(define-key map (kbd "M-<down>") 'helm-goto-next-file) (define-key map (kbd "M-<down>") 'helm-goto-next-file)
(define-key map (kbd "M-<up>") 'helm-goto-precedent-file) (define-key map (kbd "M-<up>") 'helm-goto-precedent-file)
(define-key map (kbd "C-w") 'helm-yank-text-at-point)
(define-key map (kbd "C-c o") 'helm-etags-run-switch-other-window) (define-key map (kbd "C-c o") 'helm-etags-run-switch-other-window)
(define-key map (kbd "C-c C-o") 'helm-etags-run-switch-other-frame) (define-key map (kbd "C-c C-o") 'helm-etags-run-switch-other-frame)
map) map)

View File

@ -267,6 +267,7 @@ Default is `helm-current-buffer'."
Animation is used unless NOANIM is non--nil." Animation is used unless NOANIM is non--nil."
(helm-log-run-hook 'helm-goto-line-before-hook) (helm-log-run-hook 'helm-goto-line-before-hook)
(helm-match-line-cleanup) (helm-match-line-cleanup)
(unless helm-yank-point (setq helm-yank-point (point)))
(goto-char (point-min)) (goto-char (point-min))
(helm-goto-char (point-at-bol lineno)) (helm-goto-char (point-at-bol lineno))
(unless noanim (unless noanim

View File

@ -3,7 +3,7 @@
;;; Code: ;;; Code:
(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path)))) (add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path))))
;;;### (autoloads nil "helm" "helm.el" (22532 34653 700313 729000)) ;;;### (autoloads nil "helm" "helm.el" (22533 65002 208349 656000))
;;; Generated autoloads from helm.el ;;; Generated autoloads from helm.el
(autoload 'helm-define-multi-key "helm" "\ (autoload 'helm-define-multi-key "helm" "\
@ -188,7 +188,7 @@ Enable/disable helm debugging from outside of helm session.
;;;*** ;;;***
;;;### (autoloads nil nil ("helm-core-pkg.el" "helm-lib.el" "helm-multi-match.el" ;;;### (autoloads nil nil ("helm-core-pkg.el" "helm-lib.el" "helm-multi-match.el"
;;;;;; "helm-source.el") (22532 34653 712313 831000)) ;;;;;; "helm-source.el") (22533 65002 228349 648000))
;;;*** ;;;***

View File

@ -1,4 +1,4 @@
(define-package "helm-core" "20161015.2348" "Development files for Helm" (define-package "helm-core" "20161017.2343" "Development files for Helm"
'((emacs "24.4") '((emacs "24.4")
(async "1.9")) (async "1.9"))
:url "https://emacs-helm.github.io/helm/") :url "https://emacs-helm.github.io/helm/")

View File

@ -803,23 +803,40 @@ That is what completion commands operate on."
;; Yank text at point. ;; Yank text at point.
;; ;;
;; ;;
(defun helm-yank-text-at-point () (defun helm-yank-text-at-point (arg)
"Yank text at point in `helm-current-buffer' into minibuffer." "Yank text at point in `helm-current-buffer' into minibuffer."
(interactive) (interactive "p")
(with-helm-current-buffer (with-helm-current-buffer
(let ((fwd-fn (or helm-yank-text-at-point-function #'forward-word))) (let ((fwd-fn (or helm-yank-text-at-point-function #'forward-word))
diff)
;; Start to initial point if C-w have never been hit. ;; Start to initial point if C-w have never been hit.
(unless helm-yank-point (setq helm-yank-point (point))) (unless helm-yank-point (setq helm-yank-point (point)))
(save-excursion (save-excursion
(goto-char helm-yank-point) (goto-char helm-yank-point)
(funcall fwd-fn 1)
(helm-set-pattern (helm-set-pattern
(concat (if (< arg 0)
helm-pattern (replace-regexp-in-string (with-temp-buffer
"\\`\n" "" (insert helm-pattern)
(buffer-substring-no-properties (let ((end (point-max)))
helm-yank-point (point))))) (goto-char end)
(setq helm-yank-point (point)))))) (funcall fwd-fn -1)
(setq diff (- end (point)))
(delete-region (point) end)
(buffer-string)))
(funcall fwd-fn arg)
(concat
helm-pattern (replace-regexp-in-string
"\\`\n" ""
(buffer-substring-no-properties
helm-yank-point (point))))))
(setq helm-yank-point (if diff (- (point) diff) (point)))))))
(put 'helm-yank-text-at-point 'helm-only t)
(defun helm-undo-yank-text-at-point ()
"Undo last entry added by `helm-yank-text-at-point'."
(interactive)
(helm-yank-text-at-point -1))
(put 'helm-undo-yank-text-at-point 'helm-only t)
(defun helm-reset-yank-point () (defun helm-reset-yank-point ()
(setq helm-yank-point nil)) (setq helm-yank-point nil))

View File

@ -208,7 +208,6 @@ NOTE: SUBKEY and OTHER-SUBKEYS bindings support char syntax only
(define-key map (kbd "M-m") 'helm-toggle-all-marks) (define-key map (kbd "M-m") 'helm-toggle-all-marks)
(define-key map (kbd "M-a") 'helm-mark-all) (define-key map (kbd "M-a") 'helm-mark-all)
(define-key map (kbd "M-U") 'helm-unmark-all) (define-key map (kbd "M-U") 'helm-unmark-all)
(define-key map (kbd "C-w") 'helm-yank-text-at-point)
(define-key map (kbd "C-M-a") 'helm-show-all-in-this-source-only) (define-key map (kbd "C-M-a") 'helm-show-all-in-this-source-only)
(define-key map (kbd "C-M-e") 'helm-display-all-sources) (define-key map (kbd "C-M-e") 'helm-display-all-sources)
(define-key map (kbd "C-r") 'undefined) (define-key map (kbd "C-r") 'undefined)
@ -239,6 +238,9 @@ NOTE: SUBKEY and OTHER-SUBKEYS bindings support char syntax only
(define-key map [f1] nil) (define-key map [f1] nil)
(define-key map (kbd "C-h C-h") 'undefined) (define-key map (kbd "C-h C-h") 'undefined)
(define-key map (kbd "C-h h") 'undefined) (define-key map (kbd "C-h h") 'undefined)
(helm-define-key-with-subkeys map
(kbd "C-w") ?\C-w 'helm-yank-text-at-point
'((?\C-_ . helm-undo-yank-text-at-point)))
;; Use `describe-mode' key in `global-map'. ;; Use `describe-mode' key in `global-map'.
(cl-dolist (k (where-is-internal 'describe-mode global-map)) (cl-dolist (k (where-is-internal 'describe-mode global-map))
(define-key map k 'helm-help)) (define-key map k 'helm-help))
@ -2287,6 +2289,7 @@ See :after-init-hook and :before-init-hook in `helm-source'."
helm-saved-action nil helm-saved-action nil
helm-saved-selection nil helm-saved-selection nil
helm-suspend-update-flag nil helm-suspend-update-flag nil
;; Ensure this is called BEFORE selecting helm-window.
helm-current-buffer (helm--current-buffer) helm-current-buffer (helm--current-buffer)
helm-buffer-file-name buffer-file-name helm-buffer-file-name buffer-file-name
helm-issued-errors nil helm-issued-errors nil
@ -4808,10 +4811,10 @@ If N is positive enlarge, if negative narrow."
(delete-window w2) (delete-window w2)
(set-window-buffer (set-window-buffer
(setq w2 (split-window w1 nil helm--window-side-state)) b2) (setq w2 (split-window w1 nil helm--window-side-state)) b2)
;; Maybe resize the window holding helm-buffer. ;; Maybe resize the window holding `helm-current-buffer'.
(and resize (window-resize w2 resize split-state)) (and resize (window-resize w2 resize split-state))
(set-window-start w1 s2 t) (set-window-start w1 s1 t)
(set-window-start w2 s1 t)) (set-window-start w2 s2 t))
(setq helm--window-side-state (helm--get-window-side-state))))) (setq helm--window-side-state (helm--get-window-side-state)))))
(error "current window configuration not suitable for splitting")))) (error "current window configuration not suitable for splitting"))))
(put 'helm-swap-windows 'helm-only t) (put 'helm-swap-windows 'helm-only t)

View File

@ -3,8 +3,8 @@
;;; Code: ;;; Code:
(add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path)))) (add-to-list 'load-path (directory-file-name (or (file-name-directory #$) (car load-path))))
;;;### (autoloads nil "git-rebase" "git-rebase.el" (22532 34650 788288 ;;;### (autoloads nil "git-rebase" "git-rebase.el" (22533 64999 636350
;;;;;; 716000)) ;;;;;; 689000))
;;; Generated autoloads from git-rebase.el ;;; Generated autoloads from git-rebase.el
(autoload 'git-rebase-mode "git-rebase" "\ (autoload 'git-rebase-mode "git-rebase" "\
@ -23,7 +23,7 @@ running 'man git-rebase' at the command line) for details.
;;;*** ;;;***
;;;### (autoloads nil "magit" "magit.el" (22532 34650 876289 472000)) ;;;### (autoloads nil "magit" "magit.el" (22533 64999 724350 654000))
;;; Generated autoloads from magit.el ;;; Generated autoloads from magit.el
(autoload 'magit-status "magit" "\ (autoload 'magit-status "magit" "\
@ -501,8 +501,8 @@ Git, and Emacs in the echo area.
;;;*** ;;;***
;;;### (autoloads nil "magit-apply" "magit-apply.el" (22532 34650 ;;;### (autoloads nil "magit-apply" "magit-apply.el" (22533 64999
;;;;;; 812288 922000)) ;;;;;; 656350 681000))
;;; Generated autoloads from magit-apply.el ;;; Generated autoloads from magit-apply.el
(autoload 'magit-stage-file "magit-apply" "\ (autoload 'magit-stage-file "magit-apply" "\
@ -538,8 +538,8 @@ Remove all changes from the staging area.
;;;*** ;;;***
;;;### (autoloads nil "magit-autorevert" "magit-autorevert.el" (22532 ;;;### (autoloads nil "magit-autorevert" "magit-autorevert.el" (22533
;;;;;; 34650 752288 407000)) ;;;;;; 64999 604350 702000))
;;; Generated autoloads from magit-autorevert.el ;;; Generated autoloads from magit-autorevert.el
(defvar magit-revert-buffers t) (defvar magit-revert-buffers t)
@ -568,8 +568,8 @@ See `auto-revert-mode' for more information on Auto-Revert mode.
;;;*** ;;;***
;;;### (autoloads nil "magit-bisect" "magit-bisect.el" (22532 34650 ;;;### (autoloads nil "magit-bisect" "magit-bisect.el" (22533 64999
;;;;;; 808288 887000)) ;;;;;; 652350 683000))
;;; Generated autoloads from magit-bisect.el ;;; Generated autoloads from magit-bisect.el
(autoload 'magit-bisect-popup "magit-bisect" nil t) (autoload 'magit-bisect-popup "magit-bisect" nil t)
@ -620,8 +620,8 @@ bisect run'.
;;;*** ;;;***
;;;### (autoloads nil "magit-blame" "magit-blame.el" (22532 34650 ;;;### (autoloads nil "magit-blame" "magit-blame.el" (22533 64999
;;;;;; 860289 334000)) ;;;;;; 708350 660000))
;;; Generated autoloads from magit-blame.el ;;; Generated autoloads from magit-blame.el
(autoload 'magit-blame-popup "magit-blame" nil t) (autoload 'magit-blame-popup "magit-blame" nil t)
@ -645,8 +645,8 @@ only arguments available from `magit-blame-popup' should be used.
;;;*** ;;;***
;;;### (autoloads nil "magit-commit" "magit-commit.el" (22532 34650 ;;;### (autoloads nil "magit-commit" "magit-commit.el" (22533 64999
;;;;;; 760288 476000)) ;;;;;; 608350 700000))
;;; Generated autoloads from magit-commit.el ;;; Generated autoloads from magit-commit.el
(autoload 'magit-commit "magit-commit" "\ (autoload 'magit-commit "magit-commit" "\
@ -728,8 +728,8 @@ Create a squash commit targeting COMMIT and instantly rebase.
;;;*** ;;;***
;;;### (autoloads nil "magit-diff" "magit-diff.el" (22532 34650 856289 ;;;### (autoloads nil "magit-diff" "magit-diff.el" (22533 64999 700350
;;;;;; 300000)) ;;;;;; 663000))
;;; Generated autoloads from magit-diff.el ;;; Generated autoloads from magit-diff.el
(autoload 'magit-diff-popup "magit-diff" "\ (autoload 'magit-diff-popup "magit-diff" "\
@ -813,8 +813,8 @@ for a revision.
;;;*** ;;;***
;;;### (autoloads nil "magit-ediff" "magit-ediff.el" (22532 34650 ;;;### (autoloads nil "magit-ediff" "magit-ediff.el" (22533 64999
;;;;;; 840289 163000)) ;;;;;; 688350 669000))
;;; Generated autoloads from magit-ediff.el ;;; Generated autoloads from magit-ediff.el
(autoload 'magit-ediff-popup "magit-ediff" nil t) (autoload 'magit-ediff-popup "magit-ediff" nil t)
@ -902,8 +902,8 @@ stash that were staged.
;;;*** ;;;***
;;;### (autoloads nil "magit-extras" "magit-extras.el" (22532 34650 ;;;### (autoloads nil "magit-extras" "magit-extras.el" (22533 64999
;;;;;; 764288 510000)) ;;;;;; 612350 699000))
;;; Generated autoloads from magit-extras.el ;;; Generated autoloads from magit-extras.el
(autoload 'magit-run-git-gui "magit-extras" "\ (autoload 'magit-run-git-gui "magit-extras" "\
@ -973,8 +973,8 @@ on a position in a file-visiting buffer.
;;;*** ;;;***
;;;### (autoloads nil "magit-log" "magit-log.el" (22532 34650 844289 ;;;### (autoloads nil "magit-log" "magit-log.el" (22533 64999 692350
;;;;;; 196000)) ;;;;;; 667000))
;;; Generated autoloads from magit-log.el ;;; Generated autoloads from magit-log.el
(autoload 'magit-log-buffer-file-popup "magit-log" "\ (autoload 'magit-log-buffer-file-popup "magit-log" "\
@ -1056,8 +1056,8 @@ Show commits in a branch that are not merged in the upstream branch.
;;;*** ;;;***
;;;### (autoloads nil "magit-remote" "magit-remote.el" (22532 34650 ;;;### (autoloads nil "magit-remote" "magit-remote.el" (22533 64999
;;;;;; 892289 610000)) ;;;;;; 740350 648000))
;;; Generated autoloads from magit-remote.el ;;; Generated autoloads from magit-remote.el
(autoload 'magit-clone "magit-remote" "\ (autoload 'magit-clone "magit-remote" "\
@ -1289,8 +1289,8 @@ is asked to pull. START has to be reachable from that commit.
;;;*** ;;;***
;;;### (autoloads nil "magit-sequence" "magit-sequence.el" (22532 ;;;### (autoloads nil "magit-sequence" "magit-sequence.el" (22533
;;;;;; 34650 884289 540000)) ;;;;;; 64999 728350 652000))
;;; Generated autoloads from magit-sequence.el ;;; Generated autoloads from magit-sequence.el
(autoload 'magit-sequencer-continue "magit-sequence" "\ (autoload 'magit-sequencer-continue "magit-sequence" "\
@ -1440,8 +1440,8 @@ Abort the current rebase operation, restoring the original branch.
;;;*** ;;;***
;;;### (autoloads nil "magit-stash" "magit-stash.el" (22532 34650 ;;;### (autoloads nil "magit-stash" "magit-stash.el" (22533 64999
;;;;;; 832289 94000)) ;;;;;; 672350 675000))
;;; Generated autoloads from magit-stash.el ;;; Generated autoloads from magit-stash.el
(autoload 'magit-stash-popup "magit-stash" nil t) (autoload 'magit-stash-popup "magit-stash" nil t)
@ -1540,8 +1540,8 @@ Show all diffs of a stash in a buffer.
;;;*** ;;;***
;;;### (autoloads nil "magit-submodule" "magit-submodule.el" (22532 ;;;### (autoloads nil "magit-submodule" "magit-submodule.el" (22533
;;;;;; 34650 908289 747000)) ;;;;;; 64999 756350 641000))
;;; Generated autoloads from magit-submodule.el ;;; Generated autoloads from magit-submodule.el
(autoload 'magit-submodule-popup "magit-submodule" nil t) (autoload 'magit-submodule-popup "magit-submodule" nil t)
@ -1631,8 +1631,8 @@ Display a list of the current repository's submodules.
;;;*** ;;;***
;;;### (autoloads nil "magit-subtree" "magit-subtree.el" (22532 34650 ;;;### (autoloads nil "magit-subtree" "magit-subtree.el" (22533 64999
;;;;;; 792288 750000)) ;;;;;; 644350 686000))
;;; Generated autoloads from magit-subtree.el ;;; Generated autoloads from magit-subtree.el
(autoload 'magit-subtree-popup "magit-subtree" nil t) (autoload 'magit-subtree-popup "magit-subtree" nil t)
@ -1668,8 +1668,8 @@ Extract the history of the subtree PREFIX.
;;;*** ;;;***
;;;### (autoloads nil "magit-wip" "magit-wip.el" (22532 34650 776288 ;;;### (autoloads nil "magit-wip" "magit-wip.el" (22533 64999 620350
;;;;;; 613000)) ;;;;;; 696000))
;;; Generated autoloads from magit-wip.el ;;; Generated autoloads from magit-wip.el
(defvar magit-wip-after-save-mode nil "\ (defvar magit-wip-after-save-mode nil "\
@ -1739,7 +1739,7 @@ command which is about to be called are committed.
;;;### (autoloads nil nil ("magit-core.el" "magit-git.el" "magit-mode.el" ;;;### (autoloads nil nil ("magit-core.el" "magit-git.el" "magit-mode.el"
;;;;;; "magit-pkg.el" "magit-process.el" "magit-section.el" "magit-utils.el") ;;;;;; "magit-pkg.el" "magit-process.el" "magit-section.el" "magit-utils.el")
;;;;;; (22532 34650 896289 644000)) ;;;;;; (22533 64999 748350 644000))
;;;*** ;;;***

View File

@ -197,8 +197,8 @@ and then turned on again when turning off the latter."
:man-page "git-blame" :man-page "git-blame"
:switches '((?w "Ignore whitespace" "-w") :switches '((?w "Ignore whitespace" "-w")
(?r "Do not treat root commits as boundaries" "--root")) (?r "Do not treat root commits as boundaries" "--root"))
:options '((?C "Detect lines moved or copied between files" "-C") :options '((?M "Detect lines moved or copied within a file" "-M")
(?M "Detect lines moved or copied within a file" "-M")) (?C "Detect lines moved or copied between files" "-C"))
:actions '((?b "Blame" magit-blame)) :actions '((?b "Blame" magit-blame))
:default-arguments '("-w") :default-arguments '("-w")
:default-action 'magit-blame) :default-action 'magit-blame)

View File

@ -1,4 +1,4 @@
(define-package "magit" "20161016.1325" "A Git porcelain inside Emacs" (define-package "magit" "20161017.405" "A Git porcelain inside Emacs"
'((emacs "24.4") '((emacs "24.4")
(async "20160711.223") (async "20160711.223")
(dash "20160820.501") (dash "20160820.501")

View File

@ -1,3 +0,0 @@
(define-package "org"
"20161010" "Outline-based notes management and organizer" ( ))
;; no-byte-compile: t

Some files were not shown because too many files have changed in this diff Show More