| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-08-10 | manual: Regenerate texi | Jonas Bernoulli | |
| 2022-08-10 | manual: Use @insertcopying | Jonas Bernoulli | |
| 2022-06-08 | Fix typos | Jonas Bernoulli | |
| 2022-06-05 | with-editor-return: Make sure process buffer is killed | Jonas Bernoulli | |
| If there is a client but it is not live anymore, likely because an error occurred while responding to the edit request, then `server-delete-client' will never be called, while we relied on that killing the buffer. | |||
| 2022-05-09 | make: Run check-declare-directory | Jonas Bernoulli | |
| 2022-05-09 | make: Remove duplicated help entry | Jonas Bernoulli | |
| 2022-05-06 | Add a space before the export command to avoid polluting $HISTFILE | Mario Rodas | |
| Adding a space character before the export command doesn't save the command in the Shell history file. This works because most of Unix distributions usually ship with $HISTCONTROL=ignoreboth. | |||
| 2022-05-03 | Don't load any optional dependencies at compile-time only | Jonas Bernoulli | |
| Instead rely on `declare-function' and variable declarations. Closes #112. | |||
| 2022-05-03 | make: Remove dash from DEPS | Jonas Bernoulli | |
| The dependency on `dash' has already been dropped earlier. | |||
| 2022-04-22 | make: Improve creation of autoloads file | Jonas Bernoulli | |
| 2022-04-22 | make: Right-align target verbs | Jonas Bernoulli | |
| 2022-04-22 | Refresh library header | Jonas Bernoulli | |
| 2022-04-22 | Use string-search instead of string-match-p | Jonas Bernoulli | |
| 2022-04-22 | Depend on compat package | Jonas Bernoulli | |
| 2022-04-22 | Drop support for Emacs 24 | Jonas Bernoulli | |
| Please update to Emacs 25 or 26 or 27 or 28. | |||
| 2022-04-22 | Use string-suffix-p instead of string-match-p | Jonas Bernoulli | |
| 2022-04-12 | with-editor-sleeping-editor-filter: Store window configuration | Dan Kessler | |
| Closes #107. | |||
| 2022-04-02 | Guide users towards the community, discussions and documentation | Jonas Bernoulli | |
| 2022-04-02 | Use function-quote when appropriate | Jonas Bernoulli | |
| 2022-03-29 | Convert readme to Org | Jonas Bernoulli | |
| 2022-03-21 | make: Set GITSTATS | Jonas Bernoulli | |
| 2022-03-20 | Automatically publish statistics | Jonas Bernoulli | |
| 2022-03-20 | Remove AUTHORS.md | Jonas Bernoulli | |
| This is part of my effort to make the Makefiles of packages more similar to each other. Except for Magit, the other packages do not come with such a file. | |||
| 2022-03-18 | Use locate-file instead of locate-file-internal | Jonas Bernoulli | |
| The extra steps in `locate-file' don't affect the result and they are very cheap so doing them needlessly doesn't matter. | |||
| 2022-02-11 | Resume development | Jonas Bernoulli | |
| 2022-02-11 | Release version 3.2.0v3.2.0 | Jonas Bernoulli | |
| 2022-02-10 | Sync .orgconfig with that of other packages | Jonas Bernoulli | |
| These changes don't make a difference here. Consistency is good. | |||
| 2022-01-30 | Hardcode version string for now | Jonas Bernoulli | |
| 2022-01-30 | Add CI workflow to generate and distribute manual | Jonas Bernoulli | |
| 2022-01-26 | with-editor-sleeping-editor: Prefix output with newline | Jonas Bernoulli | |
| This makes it possible to continue to only look for the WITH-EDITOR instruction at the beginning of a line and still support hooks that might fail to print a newline character after their output. | |||
| 2022-01-24 | shell-command--shell-command-with-editor-mode: Fix remote code-path | Jaeyoon Jeong | |
| 2022-01-21 | manual: Fix version macro and prefer PACKAGE_REVDESC | Jonas Bernoulli | |
| 2022-01-07 | Release version 3.1.1v3.1.1 | Jonas Bernoulli | |
| 2022-01-01 | Release version 3.1.0v3.1.0 | Jonas Bernoulli | |
| 2022-01-01 | Bump copyright years | Jonas Bernoulli | |
| 2021-12-26 | manual: Use updated support for definition commands | Jonas Bernoulli | |
| Instead of ox-texinfo+.el use the new implementation that I expect to be merged into Org itself. | |||
| 2021-12-26 | manual: Move common settings to .orgconfig | Jonas Bernoulli | |
| 2021-12-26 | manual: Downcase keywords | Jonas Bernoulli | |
| 2021-12-18 | with-editor-sleeping-editor-filter: Limit length of saved output | Yikai Zhao | |
| Improve performance by limitting the maximum length of the string saved in process filters. While using with `vterm', this `incomplete' string may get very large and it hurts performance. In my case, it can easily get to few megabytes after using the same terminal for a long time, which would then increase the latency of each keystroke significantly. We should only need to keep the last few bytes to make it work. | |||
| 2021-12-16 | make: Set more variables in default.mk | Jonas Bernoulli | |
| 2021-12-16 | make: Fix publish and release targets | Jonas Bernoulli | |
| 2021-12-16 | make: Cosmetics | Jonas Bernoulli | |
| 2021-12-16 | make: Update stats target | Jonas Bernoulli | |
| 2021-12-16 | Add lisp/ and docs/ directories | Jonas Bernoulli | |
| 2021-12-16 | make: Add stats target | Jonas Bernoulli | |
| 2021-12-08 | manual: No longer support dissolvable sections | Jonas Bernoulli | |
| These sections existed because I am not fully happy with how `org-cycle' works, which I should deal with by patching that function or writing a substitute. Besides, this manual did not even use any such sections. | |||
| 2021-11-08 | manual: Use Org macros | Jonas Bernoulli | |
| 2021-10-28 | with-editor-emulate-terminal: Extend search for editor instruction | Jonas Bernoulli | |
| The "WITH-EDITOR" instruction on stdout may follow other text on the same line (even in cases where that is not the case for `shell-mode', `eshell-mode' and `vterm'). Look for the instruction anywhere in the output, not just at the beginning of lines. | |||
| 2021-10-28 | with-editor-emulate-terminal: Insert all strings | Jonas Bernoulli | |
| Previously we tried to avoid displaying the "WITH-EDITOR" instruction on stdout but that also means that strings that do not end with a newline character are not processes immediately and that caused `term' to freeze. Calling `term-emulate-terminal' unconditionally avoids that, but causes the "WITH-EDITOR" to be displayed. | |||
| 2021-10-28 | with-editor-output-filter: Move definition | Jonas Bernoulli | |
