<feed xmlns='http://www.w3.org/2005/Atom'>
<title>geiser/elisp/geiser-company.el, branch 0.33</title>
<subtitle>emacs and scheme talk to each other</subtitle>
<id>https://jao.io/cgit/geiser/atom?h=0.33</id>
<link rel='self' href='https://jao.io/cgit/geiser/atom?h=0.33'/>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/'/>
<updated>2022-04-23T15:01:15Z</updated>
<entry>
<title>Suggestive patch for simplified completion</title>
<updated>2022-04-23T15:01:15Z</updated>
<author>
<name>Daniel Mendler</name>
<email>mail@daniel-mendler.de</email>
</author>
<published>2022-04-02T00:19:54Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=18faa0ba32c9ce751c16960b2a39b3880b523272'/>
<id>urn:sha1:18faa0ba32c9ce751c16960b2a39b3880b523272</id>
<content type='text'>
NOTE: The patch is largely untested.

Modifications:

- Update readme.org
- Remove geiser-company
- Move Company extensions to geiser-completion

Omissions:

- geiser-company--inhibit-autodoc has been removed. Eldoc handling
  should be implemented in the frontend, not in the backend.
  See for example:
  https://github.com/minad/corfu/blob/04fbfce3d7e9c125a7fd22a34455a508247a522b/corfu.el#L1212
- The quickhelp-string action and geiser-company--docstring have been
  removed. company-quickhelp can use `:company-doc-buffer` instead with
  minimal overhead.
  See:
  https://github.com/company-mode/company-quickhelp/blob/3ca2708b4e5190205aca01d65fe1b391963a53f9/company-quickhelp.el#L138
- The automatic Company setup has been removed. Personally I am not a
  fan of such auto configuration. It is better if completion is
  configured consistently in the user configuration. You may want to
  restore the auto configuration for backward compatibility. It depends
  on your backward compatibility story. I am fine with rare breaking
  changes from time to time.
- There is a cyclic dependency between geiser-edit/geiser-doc and
  geiser-completion, which should be untangled.
</content>
</entry>
<entry>
<title>Byte-compilation warnings fixed</title>
<updated>2022-04-23T14:49:05Z</updated>
<author>
<name>jao</name>
<email>jao@gnu.org</email>
</author>
<published>2022-04-23T14:49:05Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=77adf19d3812ecfd821d250f8bc1eb821a88ee92'/>
<id>urn:sha1:77adf19d3812ecfd821d250f8bc1eb821a88ee92</id>
<content type='text'>
And, actually, fixing bugs: the warnings weren't spurious.
</content>
</entry>
<entry>
<title>Use defvar-local</title>
<updated>2021-04-21T19:38:40Z</updated>
<author>
<name>Jonas Bernoulli</name>
<email>jonas@bernoul.li</email>
</author>
<published>2021-04-21T18:54:12Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=2b45bd368b4acbcef53c3c761725241fb6846102'/>
<id>urn:sha1:2b45bd368b4acbcef53c3c761725241fb6846102</id>
<content type='text'>
It is available since Emacs 24.3 and we already depend on Emacs 24.4.
</content>
</entry>
<entry>
<title>Use cl-lib instead of cl</title>
<updated>2020-03-27T22:13:37Z</updated>
<author>
<name>Jonas Bernoulli</name>
<email>jonas@bernoul.li</email>
</author>
<published>2020-03-27T22:13:37Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=8b07def2de860cbb4f4a28991572fb34b45a9941'/>
<id>urn:sha1:8b07def2de860cbb4f4a28991572fb34b45a9941</id>
<content type='text'>
Starting with Emacs 27 cl is fully deprecated, including at
compile-time.
</content>
</entry>
<entry>
<title>Fix indentation</title>
<updated>2020-03-27T20:38:45Z</updated>
<author>
<name>Jonas Bernoulli</name>
<email>jonas@bernoul.li</email>
</author>
<published>2020-02-25T13:48:04Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=a11b96fe58a2579e15bfcb642f01e0059da59a87'/>
<id>urn:sha1:a11b96fe58a2579e15bfcb642f01e0059da59a87</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Mark the beginning of code part of elisp libraries with Code: heading</title>
<updated>2020-03-27T20:38:45Z</updated>
<author>
<name>Jonas Bernoulli</name>
<email>jonas@bernoul.li</email>
</author>
<published>2020-02-25T13:32:18Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=3ceb31b71824e59e3f000edf7cb09ab86616d723'/>
<id>urn:sha1:3ceb31b71824e59e3f000edf7cb09ab86616d723</id>
<content type='text'>
It's the convention and by following it we make a big step towards
supporting outline navigation.

The convention doesn't say much about what parts of the code are
supposed to be part of that sections and what parts belong in a
subsequent section.  Here we put the `require' forms in this section
and maybe some setup code, that's a popular approach.

In most cases there was "" where we now insert "Code:".  They both
serve a similar purpose and we keep the former because some users
depend on that for navigation.  We even add this "" in libraries
where it previously was missing.

In some cases the permission statement was followed by a commentary,
which obviously does not belong in the "Code:" section.  In such cases
add the conventional "Commentary:" section.
</content>
</entry>
<entry>
<title>Begin the summary lines of all elisp libraries with three semicolons</title>
<updated>2020-03-27T20:38:45Z</updated>
<author>
<name>Jonas Bernoulli</name>
<email>jonas@bernoul.li</email>
</author>
<published>2020-02-25T13:29:01Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=715f4c0ee0f50b251679e55650cedcae3a246b57'/>
<id>urn:sha1:715f4c0ee0f50b251679e55650cedcae3a246b57</id>
<content type='text'>
It's the convention and by following it we make a big step towards
supporting outline navigation.
</content>
</entry>
<entry>
<title>Support 'quickhelp-string command for company-quickhelp</title>
<updated>2018-11-12T02:47:59Z</updated>
<author>
<name>Alexander Konstantinov</name>
<email>akonst89+gitlab@gmail.com</email>
</author>
<published>2018-08-02T23:33:17Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=c5cf86585d6948db36a2bdca4444682e9a8a36ad'/>
<id>urn:sha1:c5cf86585d6948db36a2bdca4444682e9a8a36ad</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Make the geiser-company 'doc-buffer command work again</title>
<updated>2018-11-11T23:27:38Z</updated>
<author>
<name>Alexander Konstantinov</name>
<email>akonst89+gitlab@gmail.com</email>
</author>
<published>2018-08-02T23:22:10Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=f2f63bdd2292d1f74748a880f4408de2c306201d'/>
<id>urn:sha1:f2f63bdd2292d1f74748a880f4408de2c306201d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Pacify byte-compiler a bit</title>
<updated>2016-08-29T20:50:02Z</updated>
<author>
<name>Fice T</name>
<email>fice-t@protonmail.com</email>
</author>
<published>2016-08-14T05:09:02Z</published>
<link rel='alternate' type='text/html' href='https://jao.io/cgit/geiser/commit/?id=c8148d9ebf34f37d4cbfb38d82222bb989f1b02a'/>
<id>urn:sha1:c8148d9ebf34f37d4cbfb38d82222bb989f1b02a</id>
<content type='text'>
</content>
</entry>
</feed>
