63 lines
1.5 KiB
JavaScript
63 lines
1.5 KiB
JavaScript
/*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
/*
|
|
* Copyright 2015 Joyent, Inc.
|
|
*
|
|
* `triton completion ...`
|
|
*/
|
|
|
|
var fs = require('fs');
|
|
var path = require('path');
|
|
|
|
|
|
function do_completion(subcmd, opts, args, cb) {
|
|
if (opts.help) {
|
|
this.do_help('help', {}, [subcmd], cb);
|
|
return;
|
|
}
|
|
|
|
if (opts.raw) {
|
|
console.log(this.bashCompletionSpec());
|
|
} else {
|
|
var specExtra = fs.readFileSync(
|
|
path.join(__dirname, '../etc/triton-bash-completion-types.sh'),
|
|
'utf8');
|
|
console.log(this.bashCompletion({specExtra: specExtra}));
|
|
}
|
|
cb();
|
|
}
|
|
|
|
do_completion.options = [
|
|
{
|
|
names: ['help', 'h'],
|
|
type: 'bool',
|
|
help: 'Show this help.'
|
|
},
|
|
{
|
|
names: ['raw'],
|
|
type: 'bool',
|
|
hidden: true,
|
|
help: 'Only output the Bash completion "spec". ' +
|
|
'This is only useful for debugging.'
|
|
}
|
|
];
|
|
do_completion.help = [
|
|
'Output bash completion code for the `triton` CLI.',
|
|
'',
|
|
'Installation:',
|
|
' {{name}} completion > /usr/local/etc/bash_completion.d/{{name}}',
|
|
'',
|
|
'Alternative installation:',
|
|
' {{name}} completion > ~/.{{name}}.completion',
|
|
' echo "source ~/.{{name}}.completion" >> ~/.bashrc',
|
|
'',
|
|
'{{options}}'
|
|
].join('\n');
|
|
do_completion.hidden = true;
|
|
|
|
module.exports = do_completion;
|