Skip to content

Commit

Permalink
exa: add missing --icons and --numeric flags
Browse files Browse the repository at this point in the history
  • Loading branch information
LoicGrobol authored May 16, 2022
1 parent e463cf0 commit 0bdb355
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions completers/exa_completer/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,15 @@ func init() {
rootCmd.Flags().Bool("group-directories-first", false, "list directories before other files")
rootCmd.Flags().BoolP("header", "h", false, "add a header row to each column")
rootCmd.Flags().BoolP("help", "?", false, "show list of command-line options")
rootCmd.Flags().BoolP("icons", false, "display icons")
rootCmd.Flags().StringP("ignore-glob", "I", "", "glob patterns (pipe-separated) of files to ignore")
rootCmd.Flags().BoolP("inode", "i", false, "list each file's inode number")
rootCmd.Flags().StringP("level", "L", "", "limit the depth of recursion")
rootCmd.Flags().BoolP("links", "H", false, "list each file's number of hard links")
rootCmd.Flags().BoolP("list-dirs", "d", false, "list directories like regular files")
rootCmd.Flags().BoolP("long", "l", false, "display extended file metadata as a table")
rootCmd.Flags().BoolP("modified", "m", false, "use the modified timestamp field")
rootCmd.Flags().BoolP("numeric", "n", false, "list numeric user and group IDs")
rootCmd.Flags().BoolP("oneline", "1", false, "display one entry per line")
rootCmd.Flags().BoolP("only-dirs", "D", false, "list only directories")
rootCmd.Flags().BoolP("recurse", "R", false, "recurse into directories")
Expand Down

0 comments on commit 0bdb355

Please sign in to comment.