summaryrefslogtreecommitdiffstats
path: root/runtime/doc/channel.txt
AgeCommit message (Collapse)Author
2024-06-13runtime(doc): update return type for job_info()Christian Brabandt
related: #14982 Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-06-13runtime(doc): correct return types for job_start() and job_status()Christian Brabandt
fixes: #14982 Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-06-09runtime(doc): add return type info for Vim function descriptionsChristian Brabandt
Signed-off-by: Christian Brabandt <cb@256bit.org>
2024-01-02patch 9.1.0000: Vim 9.1 releasev9.1.0000v9.1.0Christian Brabandt
Problem: Need a new release Solution: Release Vim 9.1 Signed-off-by: Christian Brabandt <cb@256bit.org>
2023-09-11runtime(doc): documentation updatesChristian Brabandt
This is a collection of various improvements to the help pages closes #12790 Co-authored-by: Houl <anwoku@yahoo.de> Co-authored-by: Doug Kearns <dougkearns@gmail.com> Co-authored-by: Adri Verhoef <a3@a3.xs4all.nl> Signed-off-by: Christian Brabandt <cb@256bit.org>
2022-12-06Update runtime filesBram Moolenaar
2022-12-01patch 9.0.0979: ch_log() text can be hard to find in the log filev9.0.0979Bram Moolenaar
Problem: ch_log() text can be hard to find in the log file. Solution: Prepend "ch_log()" to the text.
2022-11-09Update runtime filesBram Moolenaar
2022-07-29Update runtime filesBram Moolenaar
2022-06-28release version 9.0v9.0.0000Bram Moolenaar
Problem: About time to release Vim 9.0. Solution: Update the version number everywhere.
2022-06-26Update runtime filesBram Moolenaar
2022-06-24Update runtime filesBram Moolenaar
2022-06-17Update runtime filesBram Moolenaar
2022-06-06Update runtime files.Bram Moolenaar
2022-06-04patch 8.2.5056: the channel log only contains some of the raw terminal outputv8.2.5056Bram Moolenaar
Problem: The channel log only contains some of the raw terminal output. Solution: Add the "o" flag to log all terminal output. Use it for "--log".
2022-04-18Update runtime filesBram Moolenaar
2022-04-18patch 8.2.4780: parsing an LSP message fails when it is splitv8.2.4780Yegappan Lakshmanan
Problem: Parsing an LSP message fails when it is split. Solution: Collapse the received data before parsing. (Yegappan Lakshmanan, closes #10215)
2022-04-16patch 8.2.4761: documentation for using LSP messages is incompletev8.2.4761Yegappan Lakshmanan
Problem: Documentation for using LSP messages is incomplete. Solution: Update the documentation. (Yegappan Lakshmanan, closes #10206)
2022-04-16patch 8.2.4758: when using an LSP channel want to get the message IDv8.2.4758Yegappan Lakshmanan
Problem: When using an LSP channel want to get the message ID. Solution: Have ch_sendexpr() return the ID. (Yegappan Lakshmanan, closes #10202)
2022-04-12patch 8.2.4742: there is no way to start logging very early in startupv8.2.4742Bram Moolenaar
Problem: There is no way to start logging very early in startup. Solution: Add the --log argument. Include the date in the start message in the log file. Avoid a duplicate message when forking. Log an executed shell command.
2022-04-08Update runtime filesBram Moolenaar
2022-04-04patch 8.2.4684: cannot open a channel on a Unix domain socketv8.2.4684LemonBoy
Problem: Cannot open a channel on a Unix domain socket. Solution: Add Unix domain socket support. (closes #10062)
2022-03-30Update runtime filesBram Moolenaar
2022-03-30patch 8.2.4648: handling LSP messages is a bit slowv8.2.4648Yegappan Lakshmanan
Problem: Handling LSP messages is a bit slow. Solution: Included support for LSP messages. (Yegappan Lakshmanan, closes #10025)
2022-03-08Update runtime filesBram Moolenaar
2022-02-26Update runtime files.Bram Moolenaar
2021-12-05Update runtime filesBram Moolenaar
2021-08-14Update runtime filesBram Moolenaar
2021-07-15patch 8.2.3162: Vim9: argument types are not checked at compile timev8.2.3162Yegappan Lakshmanan
Problem: Vim9: argument types are not checked at compile time. Solution: Add more type checks. (Yegappan Lakshmanan, closes #8560)
2020-10-26Update runtime files.Bram Moolenaar
2020-09-04patch 8.2.1588: cannot read back the prompt of a prompt bufferv8.2.1588Bram Moolenaar
Problem: Cannot read back the prompt of a prompt buffer. Solution: Add prompt_getprompt(). (Ben Jackson, closes #6851)
2020-07-10Update runtime filesBram Moolenaar
2020-06-07Update runtime filesBram Moolenaar
2020-04-12patch 8.2.0557: no IPv6 support for channelsv8.2.0557Bram Moolenaar
Problem: No IPv6 support for channels. Solution: Add IPv6 support. (Ozaki Kiichi, closes #5893)
2019-12-12Vim 8.2 releasev8.2.0000v8.2.0Bram Moolenaar
2019-12-07Runtime file updates.Bram Moolenaar
2019-09-11Update runtime filesBram Moolenaar
2019-08-22patch 8.1.1912: more functions can be used as methodsv8.1.1912Bram Moolenaar
Problem: More functions can be used as methods. Solution: Make channel and job functions usable as a method.
2019-07-31Update runtime files.Bram Moolenaar
2019-07-21patch 8.1.1726: the eval.txt help file is too bigv8.1.1726Bram Moolenaar
Problem: The eval.txt help file is too big. Solution: Split off testing support to testing.txt. Move function details to where the functionality is explained.
2019-05-26Update runtime files.Bram Moolenaar
2019-05-05patch 8.1.1280: remarks about functionality not in Vi clutters the helpv8.1.1280Bram Moolenaar
Problem: Remarks about functionality not in Vi clutters the help. Solution: Move all info about what is new in Vim or already existed in Vi to vi_diff.txt. Remove {not in Vi} remarks. (closes #4268) Add "noet" to the help files modeline. Also include many other help file improvements.
2019-03-24Update runtime files.Bram Moolenaar
2018-09-06patch 8.1.0350: Vim may block on ch_sendraw()v8.1.0350Bram Moolenaar
Problem: Vim may block on ch_sendraw() when the job is sending data back to Vim, which isn't read yet. (Nate Bosch) Solution: Add the "noblock" option to job_start(). (closes #2548)
2018-07-29Update runtime files.Bram Moolenaar
2018-06-19Update runtime files.Bram Moolenaar
2018-06-03patch 8.1.0027: difficult to make a plugin that feeds a line to a jobv8.1.0027Bram Moolenaar
Problem: Difficult to make a plugin that feeds a line to a job. Solution: Add the nitial code for the "prompt" buftype.
2018-05-17Vim 8.1 releasev8.1.0000Bram Moolenaar
Update version number and information. Fix a couple of tests.
2018-04-20Update runtime files.Bram Moolenaar
2017-08-11Update runtime files.Bram Moolenaar