You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: completers/common/jj_completer/cmd/bookmark_list.go
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -16,15 +16,15 @@ var bookmark_listCmd = &cobra.Command{
16
16
funcinit() {
17
17
carapace.Gen(bookmark_listCmd).Standalone()
18
18
19
-
bookmark_listCmd.Flags().Bool("all", false, "Show all tracking and non-tracking remote bookmarks including the ones whose targets are synchronized with the local bookmarks")
20
-
bookmark_listCmd.Flags().BoolP("all-remotes", "a", false, "Show all tracking and non-tracking remote bookmarks including the ones whose targets are synchronized with the local bookmarks")
19
+
bookmark_listCmd.Flags().Bool("all", false, "Show all tracked and untracked remote bookmarks including the ones whose targets are synchronized with the local bookmarks")
20
+
bookmark_listCmd.Flags().BoolP("all-remotes", "a", false, "Show all tracked and untracked remote bookmarks including the ones whose targets are synchronized with the local bookmarks")
Copy file name to clipboardExpand all lines: completers/common/jj_completer/cmd/metaedit.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ func init() {
16
16
carapace.Gen(metaeditCmd).Standalone()
17
17
18
18
metaeditCmd.Flags().String("author", "", "Set author to the provided string")
19
-
metaeditCmd.Flags().String("author-timestamp", "", "Set the author date to the given date either human readable, eg Sun, 23 Jan 2000 01:23:45 JST) or as a time stamp, eg 2000-01-23T01:23:45+09:00)")
19
+
metaeditCmd.Flags().String("author-timestamp", "", "Set the author date to the given date")
20
20
metaeditCmd.Flags().Bool("force-rewrite", false, "Rewrite the commit, even if no other metadata changed")
21
21
metaeditCmd.Flags().BoolP("help", "h", false, "Print help (see more with '--help')")
22
22
metaeditCmd.Flags().StringSliceP("message", "m", nil, "Update the change description")
0 commit comments