From 9cc3570df3b085168bfbba6cc70d46dd0f38331d Mon Sep 17 00:00:00 2001 From: Kelvin Schoofs Date: Mon, 15 Apr 2019 15:31:29 +0200 Subject: [PATCH] Suggest OpenSSH pipe in agent field (ConfigEditor) --- webview/src/ConfigEditor/fields.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webview/src/ConfigEditor/fields.tsx b/webview/src/ConfigEditor/fields.tsx index 40cbef1..268dec9 100644 --- a/webview/src/ConfigEditor/fields.tsx +++ b/webview/src/ConfigEditor/fields.tsx @@ -65,7 +65,7 @@ export function root(config: FileSystemConfig, onChange: FSCChanged<'root'>): Re export function agent(config: FileSystemConfig, onChange: FSCChanged<'agent'>): React.ReactElement { const callback = (newValue: string) => onChange('agent', newValue === 'pageant' ? (true as any) : newValue); const description = `Path to ssh-agent's UNIX socket for ssh-agent-based user authentication. Supports 'pageant' for PuTTY's Pagent, and environment variables, e.g. $SSH_AUTH_SOCK`; - const values = ['pageant', '$SSH_AUTH_SOCK']; + const values = ['pageant', '//./pipe/openssh-ssh-agent', '$SSH_AUTH_SOCK']; const value = (config.agent as any) === true ? 'pageant' : config.agent; return }