summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-08-06Release version 3.4.1v3.4.1Jonas Bernoulli
2024-08-05Depend on Emacs 26.1Jonas Bernoulli
2024-07-25Release version 3.4.0v3.4.0Jonas Bernoulli
2024-07-25with-editor-mode: Prevent dangerous use as a commandJonas Bernoulli
We already prevent disabling the mode interactively, but now we do so by not even defining it as a command, if the used Emacs version supports it. More importantly, also prevent the mode from being enabled. Enabling the mode manually is dangerous because, as always, that instructs the user on how to cancel the buffer, and if they do that, then that also deletes the visited file. Closes #131.
2024-07-13Bump compat dependencyJonas Bernoulli
2024-07-02manual: Fix typosMichael Albinus
2024-06-23Release version 3.3.4v3.3.4Jonas Bernoulli
2024-06-23server-visit-files@: Fix removal from file-name-historyJonas Bernoulli
The entries in `file-name-history' were passed through `abbreviate-file-name', so we have to do the same here. Closes https://github.com/magit/magit/issues/5159.
2024-06-23Use string-join instead of mapconcatJonas Bernoulli
2024-06-18Release version 3.3.3v3.3.3Jonas Bernoulli
2024-06-18Bump compat dependencyJonas Bernoulli
2024-06-18make: Fix texi targetJonas Bernoulli
2024-06-09Add docstring to all advicesJonas Bernoulli
2024-06-09Use define-advice instead of advice-addJonas Bernoulli
2024-06-07Silence byte-compilerJonas Bernoulli
There is a docstring that must contain control characters because it contains an example for a script that must do so.
2024-06-07No longer declare vterm functionsJonas Bernoulli
I don't want to install vterm, just so check-declare has nothing to complain about.
2024-06-07make: Integrate texi targetJonas Bernoulli
Now that an Org version (9.6), which contains the necessary changes to ox-texinfo, has been released, we assume that users have the necessary tools.
2024-04-15Update contact informationJonas Bernoulli
2024-04-15Update contact informationJonas Bernoulli
2024-02-07readme: Use static NonGNU Elpa badgeJonas Bernoulli
The official badge cannot be used because it is red, which is commonly used in badges to indicate failure.
2024-01-01Bump copyright yearsJonas Bernoulli
2023-12-17make: Add redo targetJonas Bernoulli
2023-12-09make: Remove obsolete org-export kludgesJonas Bernoulli
2023-09-17docs: Suggest keymap-global-set instead of define-keyJonas Bernoulli
2023-08-29Release version 3.3.2v3.3.2Jonas Bernoulli
2023-08-27Use emacsclient-program-name if that is boundJonas Bernoulli
This should make it possible to use `with-editor' on Android. For Remacs continue to hardcode "remacsclient" because it has not been updated since this variable was introduced and is unlikely to be updated any time soon.
2023-08-25Release version 3.3.1v3.3.1Jonas Bernoulli
2023-07-11with-editor-debug: Display $PATH as a listJonas Bernoulli
Makes it slightly easier to compare it with exec-path.
2023-07-11manual: Fix name of vterm's hookLouai Al-Khanji
This seems to work properly only with `vterm-mode-hook', not with `vterm-exec-hook'. "with-editor.el" correctly mentions `vterm-mode-hook', but the documentation referred to `vterm-exec-hook'.
2023-06-08Place comma after "e.g." and "i.e."Jonas Bernoulli
2023-05-11Release version 3.3.0v3.3.0Jonas Bernoulli
2023-05-11manual: Regenerate texiJonas Bernoulli
2023-05-11manual: Fix pastoJonas Bernoulli
2023-05-11Bump compat dependencyJonas Bernoulli
2023-04-12readme: UntabifyJonas Bernoulli
2023-02-12Use defvar-keymapJonas Bernoulli
2023-02-12Bump compat dependencyJonas Bernoulli
2023-02-10with-editor--setup: Replace leading "~" with home directoryJonas Bernoulli
Otherwise it would get quoted, resulting in an invalid path. Even if that weren't the case, we still would have to expand "~", because git doesn't know what that means.
2023-02-10with-editor--setup: Shell-quote executable againJonas Bernoulli
Quoting is the right thing to do. Applications that fail because of that, are the ones that need fixing, in the case of shell script, by using: eval "$EDITOR" file Fixes #121.
2023-01-18Teach sleeping editor about "+L[:C]" argument preceding filenameJonas Bernoulli
Closes #120.
2023-01-18Fix symbol name in docstringJonas Bernoulli
2023-01-16ci: Add compile workflowJonas Bernoulli
2023-01-16ci: Use new reusable workflowsJonas Bernoulli
2023-01-16readme: Add badgesJonas Bernoulli
2023-01-08Reduce quoting used for with-editor-emacsclient-executableJonas Bernoulli
Only quote whitespace instead of using `shell-quote-argument'. Closes #119.
2023-01-07Bump copyright yearsJonas Bernoulli
2022-11-27Use new version string format for unreleased revisionsJonas Bernoulli
"N-git" < "N"; but "N.50-git" > "N".
2022-11-19make: Explicitly specify output directory for makeinfo --htmlJonas Bernoulli
The default output directory differs between makeinfo versions.
2022-10-20make: Suppress warning about obsolete autoload packageJonas Bernoulli
2022-08-10make: Print message for texi targetJonas Bernoulli