* Remove tabtab completion script * Will be removed from bashrc or zshrc or fish configs
()
| 90 | * Will be removed from bashrc or zshrc or fish configs |
| 91 | */ |
| 92 | async function uninstallTabCompletionScript() { |
| 93 | try { |
| 94 | await tabtab.uninstall({ |
| 95 | name: 'lb4', |
| 96 | }); |
| 97 | } catch (error) /* istanbul ignore next */ { |
| 98 | debug('tab completion uninstall script'); |
| 99 | throw error; |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * Run corresponding tab-completion command |
no outgoing calls
no test coverage detected