Adam Spiers
Adam Spiers
I have also posted this at https://savannah.gnu.org/bugs/?65569
Is there a away to consistently create docstrings that are aligned by column when rendered by hydra?
Isn't this resolved now?
I tried to work around this with `%(format "%3d" abbrev-mode)` but that resulted in extra double-quotes around the value.
I think I traced it to the use of `S` as the format specifier: https://github.com/abo-abo/hydra/blob/112e689f75b59398d8eca79ac6562dca12b8a959/hydra.el#L786-L788 If I change that to `s` then the double-quotes vanish.
Ahah! I figured out from the source that I can choose the specifier myself via `%s(format "%3d" abbrev-mode)` and then it works. So this is a workable alternative to the...
Nope - never heard of hydra+ and can't find it via google either! Any chance of a pointer? Thanks!
Ah OK, so it's `defhydra+` not `hydra+`. That's a great tip - thanks a lot! It really needs to be documented though - changing the issue title accordingly.
As this now exists as an extension, and there is consensus that it should remain that way, presumably this issue can be closed?
I discussed this with Doug at a recent OpenStack event. My suggestion would be to fundamentally rearchitect demoshell to use [Pexpect](https://pexpect.readthedocs.io/en/stable/) (Python's version of the famous Expect). That way demoshell...
Awesome thanks!