* Register tabtab completion script * Will be written in bashrc or zshrc or fish configs
()
| 74 | * Will be written in bashrc or zshrc or fish configs |
| 75 | */ |
| 76 | async function installTabCompletionScript() { |
| 77 | try { |
| 78 | await tabtab.install({ |
| 79 | name: 'lb4', |
| 80 | completer: 'lb4', |
| 81 | }); |
| 82 | } catch (error) /* istanbul ignore next */ { |
| 83 | debug('tab completion install script'); |
| 84 | throw error; |
| 85 | } |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Remove tabtab completion script |
no test coverage detected