Skip to content
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
12 changes: 7 additions & 5 deletions copilot.el
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,13 @@ Disable idle completion if set to nil."

(defcustom copilot-network-proxy nil
"Network proxy to use for Copilot. Nil means no proxy.
Format: '(:host \"127.0.0.1\" :port 80 :username \"username\" :password \"password\")
Format: \='(:host \"127.0.0.1\" :port 80
:username \"username\" :password \"password\")
Username and password are optional.

If you are using a MITM proxy which intercepts TLS connections, you may need to disable
TLS verification. This can be done by setting a pair ':rejectUnauthorized :json-false'
in the proxy plist. For example:
If you are using a MITM proxy which intercepts TLS connections, you may need
to disable TLS verification. This can be done by setting a pair
':rejectUnauthorized :json-false' in the proxy plist. For example:

(:host \"127.0.0.1\" :port 80 :rejectUnauthorized :json-false)
"
Expand Down Expand Up @@ -68,7 +69,8 @@ Enabling event logging may slightly affect performance."
:type '(repeat function))

(defcustom copilot-indent-offset-warning-disable nil
"Disable warning when copilot--infer-indentation-offset cannot find indentation offset."
"Disable warning when copilot--infer-indentation-offset cannot find
indentation offset."
:group 'copilot
:type 'boolean)

Expand Down