CARVIEW |
Select Language
HTTP/2 200
date: Thu, 31 Jul 2025 10:10:26 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/"3dffcea911afcd3b2ece2e06d14b5bc2"
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 wss://alive-staging.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=E4VnQDi%2FFcEn7M%2FG27XztdjlBjzbO4BHtrjjWqIVsxVfkaOhmGWfpsohWIf0xF06vtr4KsUvXPIhl4r4GvJem3S1fZvJUdixdg%2FqIxQOpfF1wVXoXX4I7Olq7NWjD4dgi%2BjS1bj%2BKy3gdgIrLBHhW84WIaiwWX5TiJ9Fd2RDlHIBNbveXeP%2F3mUhUuePWEpPpMxv%2BqXSa2pUPkXBZyGOAjprN1YtYufwPk5ZfkhmhE3OleIR8ILV82hsY32rwaZ5yc8Ob2lYDXtbYCgLy3D54g%3D%3D--jigF%2F4SkSX4K69ku--4n9ZAPASKtNLi%2B1gyEdISw%3D%3D; Path=/; HttpOnly; Secure; SameSite=Lax
set-cookie: _octo=GH1.1.1759301554.1753956624; Path=/; Domain=github.com; Expires=Fri, 31 Jul 2026 10:10:24 GMT; Secure; SameSite=Lax
set-cookie: logged_in=no; Path=/; Domain=github.com; Expires=Fri, 31 Jul 2026 10:10:24 GMT; HttpOnly; Secure; SameSite=Lax
x-github-request-id: 850A:DB217:7BBABC:95CB50:688B4110
feat(job): add parameter to close stdin · neovim/neovim@eb7f24b · GitHub
Skip to content
Navigation Menu
{{ message }}
-
-
Notifications
You must be signed in to change notification settings - Fork 6.2k
Commit eb7f24b
feat(job): add parameter to close stdin
Some programs behave differently when they detect that stdin is being
piped. This can be problematic when these programs are used with the job
control API where stdin is attached, but not typically used. It is
possible to run the job using a PTY which circumvents this problem, but
that includes a lot of overhead when simply closing the stdin pipe would
suffice.
To enable this behavior, add a new parameter to the jobstart options
dict called "stdin" with two valid values: "pipe" (the default)
implements the existing behavior of opening a channel for stdin and
"null" which disconnects stdin (or, if you prefer, connects it to
/dev/null). This is extensible so that other modes can be added in the
future.1 parent eece073 commit eb7f24bCopy full SHA for eb7f24b
Expand file treeCollapse file tree
4 files changed
+45
-9
lines changed+3Lines changed: 3 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
5637 | 5637 |
| |
5638 | 5638 |
| |
5639 | 5639 |
| |
| 5640 | + | |
| 5641 | + | |
| 5642 | + | |
5640 | 5643 |
| |
5641 | 5644 |
| |
5642 | 5645 |
| |
|
+19-4Lines changed: 19 additions & 4 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
289 | 289 |
| |
290 | 290 |
| |
291 | 291 |
| |
| 292 | + | |
| 293 | + | |
| 294 | + | |
292 | 295 |
| |
293 | 296 |
| |
294 | 297 |
| |
| |||
302 | 305 |
| |
303 | 306 |
| |
304 | 307 |
| |
305 |
| - | |
| 308 | + | |
306 | 309 |
| |
307 | 310 |
| |
308 | 311 |
| |
| |||
345 | 348 |
| |
346 | 349 |
| |
347 | 350 |
| |
348 |
| - | |
| 351 | + | |
349 | 352 |
| |
350 | 353 |
| |
351 | 354 |
| |
352 | 355 |
| |
353 | 356 |
| |
354 | 357 |
| |
355 | 358 |
| |
356 |
| - | |
| 359 | + | |
| 360 | + | |
| 361 | + | |
| 362 | + | |
| 363 | + | |
| 364 | + | |
| 365 | + | |
| 366 | + | |
| 367 | + | |
| 368 | + | |
| 369 | + | |
357 | 370 |
| |
358 | 371 |
| |
359 | 372 |
| |
| |||
369 | 382 |
| |
370 | 383 |
| |
371 | 384 |
| |
372 |
| - | |
| 385 | + | |
| 386 | + | |
| 387 | + | |
373 | 388 |
| |
374 | 389 |
| |
375 | 390 |
| |
|
+4Lines changed: 4 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
28 | 28 |
| |
29 | 29 |
| |
30 | 30 |
| |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
31 | 35 |
| |
32 | 36 |
| |
33 | 37 |
| |
|
+19-5Lines changed: 19 additions & 5 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
5182 | 5182 |
| |
5183 | 5183 |
| |
5184 | 5184 |
| |
| 5185 | + | |
5185 | 5186 |
| |
5186 | 5187 |
| |
5187 | 5188 |
| |
| |||
5196 | 5197 |
| |
5197 | 5198 |
| |
5198 | 5199 |
| |
| 5200 | + | |
| 5201 | + | |
| 5202 | + | |
| 5203 | + | |
| 5204 | + | |
| 5205 | + | |
| 5206 | + | |
| 5207 | + | |
| 5208 | + | |
| 5209 | + | |
| 5210 | + | |
5199 | 5211 |
| |
5200 | 5212 |
| |
5201 | 5213 |
| |
| |||
5252 | 5264 |
| |
5253 | 5265 |
| |
5254 | 5266 |
| |
5255 |
| - | |
5256 |
| - | |
| 5267 | + | |
| 5268 | + | |
5257 | 5269 |
| |
5258 | 5270 |
| |
5259 | 5271 |
| |
| |||
7733 | 7745 |
| |
7734 | 7746 |
| |
7735 | 7747 |
| |
7736 |
| - | |
7737 |
| - | |
| 7748 | + | |
| 7749 | + | |
| 7750 | + | |
7738 | 7751 |
| |
7739 | 7752 |
| |
7740 | 7753 |
| |
| |||
10850 | 10863 |
| |
10851 | 10864 |
| |
10852 | 10865 |
| |
| 10866 | + | |
10853 | 10867 |
| |
10854 | 10868 |
| |
10855 |
| - | |
| 10869 | + | |
10856 | 10870 |
| |
10857 | 10871 |
| |
10858 | 10872 |
| |
|
You can’t perform that action at this time.
0 commit comments