CARVIEW |
Select Language
HTTP/2 200
date: Sat, 19 Jul 2025 06:26:33 GMT
content-type: text/html; charset=utf-8
vary: X-PJAX, X-PJAX-Container, Turbo-Visit, Turbo-Frame, X-Requested-With,Accept-Encoding, Accept, X-Requested-With
x-repository-download: git clone https://github.com/neovim/neovim.git
etag: W/"f1e3831db9bee056a856c10468edc339"
cache-control: max-age=0, private, must-revalidate
strict-transport-security: max-age=31536000; includeSubdomains; preload
x-frame-options: deny
x-content-type-options: nosniff
x-xss-protection: 0
referrer-policy: no-referrer-when-downgrade
content-security-policy: default-src 'none'; base-uri 'self'; child-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/; connect-src 'self' uploads.github.com www.githubstatus.com collector.github.com raw.githubusercontent.com api.github.com github-cloud.s3.amazonaws.com github-production-repository-file-5c1aeb.s3.amazonaws.com github-production-upload-manifest-file-7fdce7.s3.amazonaws.com github-production-user-asset-6210df.s3.amazonaws.com *.rel.tunnels.api.visualstudio.com wss://*.rel.tunnels.api.visualstudio.com objects-origin.githubusercontent.com copilot-proxy.githubusercontent.com proxy.individual.githubcopilot.com proxy.business.githubcopilot.com proxy.enterprise.githubcopilot.com *.actions.githubusercontent.com wss://*.actions.githubusercontent.com productionresultssa0.blob.core.windows.net/ productionresultssa1.blob.core.windows.net/ productionresultssa2.blob.core.windows.net/ productionresultssa3.blob.core.windows.net/ productionresultssa4.blob.core.windows.net/ productionresultssa5.blob.core.windows.net/ productionresultssa6.blob.core.windows.net/ productionresultssa7.blob.core.windows.net/ productionresultssa8.blob.core.windows.net/ productionresultssa9.blob.core.windows.net/ productionresultssa10.blob.core.windows.net/ productionresultssa11.blob.core.windows.net/ productionresultssa12.blob.core.windows.net/ productionresultssa13.blob.core.windows.net/ productionresultssa14.blob.core.windows.net/ productionresultssa15.blob.core.windows.net/ productionresultssa16.blob.core.windows.net/ productionresultssa17.blob.core.windows.net/ productionresultssa18.blob.core.windows.net/ productionresultssa19.blob.core.windows.net/ github-production-repository-image-32fea6.s3.amazonaws.com github-production-release-asset-2e65be.s3.amazonaws.com insights.github.com wss://alive.github.com api.githubcopilot.com api.individual.githubcopilot.com api.business.githubcopilot.com api.enterprise.githubcopilot.com; font-src github.githubassets.com; form-action 'self' github.com gist.github.com copilot-workspace.githubnext.com objects-origin.githubusercontent.com; frame-ancestors 'none'; frame-src viewscreen.githubusercontent.com notebooks.githubusercontent.com; img-src 'self' data: blob: github.githubassets.com media.githubusercontent.com camo.githubusercontent.com identicons.github.com avatars.githubusercontent.com private-avatars.githubusercontent.com github-cloud.s3.amazonaws.com objects.githubusercontent.com release-assets.githubusercontent.com secured-user-images.githubusercontent.com/ user-images.githubusercontent.com/ private-user-images.githubusercontent.com opengraph.githubassets.com copilotprodattachments.blob.core.windows.net/github-production-copilot-attachments/ github-production-user-asset-6210df.s3.amazonaws.com customer-stories-feed.github.com spotlights-feed.github.com objects-origin.githubusercontent.com *.githubusercontent.com; manifest-src 'self'; media-src github.com user-images.githubusercontent.com/ secured-user-images.githubusercontent.com/ private-user-images.githubusercontent.com github-production-user-asset-6210df.s3.amazonaws.com gist.github.com; script-src github.githubassets.com; style-src 'unsafe-inline' github.githubassets.com; upgrade-insecure-requests; worker-src github.githubassets.com github.com/assets-cdn/worker/ github.com/assets/ gist.github.com/assets-cdn/worker/
server: github.com
content-encoding: gzip
accept-ranges: bytes
set-cookie: _gh_sess=xLrb7yeV9KN1sF4VD9vLcxKBkkEhTZ1b0DXqenZSjft9Z1Lx5g%2BirNDlWsRVAxL9a7sjx0shL%2BB%2FvHxNRKB0PeOin2h94lx3fWxCDiwoQduYM%2BppQEC0yDs3NUGehF29YJsgSvTm%2FMLvWjab%2FcicrJZY%2Bcjqq9CRRNhBdbxoNMwpDD2POhfA0qTqjxgE6oU5caJmQuUsZ2Y2EYe%2Brrx3eQ7XJuG%2FdLUY8qq66DSHoIMwM0fLuITG5CVxJV48Xk0V5ZFhpReYF7LPPf%2Bw9N2LWQ%3D%3D--2UyiP7Eu3QuKuAMr--Dk6%2FcC3xlwcWiGpz%2FA2MkA%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax
set-cookie: _octo=GH1.1.356262001.1752906393; Path=/; Domain=github.com; Expires=Sun, 19 Jul 2026 06:26:33 GMT; Secure; SameSite=Lax
set-cookie: logged_in=no; Path=/; Domain=github.com; Expires=Sun, 19 Jul 2026 06:26:33 GMT; HttpOnly; Secure; SameSite=Lax
x-github-request-id: A7DA:26CB0:43ED50:5CE5FA:687B3A99
fix(api): allow nvim_buf_set_extmark to accept end_row key (#16686) · neovim/neovim@1b54344 · GitHub
Copy file name to clipboardExpand all lines: test/functional/api/extmark_spec.lua
Skip to content
Navigation Menu
{{ message }}
-
-
Notifications
You must be signed in to change notification settings - Fork 6.2k
Commit 1b54344
authored
fix(api): allow nvim_buf_set_extmark to accept end_row key (#16686)
nvim_buf_get_extmark uses "end_row" rather than "end_line" in its
'details' dict, which means callers must modify the key names if they
want to re-use the information. Allow nvim_buf_set_extmark to take
"end_row" as an alias to "end_line" to make this more compatible.
See [1].
[1]: #15011 (comment)1 parent 5c8e543 commit 1b54344Copy full SHA for 1b54344
File tree
Expand file treeCollapse file tree
4 files changed
+30
-11
lines changedFilter options
- runtime/doc
- src/nvim/api
- test/functional/api
Expand file treeCollapse file tree
4 files changed
+30
-11
lines changed+1-1Lines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2353 | 2353 |
| |
2354 | 2354 |
| |
2355 | 2355 |
| |
2356 |
| - | |
| 2356 | + | |
2357 | 2357 |
| |
2358 | 2358 |
| |
2359 | 2359 |
| |
|
+18-8Lines changed: 18 additions & 8 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
339 | 339 |
| |
340 | 340 |
| |
341 | 341 |
| |
342 |
| - | |
| 342 | + | |
343 | 343 |
| |
344 | 344 |
| |
345 | 345 |
| |
| |||
431 | 431 |
| |
432 | 432 |
| |
433 | 433 |
| |
434 |
| - | |
435 |
| - | |
| 434 | + | |
| 435 | + | |
| 436 | + | |
| 437 | + | |
| 438 | + | |
| 439 | + | |
| 440 | + | |
| 441 | + | |
| 442 | + | |
| 443 | + | |
| 444 | + | |
| 445 | + | |
436 | 446 |
| |
437 |
| - | |
| 447 | + | |
438 | 448 |
| |
439 | 449 |
| |
440 | 450 |
| |
441 | 451 |
| |
442 |
| - | |
443 |
| - | |
| 452 | + | |
| 453 | + | |
444 | 454 |
| |
445 | 455 |
| |
446 | 456 |
| |
| |||
571 | 581 |
| |
572 | 582 |
| |
573 | 583 |
| |
574 |
| - | |
| 584 | + | |
575 | 585 |
| |
576 | 586 |
| |
577 |
| - | |
| 587 | + | |
578 | 588 |
| |
579 | 589 |
| |
580 | 590 |
| |
|
+1Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
5 | 5 |
| |
6 | 6 |
| |
7 | 7 |
| |
| 8 | + | |
8 | 9 |
| |
9 | 10 |
| |
10 | 11 |
| |
|
test/functional/api/extmark_spec.lua
Copy file name to clipboardExpand all lines: test/functional/api/extmark_spec.lua+10-2Lines changed: 10 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
104 | 104 |
| |
105 | 105 |
| |
106 | 106 |
| |
107 |
| - | |
| 107 | + | |
108 | 108 |
| |
109 | 109 |
| |
110 |
| - | |
| 110 | + | |
111 | 111 |
| |
112 | 112 |
| |
113 | 113 |
| |
| |||
1424 | 1424 |
| |
1425 | 1425 |
| |
1426 | 1426 |
| |
| 1427 | + | |
| 1428 | + | |
| 1429 | + | |
| 1430 | + | |
| 1431 | + | |
| 1432 | + | |
| 1433 | + | |
| 1434 | + | |
1427 | 1435 |
| |
1428 | 1436 |
| |
1429 | 1437 |
| |
|
You can’t perform that action at this time.
0 commit comments