aboutsummaryrefslogtreecommitdiff
path: root/src/man
Commit message (Collapse)AuthorAge
* docs: list NVIM_APPNAME as env on manpage (#25935)330-1272023-11-09
|
* docs #22363Justin M. Keyes2023-06-19
| | | | | | | | | Co-authored by: zeertzjq <zeertzjq@outlook.com> Co-authored by: Steven Todd McIntyre II <114119064+stmii@users.noreply.github.com> Co-authored by: nobe4 <nobe4@users.noreply.github.com> - docs: mention --luadev-mod to run with lua runtime files When changing a lua file in the ./runtime folder, a new contributor might expect changes to be applied to the built Neovim binary.
* feat(lua): send "--" literally to Lua "-l" scriptJustin M. Keyes2023-01-05
| | | | | | | | | | | | Problem: When "-l" is followed by "--", we stop sending args to the Lua script and treat "--" in the usual way. This was for flexibility but didn't have a strong use-case, and has these problems: - prevents Lua "-l" scripts from handling "--" in their own way. - complicates the startup logic (must call nlua_init before command_line_scan) Solution: Don't treat "--" specially if it follows "-l".
* fix(help): add `--clean` to `-h` (#20171)Christian Clason2022-09-14
| | | update man file to match
* build: move man/ to src/man/ #19119Justin M. Keyes2022-06-27
Problem: man/ contains source files for manpage generation, it doesn't need to live at the project root. Solution: Move it to src/man/.