| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-05-11 | Release version 2.8.3v2.8.3 | Jonas Bernoulli | |
| 2019-05-11 | Fix previous commit | Jonas Bernoulli | |
| 2019-05-08 | with-editor-kill-buffer-noop: When killing Emacs silently cancel | Jonas Bernoulli | |
| Closes #64. | |||
| 2019-05-05 | Release version 2.8.2v2.8.2 | Jonas Bernoulli | |
| 2019-02-24 | manual: Prevent evaluation of code blocks | Jonas Bernoulli | |
| 2019-02-24 | manual: Call ox-texinfo+-update-copyright-years while exporting | Jonas Bernoulli | |
| 2018-11-13 | manual: Clarify with-editor-shell-command's descriptionv2.8.1 | Jonas Bernoulli | |
| The old description wasn't exactly wrong but misleading non-the-less. Closes #60. | |||
| 2018-11-03 | with-editor-finish: Preserve local git-commit-post-finish-hook | Jonas Bernoulli | |
| 2018-11-03 | with-editor-{finish,cancel}-hook: No longer ignore global value | Jonas Bernoulli | |
| 2018-10-31 | Release version 2.8.0v2.8.0 | Jonas Bernoulli | |
| 2018-10-31 | make: Remove leftover debug statement | Jonas Bernoulli | |
| 2018-10-29 | with-editor*: Correct debug declaration | Jonas Bernoulli | |
| 2018-10-26 | Update documentation | Jonas Bernoulli | |
| 2018-10-26 | with-editor*: New macro | Jonas Bernoulli | |
| 2018-10-09 | with-editor-{finish,cancel}: Run post hooks in correct directory | Jonas Bernoulli | |
| Run `with-editor-post-{finish,cancel}-hook' in the same directory as was current in the buffer from which `with-editor-{finish,cancel}' was invoked. This is necessary because running `with-editor-return' likely changes the value of `default-directory', since it changes the current directory. | |||
| 2018-10-08 | Update documentation | Jonas Bernoulli | |
| 2018-10-08 | with-editor-shell-command-use-emacsclient: Fix last modified info | Jonas Bernoulli | |
| The default value was modified between 2.7.0 and 2.7.1. | |||
| 2018-10-03 | with-editor-sleeping-editor: Also print the working directory | Jonas Bernoulli | |
| When `git-commit' is invoked from a sub-directory, then it changes the working directory to the root of the working tree before invoking the editor. Additionally it ask the editor to edit a relative path in most cases. That path is relative to the top-level, so we need the sleeping editor to also print the name of that directory; or we would end up trying to edit e.g. "/path/to/repo/subdir/.git/COMMIT_EDITMSG" instead of "/path/to/repo/.git/COMMIT_EDITMSG". Actually, as of 2.19.0, `git-commit' no longer does this, it uses an absolute file-name now. But programs might still do it and that is legitimate. `$EDITOR' inherits the working directory from its parent process, so it normally isn't a problem if the file-name is relative. It only a problem here because `$EDITOR' in hour case forwards the edit request to a running `emacs' instance, which is not a child process and therefore does not inherit the working directory. Fixes #55. | |||
| 2018-07-26 | Release version 2.7.4v2.7.4 | Jonas Bernoulli | |
| 2018-06-18 | manual: Use a preamble to make initial text collapsible | Jonas Bernoulli | |
| 2018-04-14 | Improve detection of remacs client in macOSv2.7.3 | Christian Johansson | |
| 2018-03-22 | make: Refactor manual publishingv2.7.2 | Jonas Bernoulli | |
| 2018-03-22 | make: Remove deleted pages when publishing manual | Jonas Bernoulli | |
| 2018-03-18 | Changing heading of library footer section | Jonas Bernoulli | |
| The old heading was a bit silly. | |||
| 2018-03-18 | Update .gitignore | Jonas Bernoulli | |
| Make it consistent with other such files in my other packages. | |||
| 2018-03-18 | Rename COPYING file to LICENSE | Jonas Bernoulli | |
| 2018-02-17 | Use process-live-p to check whether process is alive | Mario Rodas | |
| When `server-process` dies, it still keeps the reference to the died process with status `closed` and is evaluated as non-nil, therefore does not restart correctly in such cases. | |||
| 2018-02-13 | Add some autoload | Rémi Vanicat | |
| The selected function are the function describe as entry point in README.md plus with-editor-export-hg-editor that has the same role than with-editor-export-git-editor, but for another VCS. | |||
| 2018-01-11 | Release version 2.7.1v2.7.1 | Jonas Bernoulli | |
| 2017-12-17 | make: inject style switcher into generated html manual | Jonas Bernoulli | |
| 2017-12-17 | manual: use @noindent before version sentence | Jonas Bernoulli | |
| Putting the version sentence inside the same QUOTE block as the license looked weird. | |||
| 2017-12-03 | Ignore additional generated files | Mark Shroyer | |
| 2017-11-27 | Use the emacsclient again when running shell commands | Jonas Bernoulli | |
| This fixes the issues described in #40 and reintroduces the issue described in #23. Users who do not care about #40 but don't like #23 can set the new option `with-editor-shell-command-use-emacsclient' to nil. | |||
| 2017-10-06 | make: generate CDN invalidation after upload | Jonas Bernoulli | |
| 2017-10-06 | make: remove clean-texi and clean-all targets | Jonas Bernoulli | |
| 2017-10-06 | make: use ox-texinfo+-update-version-strings | Jonas Bernoulli | |
| 2017-10-06 | make: use same export settings as for manual Org exports | Jonas Bernoulli | |
| 2017-10-06 | make: rename and sanitize some variables | Jonas Bernoulli | |
| 2017-10-06 | manual: put local-variables into an ignored section | Jonas Bernoulli | |
| 2017-10-06 | manual: enforce preservation of indentation | Jonas Bernoulli | |
| 2017-10-02 | shell-command: enable with-editor-mode when appropriatev2.7.0 | Jonas Bernoulli | |
| Because `emacsclient' only passed the environment along when its `--create-frame' argument is used, we cannot tell whether `with-editor' is involved, and therefore should not enable `with-editor-mode'. If we use the sleeping editor, then we know that `with-editor' is involved, so always use that in our advice to `shell-command'. Fixes #23. | |||
| 2017-09-27 | .travis.yml: fail on byte compilation warnings | Noam Postavsky | |
| Require pcase at compile time only. | |||
| 2017-09-27 | Build on Travis | Jonas Bernoulli | |
| 2017-09-25 | Require pcase | Jonas Bernoulli | |
| 2017-09-24 | with-editor-output-filter: don't assume default-directory is valid | Jonas Bernoulli | |
| ... because `with-editor-process-filter' may bind it to nil. When we still used `file-remote-p' instead of `tramp-tramp-file-p' in `with-editor-output-filter' (i.e. before 9fc047751b53), then that did not matter because the latter simply returns nil when its argument is nil, while the former raises an error. | |||
| 2017-09-24 | Cosmetics and typo fixes | Jonas Bernoulli | |
| 2017-09-24 | with-editor-export-editor: remove unnecessary leftovers | Jonas Bernoulli | |
| Previously we just reinstated to already set filter. This completes fab38c451da40db17d021009ffbc53199b5e2237. | |||
| 2017-08-17 | Guard against nonexistent default directoryv2.6.0 | Philipp Stephani | |
| Fixes #34. Modified-by: Jonas Bernoulli <jonas@bernoul.li> | |||
| 2017-08-16 | with-editor-locate-emacsclient: don't assume version string length | Jonas Bernoulli | |
| Emacs usually identifies itself as "N.M.1" or "N.0.[59][0-9]" but at least one users Emacs identifies itself as just "N.M", so stop assuming that the version string always consist of at least three elements. Fixes #33. | |||
| 2017-08-03 | with-editor--setup: create from code previously in with-editor | Jonas Bernoulli | |
| This makes it easier to make changes without having to recompile all packages that use the `with-editor' macro, and the result of macro-expansion gets smaller too. | |||
