summaryrefslogtreecommitdiff
path: root/elisp/geiser-xref.el
AgeCommit message (Collapse)Author
2022-03-06Harmonizing buffer namesjao
So that now all start with *Geiser (and a space for hidden ones) and use consistent capitalization (see issue #38).
2020-03-27Fix indentationJonas Bernoulli
2020-03-27Mark the beginning of code part of elisp libraries with Code: headingJonas Bernoulli
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.
2020-03-27Begin the summary lines of all elisp libraries with three semicolonsJonas Bernoulli
It's the convention and by following it we make a big step towards supporting outline navigation.
2016-04-23Define 'geiser-xref-mode' with 'define-derived-mode'Alex Kost
2016-04-20Do not use 'geiser-xref--with-buffer' before it is definedAlex Kost
This is a fix similar to the one made in commit 8e75455dfbd46355d777c26366e7ccfcb59ace20.
2012-10-11WhitespaceJose Antonio Ortega Ruiz
2010-11-27Fix for xref sorting by moduleJose Antonio Ortega Ruiz
Since, you know, module names are now uninterned symbols.
2010-11-27No more interning in the scheme readerJose Antonio Ortega Ruiz
We avoid using elisp's read for symbols, reading uninterned ones instead. And then, we cannot use symbols as keys in responses from scheme: we're using strings instead.
2010-11-26Remove unnecessary calls to symbol-at-pointJose Antonio Ortega Ruiz
... which interns the symbol in the global obarray: rather unfriendly. We still need to remove a few calls to that beast, and avoid intern in the scheme reader.
2010-10-30Elisp: more flexible parsing of :eval and :ge formsJose Antonio Ortega Ruiz
This allows the implementation decide the concrete structure of the code sent to the REPL. For instance, it doesn't need to be a single s-expression, and argument order can be re-arranged.
2010-09-05Guile: xref commands working againJose Antonio Ortega Ruiz
2009-11-13Bug fix: displaying signatures correctly in xref buffers.Jose Antonio Ortega Ruiz
2009-09-26Bug fix: xref commands were always asking for the target procedure's name.Jose Antonio Ortega Ruiz
2009-09-11BSD relicensing: elisp code.Jose Antonio Ortega Ruiz
2009-04-09Minor nitsJose Antonio Ortega Ruiz
2009-04-05Xrefs formatting nits.Jose Antonio Ortega Ruiz
2009-04-05Bug fix.Jose Antonio Ortega Ruiz
2009-04-05Better xrefs display (classified by module).Jose Antonio Ortega Ruiz
2009-04-01Better xref display.Jose Antonio Ortega Ruiz
2009-03-21Echo area message while retrieving xrefs.Jose Antonio Ortega Ruiz
2009-03-18Callers/callees (C-c <, C-c >).Jose Antonio Ortega Ruiz
2009-03-06A bit more robust generic methods.Jose Antonio Ortega Ruiz
2009-03-06New command to display generic methods (C-cC-dg) implemented.Jose Antonio Ortega Ruiz