35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# File 'lib/vim_printer/cli.rb', line 35
def usage
puts "Usage:\n vim_printer print [OPTIONS]\n\nOptions:\n -b, [--base-dir=BASE_DIR] # Base directory\n # Default: . (current directory)\n -e, [--exts=one two three] # List of extensions to search for\n -f, [--non-exts=one two three] # List of extensions to search for\n -n, [--inc-words=one two three] # List of words to be included in the result\n -x, [--exc-words=one two three] # List of words to be excluded from the result\n -i, [--ignore-case], [--no-ignore-case] # Match case insensitively\n # Default: true\n -r, [--recursive], [--no-recursive] # Search for files recursively\n # Default: true\n -t, [--theme=THEME] # Vim colorscheme to use\n # Default: default\n -v, [--version], [--no-version] # Display version information\n\nPrint the list of files\n EOS\nend\n"
|