[elpa] externals/do-at-point b9771dc534 2/3: Add 'do-at-point-persist-mode'

2024-05-29 Thread ELPA Syncer
branch: externals/do-at-point commit b9771dc534d645bab0e1bfe45e800914c8f2a1e6 Author: Philip Kaludercic Commit: Philip Kaludercic Add 'do-at-point-persist-mode' --- do-at-point.el | 16 ++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/do-at-point.el b/do-at-po

[elpa] externals/do-at-point 0ddf6edb44 1/3: Pass the prefix arg to the transpose actions

2024-05-29 Thread ELPA Syncer
branch: externals/do-at-point commit 0ddf6edb44913c170fbe23aea2ccd9ed677391db Author: Philip Kaludercic Commit: Philip Kaludercic Pass the prefix arg to the transpose actions --- do-at-point.el | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/do-at-point.el b/do-a

[elpa] externals/do-at-point updated (5a5053aee6 -> 1b61af1667)

2024-05-29 Thread ELPA Syncer
elpasync pushed a change to branch externals/do-at-point. from 5a5053aee6 Bind delete-region to DEL new 0ddf6edb44 Pass the prefix arg to the transpose actions new b9771dc534 Add 'do-at-point-persist-mode' new 1b61af1667 Add general 'do-at-point-hook' Summary of ch

[elpa] externals/do-at-point 1b61af1667 3/3: Add general 'do-at-point-hook'

2024-05-29 Thread ELPA Syncer
branch: externals/do-at-point commit 1b61af166721952caf7f4efb595090ea33cd8217 Author: Philip Kaludercic Commit: Philip Kaludercic Add general 'do-at-point-hook' --- do-at-point.el | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/do-at-point.el b/do-at-point.el index

[nongnu] elpa/cider 356f4e031c 1/8: Handle negative line numbers in error messages

2024-05-29 Thread ELPA Syncer
branch: elpa/cider commit 356f4e031c00461e6d40f3b8fad1b579b2e95760 Author: yuhan0 Commit: yuhan0 Handle negative line numbers in error messages --- cider-eval.el | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cider-eval.el b/cider-eval.el index 2f0083e235..f9f10

[nongnu] elpa/cider a4d4c07c2a 2/8: Use rx-to-string instead of eval, minor reformat

2024-05-29 Thread ELPA Syncer
branch: elpa/cider commit a4d4c07c2ab1a37f0371655b0f835344b214a4e1 Author: yuhan0 Commit: yuhan0 Use rx-to-string instead of eval, minor reformat --- cider-eval.el | 128 +- 1 file changed, 65 insertions(+), 63 deletions(-) diff --git

[nongnu] elpa/cider 348dc156d8 7/8: Add link to clojure source reference

2024-05-29 Thread ELPA Syncer
branch: elpa/cider commit 348dc156d87cc75719ffa4a19c6ae67909f265da Author: yuhan0 Commit: yuhan0 Add link to clojure source reference --- cider-eval.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cider-eval.el b/cider-eval.el index 16608ca435..bb88106aa9 100644 --- a/cider-eval.el

[nongnu] elpa/cider 58ce929662 3/8: Document semantics of match group numbering

2024-05-29 Thread ELPA Syncer
branch: elpa/cider commit 58ce929662d36a179a1ff910637d41646c26e762 Author: yuhan0 Commit: yuhan0 Document semantics of match group numbering --- cider-eval.el | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/cider-eval.el b/cider-eval.el index 4645b9bb01..31597a6a

[nongnu] elpa/cider 8d67a14bb9 8/8: Merge pull request #3688 from yuhan0/fix-error-regex

2024-05-29 Thread ELPA Syncer
branch: elpa/cider commit 8d67a14bb9bc87e17553f37bc8755983e7df6d3b Merge: a74dff972c 348dc156d8 Author: vemv Commit: GitHub Merge pull request #3688 from yuhan0/fix-error-regex Handle negative line numbers in error messages --- cider-eval.el | 133 ++

[nongnu] elpa/cider de162d58c4 5/8: Redundant rx or clause

2024-05-29 Thread ELPA Syncer
branch: elpa/cider commit de162d58c4fc452ea04cd0aef33593783980fef4 Author: yuhan0 Commit: yuhan0 Redundant rx or clause (second clause always matches) --- cider-eval.el | 5 + 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/cider-eval.el b/cider-eval.el index 36620

[nongnu] elpa/cider 1378a72b3b 4/8: Refactor an rx form

2024-05-29 Thread ELPA Syncer
branch: elpa/cider commit 1378a72b3b9de7d6d11e5a54dc327f83a53b404b Author: yuhan0 Commit: yuhan0 Refactor an rx form --- cider-eval.el | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cider-eval.el b/cider-eval.el index 31597a6a67..366207a1bb 100644 --- a/cider-eval

