From eb29992d019ea88544d962c18bcae0ffbc575570 Mon Sep 17 00:00:00 2001 From: fautore Date: Wed, 19 Nov 2025 14:06:32 +0100 Subject: [PATCH] fix(README.md): Fix "JJ log all" revisions to "'all()'" to support jj 0.35.0; --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index db7e6bb..9f18cee 100644 --- a/README.md +++ b/README.md @@ -204,7 +204,7 @@ require("jj").setup({ -- Some functions like `describe` or `log` can take parameters vim.keymap.set("n", "jL", function() jj.log { - revisions = "all()", + revisions = "'all()'", -- equivalent to jj log -r :: } end, { desc = "JJ log all" })