mirror of
https://github.com/pengzhile/cocopilot.git
synced 2025-01-19 02:25:51 +08:00
add support for vscode
Signed-off-by: pengzhile <pengzhile@gmail.com>
This commit is contained in:
parent
9484446e3e
commit
d0cbb1cc2f
@ -7,5 +7,6 @@
|
|||||||
3. `macOS/linux系统`执行`cocopilot.sh`
|
3. `macOS/linux系统`执行`cocopilot.sh`
|
||||||
4. 看到`done. please restart your ide.`表示成功。
|
4. 看到`done. please restart your ide.`表示成功。
|
||||||
5. 重启你的IDE就好。
|
5. 重启你的IDE就好。
|
||||||
6. 不支持`VSCode`,它都抛弃`macOS`了。
|
6. 这是个小玩具,可能测试不充分,别找我。
|
||||||
7. 这是个小玩具,可能测试不充分,别找我。
|
|
||||||
|
#### 对于`VSCode`,步骤基本相同,执行对应`vscode.sh`/`vscode.bat`,**无需执行**`cocopilot.sh`/`cocopilot.bat`。
|
||||||
|
@ -10,7 +10,7 @@ fi
|
|||||||
|
|
||||||
COPILOT_DIR="$CONFIG_DIR/github-copilot"
|
COPILOT_DIR="$CONFIG_DIR/github-copilot"
|
||||||
if [ ! -d "$COPILOT_DIR" ]; then
|
if [ ! -d "$COPILOT_DIR" ]; then
|
||||||
mkdir -p "${COPILOT_DIR}"
|
mkdir -p "$COPILOT_DIR"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo '{"github.com":{"user":"cocopilot","oauth_token":"ghu_ThisIsARealFreeCopilotKeyByCoCopilot","dev_override":{"copilot_token_url":"https://api.cocopilot.org/copilot_internal/v2/token"}}}' > "$COPILOT_DIR/hosts.json"
|
echo '{"github.com":{"user":"cocopilot","oauth_token":"ghu_ThisIsARealFreeCopilotKeyByCoCopilot","dev_override":{"copilot_token_url":"https://api.cocopilot.org/copilot_internal/v2/token"}}}' > "$COPILOT_DIR/hosts.json"
|
||||||
|
40
vscode.bat
Normal file
40
vscode.bat
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
@echo off
|
||||||
|
setlocal
|
||||||
|
|
||||||
|
set extensions_dir=%userprofile%\.vscode\extensions
|
||||||
|
if not exist "%extensions_dir%" (
|
||||||
|
echo ERROR: VSCode extensions directory not found!
|
||||||
|
pause
|
||||||
|
exit /b 1
|
||||||
|
)
|
||||||
|
|
||||||
|
for /f "tokens=*" %%a in ('dir /b /ad "%extensions_dir%" ^| findstr /r /c:"^github\.copilot-[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*$"') do (
|
||||||
|
set copilot_dir=%%a
|
||||||
|
goto :found
|
||||||
|
)
|
||||||
|
|
||||||
|
echo ERROR: Copilot extension not found!
|
||||||
|
pause
|
||||||
|
exit /b 1
|
||||||
|
|
||||||
|
:found
|
||||||
|
set copilot_dir=%extensions_dir%\%copilot_dir%
|
||||||
|
set extension_file=%copilot_dir%\dist\extension.js
|
||||||
|
if not exist "%extension_file%" (
|
||||||
|
echo ERROR: Copilot extension entry file not found!
|
||||||
|
pause
|
||||||
|
exit /b 1
|
||||||
|
)
|
||||||
|
|
||||||
|
echo please be patient...
|
||||||
|
|
||||||
|
set tmp_file=%copilot_dir%\dist\extension.js.tmp
|
||||||
|
(
|
||||||
|
echo process.env.CODESPACES="true";process.env.GITHUB_TOKEN="ghu_ThisIsARealFreeCopilotKeyByCoCopilot";process.env.GITHUB_SERVER_URL="https://github.com";process.env.GITHUB_API_URL="https://api.cocopilot.org";
|
||||||
|
) > "%tmp_file%"
|
||||||
|
|
||||||
|
type "%extension_file%" >> "%tmp_file%"
|
||||||
|
move "%tmp_file%" "%extension_file%" > nul
|
||||||
|
|
||||||
|
echo done. please restart your vscode.
|
||||||
|
pause
|
29
vscode.sh
Normal file
29
vscode.sh
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
EXTENSIONS_DIR="$HOME/.vscode/extensions"
|
||||||
|
if [ ! -d "$EXTENSIONS_DIR" ]; then
|
||||||
|
echo "ERROR: VSCode extensions directory not found!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
COPILOT_DIR=$(ls -lt "$EXTENSIONS_DIR" | grep '^d' | awk '{print $9}' | grep -E '^github\.copilot-\d+\.\d+\.\d+$' | head -n 1)
|
||||||
|
if [ -z "$COPILOT_DIR" ]; then
|
||||||
|
echo "ERROR: Copilot extension not found!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
COPILOT_DIR="$EXTENSIONS_DIR/$COPILOT_DIR"
|
||||||
|
EXTENSION_FILE="$COPILOT_DIR/dist/extension.js"
|
||||||
|
if [ ! -f "$EXTENSION_FILE" ]; then
|
||||||
|
echo "ERROR: Copilot extension entry file not found!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
TMP_FILE="$COPILOT_DIR/dist/extension.js.tmp"
|
||||||
|
echo 'process.env.CODESPACES="true";process.env.GITHUB_TOKEN="ghu_ThisIsARealFreeCopilotKeyByCoCopilot";process.env.GITHUB_SERVER_URL="https://github.com";process.env.GITHUB_API_URL="https://api.cocopilot.org";' > "$TMP_FILE"
|
||||||
|
cat "$EXTENSION_FILE" >> "$TMP_FILE"
|
||||||
|
mv "$TMP_FILE" "$EXTENSION_FILE"
|
||||||
|
|
||||||
|
echo 'done. please restart your vscode.'
|
Loading…
Reference in New Issue
Block a user