Closed mralusw closed 3 years ago
I should explain a bit more — commenting out parts of a long command is tricky, because once you introduce a # comment
in the command, you can't really continue it:
command \ # comment
# ^^ the \ must occur at EOL
command # comment \
# ^^ the \ is part of the comment
Seems like a good feature, just needs a bit of documenting in the readme.
Ok, if you like the idea, I'll add to the Readme
I've rebased on master, and mentioned the changes in the README; luckily the whole branch seems not to conflict with your reverse-domain-grouping work.
Thanks!
This PR adds support for a
comment
clause, which ignores its next arg. This is quite useful when reconfiguring / debugging / testing (e.g. to disable / enableload-path
, just wrap it incomment %{load-path ... }
); but possibly also for documentation purposes.There's also support for
plug-chain
accepting an initialplug
parameter (actually, any empty plug clauses). This allows a more uniform grammar, which I think you've endorsed in our previous discussions: