summaryrefslogtreecommitdiff
path: root/src/help.c
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.2.4043: using int for second argument of ga_init2()v8.2.4043Bram Moolenaar2022-01-081-1/+1
| | | | | Problem: Using int for second argument of ga_init2(). Solution: Remove unnessary type cast (int) when using sizeof().
* patch 8.2.4012: error messages are spread outv8.2.4012Bram Moolenaar2022-01-051-1/+1
| | | | | Problem: Error messages are spread out. Solution: Move the last error messages to errors.h.
* patch 8.2.4005: error messages are spread outv8.2.4005Bram Moolenaar2022-01-041-2/+2
| | | | | Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
* patch 8.2.4000: Coverity warns for checking for NULL pointer after using itv8.2.4000Bram Moolenaar2022-01-041-2/+0
| | | | | Problem: Coverity warns for checking for NULL pointer after using it. Solution: Remove check for NULL.
* patch 8.2.3992: wrong local-additions in the help with language mixv8.2.3992h-east2022-01-031-16/+15
| | | | | | Problem: Wrong local-additions in the help with language mix. Solution: Adjust how the local additions list is generated. (Hirohito Higashi, closes #9464)
* patch 8.2.3986: error messages are spread outv8.2.3986Bram Moolenaar2022-01-021-1/+1
| | | | | Problem: Error messages are spread out. Solution: Move more error messages to errors.h.
* patch 8.2.3967: error messages are spread outv8.2.3967Bram Moolenaar2022-01-011-1/+1
| | | | | Problem: Error messages are spread out. Solution: Move more errors to errors.h.
* patch 8.2.3957: error messages are spread outv8.2.3957Bram Moolenaar2021-12-311-1/+1
| | | | | Problem: Error messages are spread out. Solution: Move more errors to errors.h.
* patch 8.2.3955: error messages are spread outv8.2.3955Bram Moolenaar2021-12-311-6/+6
| | | | | Problem: Error messages are spread out. Solution: Move more errors to errors.h.
* patch 8.2.3669: buffer overflow with long help argumentv8.2.3669Bram Moolenaar2021-11-251-2/+1
| | | | | Problem: Buffer overflow with long help argument. Solution: Use snprintf().
* patch 8.2.2922: computing array length is done in various waysv8.2.2922K.Takata2021-06-021-1/+1
| | | | | Problem: Computing array length is done in various ways. Solution: Use ARRAY_LENGTH everywhere. (Ken Takata, closes #8305)
* patch 8.2.2160: various typosv8.2.2160Bram Moolenaar2020-12-181-1/+3
| | | | | Problem: Various typos. Solution: Fix spelling mistakes. (closes #7494)
* patch 8.2.1898: command modifier parsing always uses global cmdmodv8.2.1898Bram Moolenaar2020-10-241-5/+6
| | | | | Problem: Command modifier parsing always uses global cmdmod. Solution: Pass in cmdmod_T to use. Rename struct fields consistently.
* patch 8.2.1835: ":help ??" finds the "!!" tagv8.2.1835Bram Moolenaar2020-10-111-28/+52
| | | | | | Problem: ":help ??" finds the "!!" tag. Solution: Do not translate "?" into ".". (Naruhiko Nishino, closes #7114, closes #7115)
* patch 8.2.1807: can use :help in a terminal popup windowv8.2.1807Bram Moolenaar2020-10-061-0/+3
| | | | | Problem: Can use :help in a terminal popup window. Solution: Give an error. (closes #7088)
* patch 8.2.1262: src/ex_cmds.c file is too bigv8.2.1262Bram Moolenaar2020-07-211-0/+1295
Problem: src/ex_cmds.c file is too big. Solution: Move help related code to src/help.c. (Yegappan Lakshmanan, closes #6506)