We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cba8dc6 commit ba56904Copy full SHA for ba56904
1 file changed
src/commands/login/attempt-login.mts
@@ -129,9 +129,10 @@ export async function attemptLogin(
129
return { ok: false, message: 'Canceled', cause: 'Canceled by user' }
130
}
131
if (wantToComplete) {
132
+ logger.log('')
133
logger.log('Setting up tab completion...')
- const result = await setupTabCompletion('socket')
134
- if (result.ok) {
+ const setupCResult = await setupTabCompletion('socket')
135
+ if (setupCResult.ok) {
136
logger.success(
137
'Tab completion will be enabled after restarting your terminal',
138
)
0 commit comments