Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(version): Upgrade to Copilot 1.27.0 #314

Merged
merged 1 commit into from
Aug 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions copilot.el
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ performance."
:group 'copilot
:type 'string)

(defcustom copilot-server-args nil
(defcustom copilot-server-args '("--stdio")
"Additional arguments to pass to the Copilot server."
:group 'copilot
:type '(repeat string))
Expand Down Expand Up @@ -140,11 +140,12 @@ find indentation offset."
(defconst copilot--server-executable
(if (eq system-type 'windows-nt)
(f-join copilot-install-dir "node_modules" "copilot-node-server"
"bin" "copilot-node-server")
(f-join copilot-install-dir "bin" "copilot-node-server"))
"copilot" "dist" "agent.js")
(f-join copilot-install-dir "lib" "node_modules" "copilot-node-server"
"copilot" "dist" "agent.js"))
"The dist directory containing agent.js file.")

(defcustom copilot-version "1.14.0"
(defcustom copilot-version "1.27.0"
"Copilot version.

The default value is the preferred version and ensures functionality.
Expand Down