-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
577 changed files
with
11,397 additions
and
6,365 deletions.
There are no files selected for viewing
File renamed without changes.
6 changes: 3 additions & 3 deletions
6
.../adoc-mode-20240218.1035/adoc-mode-pkg.el → ...a/adoc-mode-20250206.838/adoc-mode-pkg.el
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
;; -*- no-byte-compile: t; lexical-binding: nil -*- | ||
(define-package "adoc-mode" "20240218.1035" | ||
(define-package "adoc-mode" "20250206.838" | ||
"A major-mode for editing AsciiDoc files." | ||
'((emacs "26")) | ||
:url "https://github.com/bbatsov/adoc-mode" | ||
:commit "2c2eb8043623aa99d35aacbad2ee39188bf1bad3" | ||
:revdesc "2c2eb8043623" | ||
:commit "20772277b8a5b8c08d49bd03043d5d4dd7a815e9" | ||
:revdesc "20772277b8a5" | ||
:keywords '("docs" "wp") | ||
:authors '(("Florian Kaufmann" . "[email protected]")) | ||
:maintainers '(("Bozhidar Batsov" . "[email protected]"))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,12 +3,12 @@ | |
;; Copyright 2009-2016 Florian Kaufmann <[email protected]> | ||
;; Copyright 2022-2024 Bozhidar Batsov <[email protected]> and adoc-mode contributors | ||
;; | ||
;; Maintainer: Bozhidar Batsov <[email protected]> | ||
;; Author: Florian Kaufmann <[email protected]> | ||
;; URL: https://github.com/bbatsov/adoc-mode | ||
;; Maintainer: Bozhidar Batsov <[email protected]> | ||
;; Created: 2009 | ||
;; Package-Version: 20240218.1035 | ||
;; Package-Revision: 2c2eb8043623 | ||
;; Package-Version: 20250206.838 | ||
;; Package-Revision: 20772277b8a5 | ||
;; Package-Requires: ((emacs "26")) | ||
;; Keywords: docs, wp | ||
;; | ||
|
@@ -836,13 +836,13 @@ something that is orthogonal to the adoc-bold-face etc faces." | |
(defvar adoc-language-info-face 'adoc-language-info-face) | ||
|
||
(defface adoc-reference-face | ||
'((t (:inherit adoc-markup-face))) | ||
'((t (:inherit link))) | ||
"Face for link references." | ||
:group 'adoc-faces) | ||
(defvar adoc-reference-face 'adoc-reference-face) | ||
|
||
(defface adoc-link-title-face | ||
'((t (:inherit font-lock-comment-face))) | ||
'((t (:inherit adoc-markup-face))) | ||
"Face for reference link titles." | ||
:group 'adoc-faces) | ||
(defvar adoc-link-title-face 'adoc-link-title-face) | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
8 changes: 4 additions & 4 deletions
8
...elpa/company-20241106.2000/company-pkg.el → ...elpa/company-20250114.2109/company-pkg.el
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
;; -*- no-byte-compile: t; lexical-binding: nil -*- | ||
(define-package "company" "20241106.2000" | ||
(define-package "company" "20250114.2109" | ||
"Modular text completion framework." | ||
'((emacs "26.1")) | ||
:url "https://github.com/company-mode/company-mode" | ||
:commit "0ae7c293112248a0c36377d6859a95d216ae5e96" | ||
:revdesc "0ae7c2931122" | ||
:url "http://company-mode.github.io/" | ||
:commit "9a81d0cca268d35d5e18d7d4e2277a9e57887dd8" | ||
:revdesc "9a81d0cca268" | ||
:keywords '("abbrev" "convenience" "matching") | ||
:maintainers '(("Dmitry Gutov" . "[email protected]"))) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,8 @@ | |
;; Author: Nikolaj Schumacher | ||
;; Maintainer: Dmitry Gutov <[email protected]> | ||
;; URL: http://company-mode.github.io/ | ||
;; Package-Version: 20241106.2000 | ||
;; Package-Revision: 0ae7c2931122 | ||
;; Package-Version: 20250114.2109 | ||
;; Package-Revision: 9a81d0cca268 | ||
;; Keywords: abbrev, convenience, matching | ||
;; Package-Requires: ((emacs "26.1")) | ||
|
||
|
@@ -538,9 +538,10 @@ even if the backend uses the asynchronous calling convention." | |
(defcustom company-transformers nil | ||
"Functions to change the list of candidates received from backends. | ||
Each function gets called with the return value of the previous one. | ||
Each function is called with the return value of the previous one. | ||
The first one gets passed the list of candidates, already sorted and | ||
without duplicates." | ||
without duplicates (candidates with different annotations are considered to | ||
be distinct)." | ||
:type '(choice | ||
(const :tag "None" nil) | ||
(const :tag "Sort by occurrence" (company-sort-by-occurrence)) | ||
|
@@ -4263,7 +4264,7 @@ Returns a negative number if the tooltip should be displayed above point." | |
end (save-excursion | ||
(vertical-motion (abs height)) | ||
(point)) | ||
ov (make-overlay beg end nil t) | ||
ov (make-overlay beg end nil t t) | ||
args (list (mapcar 'company-plainify | ||
(company-buffer-lines beg end)) | ||
column nl above))) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters