summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2022-08-10manual: Regenerate texiJonas Bernoulli
2022-08-10manual: Use @insertcopyingJonas Bernoulli
2022-06-08Fix typosJonas Bernoulli
2022-06-05with-editor-return: Make sure process buffer is killedJonas 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-09make: Run check-declare-directoryJonas Bernoulli
2022-05-09make: Remove duplicated help entryJonas Bernoulli
2022-05-06Add a space before the export command to avoid polluting $HISTFILEMario 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-03Don't load any optional dependencies at compile-time onlyJonas Bernoulli
Instead rely on `declare-function' and variable declarations. Closes #112.
2022-05-03make: Remove dash from DEPSJonas Bernoulli
The dependency on `dash' has already been dropped earlier.