[nongnu] elpa/cider 22c773168e 6/8: Add test

2024-05-29 Thread ELPA Syncer
branch: elpa/cider commit 22c773168e928299c66bee3340f1c52be4451bc6 Author: yuhan0 Commit: yuhan0 Add test --- test/cider-error-parsing-tests.el | 11 ++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/test/cider-error-parsing-tests.el b/test/cider-error-parsing-tests

[nongnu] elpa/cider updated (a74dff972c -> 8d67a14bb9)

2024-05-29 Thread ELPA Syncer
elpasync pushed a change to branch elpa/cider. from a74dff972c Update to basilisp v0.1.0b1 to pick up println flush fix for CI new 356f4e031c Handle negative line numbers in error messages new a4d4c07c2a Use rx-to-string instead of eval, minor reformat new 58ce92966

[nongnu] elpa/cider updated (2b37d0f649 -> a74dff972c)

2024-05-29 Thread ELPA Syncer
elpasync pushed a change to branch elpa/cider. from 2b37d0f649 Refactor cider-cheatsheet-select new 5964bd30d9 Add an alternative way to display `cider-cheatsheet-select` (#3686) new 61fad04bcd jack-in support for the Basilisp Clojure dialect in Python new b5526816

[nongnu] elpa/cider b552681621 3/4: Address review comments (remove obsolete option)

2024-05-29 Thread ELPA Syncer
branch: elpa/cider commit b552681621f477f947bf39a3864878db8bd32e9f Author: ikappaki Commit: Bozhidar Batsov Address review comments (remove obsolete option) --- CHANGELOG.md | 1 - cider.el | 15 ++- doc/mo

[nongnu] elpa/cider a74dff972c 4/4: Update to basilisp v0.1.0b1 to pick up println flush fix for CI

2024-05-29 Thread ELPA Syncer
branch: elpa/cider commit a74dff972c2f941cb562ac05251ebbf649eed4df Author: ikappaki Commit: Bozhidar Batsov Update to basilisp v0.1.0b1 to pick up println flush fix for CI --- .github/workflows/test.yml| 2 +- test/integration/integration-tests.el | 4 2 files changed, 1 in

[nongnu] elpa/cider 61fad04bcd 2/4: jack-in support for the Basilisp Clojure dialect in Python

2024-05-29 Thread ELPA Syncer
branch: elpa/cider commit 61fad04bcdb23ae9c94bf3c788f9460456a1cf21 Author: ikappaki Commit: Bozhidar Batsov jack-in support for the Basilisp Clojure dialect in Python --- .github/workflows/test.yml| 6 ++ CHANGELOG.md | 2 + c

[nongnu] elpa/cider 5964bd30d9 1/4: Add an alternative way to display `cider-cheatsheet-select` (#3686)

2024-05-29 Thread ELPA Syncer
branch: elpa/cider commit 5964bd30d9a18144333e9c437879755aa029ce61 Author: Kato Muso Commit: GitHub Add an alternative way to display `cider-cheatsheet-select` (#3686) Instead of having the multi-step selection process, which is the default cider-cheatsheet-select behavior, we repr

[elpa] externals/csv-mode updated (2e4e55a6fe -> 6e8b705042)

2024-05-29 Thread Simen Heggestøyl via
simenheg pushed a change to branch externals/csv-mode. from 2e4e55a6fe Add function for reading a CSV line and return its values as a list. new 93f4641190 Recognize ASCII 31 Unit Separator as separator new 6e8b705042 Bump version number and update news Summary of changes:

[elpa] externals/csv-mode 6e8b705042 2/2: Bump version number and update news

2024-05-29 Thread Simen Heggestøyl via
branch: externals/csv-mode commit 6e8b70504236325989b2f6e19b38602a23f57ba3 Author: Simen Heggestøyl Commit: Simen Heggestøyl Bump version number and update news --- csv-mode.el | 16 +--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/csv-mode.el b/csv-mode.el in

[elpa] externals/csv-mode 93f4641190 1/2: Recognize ASCII 31 Unit Separator as separator

2024-05-29 Thread Simen Heggestøyl via
branch: externals/csv-mode commit 93f4641190c4c784d2b21826d55832b3146a5944 Author: Titus von der Malsburg Commit: Simen Heggestøyl Recognize ASCII 31 Unit Separator as separator --- csv-mode.el | 1 + 1 file changed, 1 insertion(+) diff --git a/csv-mode.el b/csv-mode.el index ebcd9da744..1

[nongnu] elpa/helm-core updated (63b1cf03e7 -> 46bb5abf5b)

2024-05-29 Thread ELPA Syncer
elpasync pushed a change to branch elpa/helm-core. from 63b1cf03e7 Fix real candidate value in file-name-history (#2674) adds 46bb5abf5b Don't reset mouse overlay on resume No new revisions were added by this update. Summary of changes: helm-core.el | 2 +- 1 file changed, 1 inser

[nongnu] elpa/helm 46bb5abf5b: Don't reset mouse overlay on resume

2024-05-29 Thread ELPA Syncer
branch: elpa/helm commit 46bb5abf5b71d485f50373cc6780d46b89dfd1a6 Author: Thierry Volpiatto Commit: Thierry Volpiatto Don't reset mouse overlay on resume otherwise we loose help-echo info. --- helm-core.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm-cor

[nongnu] elpa/d-mode cbdabb9ca5 2/2: Merge pull request #118 from jtbx-prs/elc

2024-05-29 Thread ELPA Syncer
branch: elpa/d-mode commit cbdabb9ca566cc12403f37f46d4102fe778e2721 Merge: 156450fa7a e72b064f60 Author: Vladimir Panteleev Commit: GitHub Merge pull request #118 from jtbx-prs/elc drop call to easy-menu-add --- d-mode.el | 3 --- 1 file changed, 3 deletions(-) diff --git a/d-mode

[nongnu] elpa/d-mode e72b064f60 1/2: drop call to easy-menu-add

2024-05-29 Thread ELPA Syncer
branch: elpa/d-mode commit e72b064f60eb96977287ac4c443bb1c08ac853f7 Author: Jeremy Baxter Commit: Jeremy Baxter drop call to easy-menu-add Obsolete in GNU Emacs 28.1. --- d-mode.el | 3 --- 1 file changed, 3 deletions(-) diff --git a/d-mode.el b/d-mode.el index e8edc358e0..1c1f56c

[elpa] externals/hyperbole 7f68ddb2b1 2/2: Merge pull request #532 from rswgnu/rsw

2024-05-29 Thread ELPA Syncer
branch: externals/hyperbole commit 7f68ddb2b16a5071b99f9a39aaa44ac75ec41e31 Merge: c98fc9b641 b67e214021 Author: Robert Weiner Commit: GitHub Merge pull request #532 from rswgnu/rsw Update hywiki.el with search functions and fix a few smart-org bugs --- ChangeLog | 33 +

[elpa] externals/hyperbole b67e214021 1/2: Update hywiki.el with search functions and fix a few smart-org bugs

2024-05-29 Thread ELPA Syncer
branch: externals/hyperbole commit b67e214021e5c84985f0d0c493af7c6c7ef89696 Author: bw Commit: bw Update hywiki.el with search functions and fix a few smart-org bugs --- ChangeLog | 33 hargs.el | 5 ++-- hsys-org.el | 39

[elpa] externals/ellama c82530a07a 1/3: Begin new session if ellama-chat called with another provider

2024-05-29 Thread ELPA Syncer
branch: externals/ellama commit c82530a07af7ef14555460649625c8a06add56b0 Author: Sergey Kostyaev Commit: Sergey Kostyaev Begin new session if ellama-chat called with another provider --- ellama.el | 9 + 1 file changed, 9 insertions(+) diff --git a/ellama.el b/ellama.el index a7378

[elpa] externals/ellama b8311918b6 2/3: Merge pull request #119 from s-kostyaev/fix-chat-with-special-provider

2024-05-29 Thread ELPA Syncer
branch: externals/ellama commit b8311918b6d95b7b56403e7d40c3da51b164e2ce Merge: fddc1022b5 c82530a07a Author: Sergey Kostyaev Commit: GitHub Merge pull request #119 from s-kostyaev/fix-chat-with-special-provider Begin new session if ellama-chat called with another provider --- ella

[elpa] externals/ellama updated (fddc1022b5 -> 1e1db6d5f1)

2024-05-29 Thread ELPA Syncer
elpasync pushed a change to branch externals/ellama. from fddc1022b5 Bump version new c82530a07a Begin new session if ellama-chat called with another provider new b8311918b6 Merge pull request #119 from s-kostyaev/fix-chat-with-special-provider new 1e1db6d5f1 Bump

[elpa] externals/ellama 1e1db6d5f1 3/3: Bump version

2024-05-29 Thread ELPA Syncer
branch: externals/ellama commit 1e1db6d5f1ced38ad1c76ffca1651787d54998de Author: Sergey Kostyaev Commit: Sergey Kostyaev Bump version --- NEWS.org | 3 +++ ellama.el | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/NEWS.org b/NEWS.org index cf43ca9b92..52991fa8a2 10064