Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

help: Add a keyword feature #4630

Merged
merged 1 commit into from
Oct 31, 2024
Merged

Conversation

Grillo-0
Copy link
Collaborator

@Grillo-0 Grillo-0 commented Oct 13, 2024

It would be nice to not need to go the documentation website. This aims to solve that by introducing the concept of categories to the help command.

Basically, categories are things that we want to add help messages to, but they don't necessarily have an associated subcommand.

For now we only have two categories:
- revsets: Shows the docs for revsets
- tutorial: Shows the tutorial that is on the documentation

You get the category content by tipping jj help revsets.

It would be nice to have all the documentation on the categories, maybe a next commit could do it.

Checklist

If applicable:

  • I have updated CHANGELOG.md
  • I have updated the documentation (README.md, docs/, demos/)
  • I have updated the config schema (cli/src/config-schema.json)
  • I have added tests to cover my changes

@joyously
Copy link

Is this associated with #3224?

cli/src/commands/help.rs Outdated Show resolved Hide resolved
cli/src/commands/help.rs Outdated Show resolved Hide resolved
cli/src/commands/help.rs Outdated Show resolved Hide resolved
@Grillo-0
Copy link
Collaborator Author

Is this associated with #3224?

Oh! I didn't know about that! But yeah, I don't see why this couldn't be extended after to explain errors. This PR started from discussion on #4518: #4518 (comment).

@Grillo-0 Grillo-0 force-pushed the help-category branch 5 times, most recently from a173a66 to 60a048d Compare October 13, 2024 15:51
cli/src/commands/help.rs Outdated Show resolved Hide resolved
cli/src/commands/help.rs Show resolved Hide resolved
cli/src/commands/help.rs Outdated Show resolved Hide resolved
cli/src/commands/help.rs Outdated Show resolved Hide resolved
cli/src/commands/help.rs Outdated Show resolved Hide resolved
cli/tests/test_help_command.rs Outdated Show resolved Hide resolved
cli/tests/test_help_command.rs Outdated Show resolved Hide resolved
cli/src/commands/help.rs Outdated Show resolved Hide resolved
cli/src/commands/help.rs Outdated Show resolved Hide resolved
@thoughtpolice
Copy link
Collaborator

Related: #3130 by me, which actually adds a docs subcommand that just includes all documentation from the website into the binary; it uses a terminal display library to make the markdown more readable. But I haven't had any time to really polish it and make it merge worthy.

I don't think it should block this or anything, just putting it out there. In the future I imagine some merger of these two ideas would occur, really.

@Grillo-0 Grillo-0 force-pushed the help-category branch 5 times, most recently from a6ddaa7 to fd411fe Compare October 16, 2024 03:04
@Grillo-0 Grillo-0 force-pushed the help-category branch 5 times, most recently from abe4799 to 24b84f3 Compare October 20, 2024 14:40
@Grillo-0 Grillo-0 requested a review from yuja October 20, 2024 15:22
cli/src/commands/help.rs Outdated Show resolved Hide resolved
cli/src/commands/help.rs Outdated Show resolved Hide resolved
cli/src/commands/help.rs Show resolved Hide resolved
@Grillo-0 Grillo-0 force-pushed the help-category branch 7 times, most recently from 3b8cba1 to cf590c5 Compare October 29, 2024 14:18
@martinvonz
Copy link
Owner

@Grillo-0: I see that you requested my review. I find it hard to find enough time to review many PRs lately. I'm happy to trust Yuya's review. Let me know if you really want me to review it too.

cli/src/command_error.rs Outdated Show resolved Hide resolved
cli/src/commands/help.rs Outdated Show resolved Hide resolved
cli/src/commands/help.rs Outdated Show resolved Hide resolved
cli/src/commands/help.rs Outdated Show resolved Hide resolved
cli/tests/test_help_command.rs Outdated Show resolved Hide resolved
cli/src/commands/help.rs Outdated Show resolved Hide resolved
@Grillo-0 Grillo-0 force-pushed the help-category branch 4 times, most recently from 59073e9 to cf61214 Compare October 30, 2024 14:24
@Grillo-0 Grillo-0 requested a review from yuja October 30, 2024 14:33
Copy link
Collaborator

@yuja yuja left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks.

CHANGELOG.md Outdated Show resolved Hide resolved
It would be nice to not need to go the documentation website. This aims
to solve that by introducing the concept of keyword to the help
command.

Basically, keywords are things that we want to add help messages to,
but they don't necessarily have an associated subcommand.

For now we only have two keywords:
	- `revsets`: Shows the docs for revsets
	- `tutorial`: Shows the tutorial that is on the documentation

You get the keyword content by tipping `jj help --keyword revsets` or
`jj help -k revsets`.

You can also list the available keywords with `jj help --help`.

It would be nice to have all the documentation on the keywords, maybe
a next commit could do it.
@Grillo-0
Copy link
Collaborator Author

I will merge this

@Grillo-0 Grillo-0 merged commit f2acb98 into martinvonz:main Oct 31, 2024
18 checks passed
@Grillo-0 Grillo-0 deleted the help-category branch October 31, 2024 19:55
Keyword {
name: "revsets",
description: "A functional language for selecting a set of revision",
content: include_str!("../../../docs/revsets.md"),
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does anyone know if this pointer outside of the crate will work when we publish to crates.io (as I'm supposed to do on wednesday)?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch. It could be worked around by a symlink (ln -s ../docs cli), but symlink has its own problem, so I have no idea.

Copy link
Collaborator

@thoughtpolice thoughtpolice Nov 5, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I somewhat doubt it will, I found a rather confusing thread about it.

We should probably instead use build.rs in order to get access to OUT_DIR and just copy the files there at compile time. A minor annoyance but nothing too horrid, I guess (though I'd need to figure out how to port the Buck changes, I expect it would be very minor.)

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you mean that we should make build.rs copy the files from docs/ into e.g. cli/srcs/docs/ so we have two copies of the files?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps, what we can do with build.rs is to fall back to ../docs if ./docs doesn't exist? We'll need docs symlink or something in order to include docs/* in the release package.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants