Add php to TAB completion for html2lrf

This commit is contained in:
Kovid Goyal 2007-06-29 15:44:35 +00:00
parent e2a32e3198
commit b1a0514303

View File

@ -76,7 +76,7 @@ def setup_completion():
f = open('/etc/bash_completion.d/libprs500', 'wb') f = open('/etc/bash_completion.d/libprs500', 'wb')
f.write('# libprs500 Bash Shell Completion\n') f.write('# libprs500 Bash Shell Completion\n')
f.write(opts_and_exts('html2lrf', htmlop, f.write(opts_and_exts('html2lrf', htmlop,
['htm', 'html', 'xhtml', 'xhtm', 'rar', 'zip'])) ['htm', 'html', 'xhtml', 'xhtm', 'rar', 'zip', 'php']))
f.write(opts_and_exts('txt2lrf', txtop, ['txt'])) f.write(opts_and_exts('txt2lrf', txtop, ['txt']))
f.write(opts_and_exts('lit2lrf', txtop, ['lit'])) f.write(opts_and_exts('lit2lrf', txtop, ['lit']))
f.write(opts_and_exts('lrf-meta', metaop, ['lrf'])) f.write(opts_and_exts('lrf-meta', metaop, ['lrf']))