Skip to content

Commit

Permalink
tmp
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Oct 15, 2023
1 parent f90284f commit 5977866
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions completers/wezterm_completer/cmd/cli_movePaneToNewTab.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package cmd

import (
"github.com/rsteube/carapace"
"github.com/spf13/cobra"
)

var cli_movePaneToNewTabCmd = &cobra.Command{
Use: "move-pane-to-new-tab",
Short: "Move a pane into a new tab",
Run: func(cmd *cobra.Command, args []string) {},
}

func init() {
carapace.Gen(cli_movePaneToNewTabCmd).Standalone()

cli_movePaneToNewTabCmd.Flags().BoolP("help", "h", false, "Print help")
cli_movePaneToNewTabCmd.Flags().Bool("new-window", false, "Create tab in a new window")
cli_movePaneToNewTabCmd.Flags().String("pane-id", "", "Specify the pane that should be moved")
cli_movePaneToNewTabCmd.Flags().String("window-id", "", "Specify the window into which the new tab will be created")
cli_movePaneToNewTabCmd.Flags().String("workspace", "", "Override the default workspace name with the provided name")
cliCmd.AddCommand(cli_movePaneToNewTabCmd)

// TODO flag completion
}

0 comments on commit 5977866

Please sign in to comment.