update of packages

This commit is contained in:
2023-11-04 19:26:41 +01:00
parent e162a12b58
commit 3b54a3236d
726 changed files with 297673 additions and 34585 deletions

View File

@@ -1,6 +1,6 @@
;;; colir.el --- Color blending library -*- lexical-binding: t -*-
;; Copyright (C) 2015-2021 Free Software Foundation, Inc.
;; Copyright (C) 2015-2023 Free Software Foundation, Inc.
;; Author: Oleh Krehel <ohwoeowho@gmail.com>

View File

@@ -1,3 +1,4 @@
;; Copyright (C) 2019-2023 Free Software Foundation, Inc.
(setq package-user-dir
(expand-file-name
(format "~/.elpa/%s/elpa"

View File

@@ -1,6 +1,6 @@
;;; ivy-faces.el --- Faces for Ivy -*- lexical-binding: t -*-
;; Copyright (C) 2020-2021 Free Software Foundation, Inc.
;; Copyright (C) 2020-2023 Free Software Foundation, Inc.
;; Author: Oleh Krehel <ohwoeowho@gmail.com>
;; Keywords: convenience

View File

@@ -1,6 +1,6 @@
;;; ivy-overlay.el --- Overlay display functions for Ivy -*- lexical-binding: t -*-
;; Copyright (C) 2016-2021 Free Software Foundation, Inc.
;; Copyright (C) 2016-2023 Free Software Foundation, Inc.
;; Author: Oleh Krehel <ohwoeowho@gmail.com>
;; Keywords: convenience

View File

@@ -1,9 +1,11 @@
(define-package "ivy" "20220926.1250" "Incremental Vertical completYon"
(define-package "ivy" "20231025.2311" "Incremental Vertical completYon"
'((emacs "24.5"))
:commit "29b61fe1f4d5268d750b666a7ffc1269e22c6477" :authors
:commit "8c30f4cab5948aa8d942a3b2bbf5fb6a94d9441d" :authors
'(("Oleh Krehel" . "ohwoeowho@gmail.com"))
:maintainers
'(("Basil L. Contovounesios" . "contovob@tcd.ie"))
:maintainer
'("Oleh Krehel" . "ohwoeowho@gmail.com")
'("Basil L. Contovounesios" . "contovob@tcd.ie")
:keywords
'("matching")
:url "https://github.com/abo-abo/swiper")

View File

@@ -1,10 +1,11 @@
;;; ivy.el --- Incremental Vertical completYon -*- lexical-binding: t -*-
;; Copyright (C) 2015-2021 Free Software Foundation, Inc.
;; Copyright (C) 2015-2023 Free Software Foundation, Inc.
;; Author: Oleh Krehel <ohwoeowho@gmail.com>
;; Maintainer: Basil L. Contovounesios <contovob@tcd.ie>
;; URL: https://github.com/abo-abo/swiper
;; Version: 0.13.4
;; Version: 0.14.2
;; Package-Requires: ((emacs "24.5"))
;; Keywords: matching
@@ -2889,7 +2890,7 @@ When GREEDY is non-nil, join words in a greedy way."
(defun ivy--regex-p (object)
"Return OBJECT if it is a valid regular expression, else nil."
(ignore-errors (string-match-p object "") object))
(ignore-errors (ignore (string-match-p object "")) object))
(defun ivy--regex-or-literal (str)
"If STR isn't a legal regexp, escape it."
@@ -3386,7 +3387,7 @@ Should be run via minibuffer `post-command-hook'."
(let ((coll (condition-case nil
(funcall (ivy-state-collection ivy-last) input)
(error
(funcall (ivy-state-collection ivy-last) input nil nil)))))
(funcall (ivy-state-collection ivy-last) input nil t)))))
(if (listp coll)
(mapcar (lambda (x) (if (consp x) (car x) x)) coll)
coll)))

View File

@@ -1,6 +1,6 @@
This is ivy.info, produced by makeinfo version 7.0.1 from ivy.texi.
This is ivy.info, produced by makeinfo version 6.8 from ivy.texi.
Ivy manual, version 0.13.4
Ivy manual, version 0.14.2
Ivy is an interactive interface for completion in Emacs. Emacs uses
completion mechanism in a variety of contexts: code, menus, commands,
@@ -11,7 +11,7 @@ available choices while previewing in the minibuffer. Selecting the
final candidate is either through simple keyboard character inputs or
through powerful regular expressions.
Copyright (C) 20152021 Free Software Foundation, Inc.
Copyright (C) 20152023 Free Software Foundation, Inc.
Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License,
@@ -188,8 +188,7 @@ File: ivy.info, Node: Installation, Next: Getting started, Prev: Introduction
Install Ivy automatically through Emacss package manager, or manually
from Ivys development repository.
Emacs 24.3 is the oldest version to run Ivy. Emacs 24.4 is the
oldest version that runs Ivy with fancy faces display.
Emacs 24.5 is the oldest version to run Ivy.
* Menu:
@@ -1002,7 +1001,7 @@ File: ivy.info, Node: Defcustoms, Next: Actions, Prev: Faces, Up: Customizat
-- User Option: ivy-display-style
Specifies highlighting candidates in the minibuffer.
The default setting is 'fancy in Emacs versions 24.4 or newer.
The default setting is fancy.
Set ivy-display-style to nil for a plain minibuffer.
@@ -1917,53 +1916,53 @@ File: ivy.info, Node: Keystroke Index, Prev: Variable Index, Up: Top

Tag Table:
Node: Top1194
Node: Introduction3105
Node: Installation5628
Node: Installing from Emacs Package Manager6078
Node: Installing from the Git repository7326
Node: Getting started8146
Node: Basic customization8453
Node: Key bindings9048
Node: Global key bindings9240
Node: Minibuffer key bindings11714
Node: Key bindings for navigation12946
Node: Key bindings for single selection action then exit minibuffer14153
Node: Key bindings for multiple selections and actions keep minibuffer open16837
Node: Key bindings that alter the minibuffer input19458
Node: Other key bindings21405
Node: Hydra in the minibuffer21783
Node: Saving the current completion session to a buffer24201
Node: Completion Styles25613
Node: ivy--regex-plus27371
Node: ivy--regex-ignore-order28857
Node: ivy--regex-fuzzy29225
Node: Customization29722
Node: Faces29908
Node: Defcustoms32337
Node: Actions33696
Node: What are actions?34022
Node: How can different actions be called?34840
Node: How to modify the actions list?35411
Node: Example - add two actions to each command36071
Node: How to undo adding the two actions37030
Node: How to add actions to a specific command37482
Node: Example - define a new command with several actions37898
Node: Test the above function with ivy-occur38835
Node: Packages39677
Node: Commands40642
Node: File Name Completion40827
Node: Using TRAMP42784
Node: Buffer Name Completion44286
Node: Counsel commands44901
Node: API45548
Node: Required arguments for ivy-read46146
Node: Optional arguments for ivy-read46665
Node: Example - counsel-describe-function50091
Node: Example - counsel-locate53075
Node: Example - ivy-read-with-extra-properties56944
Node: Variable Index58222
Node: Keystroke Index65346
Node: Top1192
Node: Introduction3103
Node: Installation5626
Node: Installing from Emacs Package Manager6002
Node: Installing from the Git repository7250
Node: Getting started8070
Node: Basic customization8377
Node: Key bindings8972
Node: Global key bindings9164
Node: Minibuffer key bindings11638
Node: Key bindings for navigation12870
Node: Key bindings for single selection action then exit minibuffer14077
Node: Key bindings for multiple selections and actions keep minibuffer open16761
Node: Key bindings that alter the minibuffer input19382
Node: Other key bindings21329
Node: Hydra in the minibuffer21707
Node: Saving the current completion session to a buffer24125
Node: Completion Styles25537
Node: ivy--regex-plus27295
Node: ivy--regex-ignore-order28781
Node: ivy--regex-fuzzy29149
Node: Customization29646
Node: Faces29832
Node: Defcustoms32261
Node: Actions33587
Node: What are actions?33913
Node: How can different actions be called?34731
Node: How to modify the actions list?35302
Node: Example - add two actions to each command35962
Node: How to undo adding the two actions36921
Node: How to add actions to a specific command37373
Node: Example - define a new command with several actions37789
Node: Test the above function with ivy-occur38726
Node: Packages39568
Node: Commands40533
Node: File Name Completion40718
Node: Using TRAMP42675
Node: Buffer Name Completion44177
Node: Counsel commands44792
Node: API45439
Node: Required arguments for ivy-read46037
Node: Optional arguments for ivy-read46556
Node: Example - counsel-describe-function49982
Node: Example - counsel-locate52966
Node: Example - ivy-read-with-extra-properties56835
Node: Variable Index58113
Node: Keystroke Index65237

End Tag Table