UNPKG

@kui-shell/plugin-git

Version:

Kui plugin that offers git integrations

58 lines 2.57 kB
/* * Copyright 2019 The Kubernetes Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; import Debug from 'debug'; import { registerTabCompletionEnumerator } from '@kui-shell/core'; const debug = Debug('plugins/bash-like/tab-completion/git'); /** * Tab completion handler for git branch names * */ function completeGitBranches(tab, commandLine, spec) { return __awaiter(this, void 0, void 0, function* () { const args = commandLine.argvNoOptions; const { toBeCompleted } = spec; if (args[0] === 'git' && (args[1] === 'checkout' || args[1] === 'branch')) { try { const completions = yield tab.REPL.qexec(`! git branch --list '${toBeCompleted ? toBeCompleted + '*' : ''}' --sort=refname --sort=committerdate`, undefined, undefined, { raw: true }); return completions .split(/[\n\r]/) .filter(_ => _) .map(_ => _.replace(/^\s*\*?\s*/, '').substring(toBeCompleted.length)); } catch (err) { debug('squashing error from attempted git tab completion', err); return []; } } }); } /** * Entry point to register tab completion handlers * */ export default () => { registerTabCompletionEnumerator(completeGitBranches); }; //# sourceMappingURL=tab-completion.js.map