summaryrefslogtreecommitdiff
path: root/src/help.c
Commit message (Collapse)AuthorAgeFilesLines
* 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)