]> git.nbdom.net Git - nb.git/commitdiff
Vim templates
authorNicolas Boisselier <nicolas.boisselier@gmail.com>
Fri, 23 Jan 2015 12:21:35 +0000 (12:21 +0000)
committerNicolas Boisselier <nicolas.boisselier@gmail.com>
Fri, 23 Jan 2015 12:21:35 +0000 (12:21 +0000)
etc/vim/templates/bash.tt

index 7a60f976a7f4c5326a0cdb72b4b81fdf4a82c7b3..f28d9f464ec9cfb36e9727cec1c29910f6c10190 100644 (file)
@@ -42,7 +42,7 @@ Example shell script with embedded POD documentation
 
   -v, --verbose   Print verbose mode
   -d, --debug     Print debug messages   
-  -h, --help      Print this help (alternatives: --man, --help-html|-hh)
+  -h, --help      Print this help (alternatives: --man, --help2man)
 
 =head1 DESCRIPTION
 
@@ -98,7 +98,7 @@ while [ $# -gt 0 ]; do
 
     -*help|-h) usage | pod2text --width 250; exit 0 ;;
     --man) usage | pod2man | man -l -; exit 0 ;;
-    --help-html|-hh) usage | pod2html; exit 0 ;;
+    --help2man) usage | pod2man; exit 0 ;;
 
     --verbose|-v) VERBOSE=$(($VERBOSE+1)) ;;