Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
name: Stylua
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- run: date +%W > weekly

- name: Restore cache
id: cache
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.cargo/bin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: Luacheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Setup
run: |
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
install-rg: choco install nodejs-lts curl

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: rhysd/action-setup-vim@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: stevearc/nvim-typecheck-action@v2
with:
level: Warning
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-copilot-nodejs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
if: github.repository == 'zbirenbaum/copilot.lua'
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Create directory
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vimdocgen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
name: Convert Markdown to Vimdoc
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: kdheepak/panvimdoc@main
with:
vimdoc: "copilot"
Expand Down
71 changes: 71 additions & 0 deletions copilot/js/contextWorker.js

Large diffs are not rendered by default.

1,957 changes: 1,008 additions & 949 deletions copilot/js/main.js

Large diffs are not rendered by default.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
26 changes: 13 additions & 13 deletions copilot/js/tfidfWorker.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion doc/copilot.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
*copilot.txt* Fully featured & enhanced replacement for copilot.vim complete with API for interacting with Github Copilot
For NVIM v0.11.0 Last change: 11 June, 2026
For NVIM v0.11.0 Last change: 01 July, 2026

==============================================================================
1. copilot.lua *copilot-copilot.lua*
Expand Down
2 changes: 1 addition & 1 deletion lua/copilot/util.lua
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function M.get_editor_info()
editorPluginInfo = {
name = "copilot.lua",
-- reflects version of github/copilot-language-server-release
version = "1.508.0",
version = "1.515.0",
},
}
return info
Expand Down
Loading