Skip to content

Commit b0ea10d

Browse files
authored
style: correct capitalization of 'GitHub' in Copilot CLI backend (#77)
2 parents 31ea699 + 20f3f8f commit b0ea10d

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

ai-code-backends.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ When called from Lisp code, sends CMD directly without prompting."
7070
:upgrade "npm install -g @google/gemini-cli"
7171
:cli "gemini")
7272
(github-copilot-cli
73-
:label "Github Copilot CLI"
73+
:label "GitHub Copilot CLI"
7474
:require ai-code-github-copilot-cli
7575
:start github-copilot-cli
7676
:switch github-copilot-cli-switch-to-buffer

ai-code-github-copilot-cli.el

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
;;; ai-code-github-copilot-cli.el --- Thin wrapper for Github Copilot CLI -*- lexical-binding: t; -*-
1+
;;; ai-code-github-copilot-cli.el --- Thin wrapper for GitHub Copilot CLI -*- lexical-binding: t; -*-
22

33
;;; Commentary:
44
;;
5-
;; Thin wrapper that reuses `claude-code' to run Github Copilot CLI.
5+
;; Thin wrapper that reuses `claude-code' to run GitHub Copilot CLI.
66
;; Provides interactive commands and aliases for the AI Code suite.
77
;;
88
;;; Code:
@@ -22,12 +22,12 @@
2222

2323

2424
(defgroup ai-code-github-copilot-cli nil
25-
"Github Copilot CLI integration via `claude-code'."
25+
"GitHub Copilot CLI integration via `claude-code'."
2626
:group 'tools
2727
:prefix "github-copilot-cli-")
2828

2929
(defcustom github-copilot-cli-program "copilot"
30-
"Path to the Github Copilot CLI executable."
30+
"Path to the GitHub Copilot CLI executable."
3131
:type 'string
3232
:group 'ai-code-github-copilot-cli)
3333

@@ -38,7 +38,7 @@
3838

3939
;;;###autoload
4040
(defun github-copilot-cli (&optional arg)
41-
"Start Github Copilot CLI (reuses `claude-code' startup logic)."
41+
"Start GitHub Copilot CLI (reuses `claude-code' startup logic)."
4242
(interactive "P")
4343
(let ((claude-code-program github-copilot-cli-program) ; override dynamically
4444
(claude-code-program-switches github-copilot-cli-program-switches))
@@ -51,7 +51,7 @@
5151

5252
;;;###autoload
5353
(defun github-copilot-cli-send-command (line)
54-
"Send LINE to Github Copilot CLI programmatically or interactively.
54+
"Send LINE to GitHub Copilot CLI programmatically or interactively.
5555
When called interactively, prompts for the command.
5656
When called from Lisp code, sends LINE directly without prompting."
5757
(interactive "sCopilot> ")

0 commit comments

Comments
 (0)