summaryrefslogtreecommitdiff
path: root/src/channel.c
Commit message (Expand)AuthorAgeFilesLines
* patch 9.0.1391: "clear" macros are not always usedv9.0.1391Yegappan Lakshmanan2023-03-071-1/+1
* patch 9.0.1336: functions without arguments are not always declared properlyv9.0.1336Yegappan Lakshmanan2023-02-211-1/+1
* patch 9.0.1269: channel test often fails on Mac OSv9.0.1269Bram Moolenaar2023-01-311-4/+6
* patch 9.0.0977: it is not easy to see what client-server commands are doingv9.0.0977Bram Moolenaar2022-11-301-190/+12
* patch 9.0.0965: using one window for executing autocommands is insufficientv9.0.0965Bram Moolenaar2022-11-281-1/+7
* patch 9.0.0777: code is indented too muchv9.0.0777Yegappan Lakshmanan2022-10-161-234/+236
* patch 9.0.0394: Cygwin: multibyte characters may be broken in terminal windowv9.0.0394K.Takata2022-09-061-6/+20
* patch 9.0.0350: :echowindow does not work in a compiled functionv9.0.0350Bram Moolenaar2022-09-011-5/+1
* patch 9.0.0335: checks for Dictionary argument often give a vague errorv9.0.0335Yegappan Lakshmanan2022-08-301-8/+3
* patch 9.0.0206: redraw flags are not named specificallyv9.0.0206Bram Moolenaar2022-08-141-1/+1
* patch 8.2.5107: some callers of rettv_list_alloc() check for not OKv8.2.5107Bram Moolenaar2022-06-161-1/+1
* patch 8.2.5056: the channel log only contains some of the raw terminal outputv8.2.5056Bram Moolenaar2022-06-041-2/+8
* patch 8.2.4928: various white space and cosmetic mistakesv8.2.4928Bram Moolenaar2022-05-091-1/+1
* patch 8.2.4909: MODE_ enum entries names are too genericv8.2.4909Bram Moolenaar2022-05-071-36/+38
* patch 8.2.4830: possible endless loop if there is unused typaheadv8.2.4830Bram Moolenaar2022-04-261-12/+36
* patch 8.2.4788: large payload for LSP message not testedv8.2.4788Yegappan Lakshmanan2022-04-191-0/+2
* patch 8.2.4780: parsing an LSP message fails when it is splitv8.2.4780Yegappan Lakshmanan2022-04-181-9/+24
* patch 8.2.4771: Coverity warns for not checking return valuev8.2.4771Bram Moolenaar2022-04-171-1/+2
* patch 8.2.4758: when using an LSP channel want to get the message IDv8.2.4758Yegappan Lakshmanan2022-04-161-1/+12
* patch 8.2.4753: error from setting an option is silently ignoredv8.2.4753Bram Moolenaar2022-04-151-2/+3
* patch 8.2.4742: there is no way to start logging very early in startupv8.2.4742Bram Moolenaar2022-04-121-1/+4
* patch 8.2.4699: hard to reproduce hang when reading from a channelv8.2.4699LemonBoy2022-04-051-0/+5
* patch 8.2.4684: cannot open a channel on a Unix domain socketv8.2.4684LemonBoy2022-04-041-19/+113
* patch 8.2.4683: verbose check with dict_find() to see if a key is presentv8.2.4683Yegappan Lakshmanan2022-04-041-3/+2
* patch 8.2.4648: handling LSP messages is a bit slowv8.2.4648Yegappan Lakshmanan2022-03-301-44/+252
* patch 8.2.4241: some type casts are redundantv8.2.4241=?UTF-8?q?Dundar=20G=C3=B6c?=2022-01-281-1/+1
* patch 8.2.4043: using int for second argument of ga_init2()v8.2.4043Bram Moolenaar2022-01-081-1/+1
* patch 8.2.4012: error messages are spread outv8.2.4012Bram Moolenaar2022-01-051-16/+13
* patch 8.2.4003: error messages are spread outv8.2.4003Bram Moolenaar2022-01-041-2/+2
* patch 8.2.3967: error messages are spread outv8.2.3967Bram Moolenaar2022-01-011-1/+1
* patch 8.2.3961: error messages are spread outv8.2.3961Bram Moolenaar2021-12-311-6/+6
* patch 8.2.3763: when editing the cmdline a callback may cause a scroll upv8.2.3763Bram Moolenaar2021-12-091-2/+2
* patch 8.2.3750: error messages are everywherev8.2.3750Bram Moolenaar2021-12-051-2/+4
* patch 8.2.3640: freeze when calling term_wait() in a close callbackv8.2.3640Bram Moolenaar2021-11-211-0/+4
* patch 8.2.3415: Vim9: not all function argument types are properly checkedv8.2.3415Yegappan Lakshmanan2021-09-081-1/+1
* patch 8.2.3320: some local functions are not staticv8.2.3320Yegappan Lakshmanan2021-08-091-1/+1
* patch 8.2.3274: macro for printf format check can be simplifiedv8.2.3274Bram Moolenaar2021-08-021-5/+1
* patch 8.2.3229: Vim9: runtime and compile time type checks are not the samev8.2.3229Yegappan Lakshmanan2021-07-271-6/+41
* patch 8.2.3211: Vim9: argument types are not checked at compile timev8.2.3211Yegappan Lakshmanan2021-07-241-1/+7
* patch 8.2.3188: Vim9: argument types are not checked at compile timev8.2.3188Yegappan Lakshmanan2021-07-201-1/+20
* patch 8.2.3135: Vim9: builtin function arguments not checked at compile timev8.2.3135Yegappan Lakshmanan2021-07-101-0/+5
* patch 8.2.3082: a channel command "echoerr" does not show anythingv8.2.3082Bram Moolenaar2021-07-011-3/+8
* patch 8.2.3081: cannot catch errors in a channel commandv8.2.3081Alisue2021-06-301-2/+3
* patch 8.2.3069: error messages are spread outv8.2.3069Bram Moolenaar2021-06-271-2/+2
* patch 8.2.2944: Vim9: no error when using job or channel as a stringv8.2.2944Bram Moolenaar2021-06-051-0/+18
* patch 8.2.2666: Vim9: not enough function arguments checked for stringv8.2.2666Bram Moolenaar2021-03-271-0/+5
* patch 8.2.1661: cannot connect to 127.0.0.1 for host with only IPv6 addressesv8.2.1661Bram Moolenaar2020-09-111-2/+2
* patch 8.2.1654: when job writes to hidden buffer current window is wrongv8.2.1654Bram Moolenaar2020-09-101-9/+9
* patch 8.2.1597: the channel source file is too bigv8.2.1597Bram Moolenaar2020-09-051-1841/+4
* patch 8.2.1588: cannot read back the prompt of a prompt bufferv8.2.1588Bram Moolenaar2020-09-041-0/+23