summaryrefslogtreecommitdiffstatshomepage
path: root/src/nvim/input.h
AgeCommit message (Collapse)AuthorFiles
2025-08-14refactor(build): remove INCLUDE_GENERATED_DECLARATIONS guardsbfredl1
These are not needed after #35129 but making uncrustify still play nice with them was a bit tricky. Unfortunately `uncrustify --update-config-with-doc` breaks strings with backslashes. This issue has been reported upstream, and in the meanwhile auto-update on every single run has been disabled.
2023-12-22refactor(options): generate BV_ and WV_ constants (#26705)zeertzjq1
2023-11-27refactor: move Arena and ArenaMem to memory_defs.h (#26240)zeertzjq1
2023-11-12refactor: replace manual header guards with #pragma oncedundargoc1
It is less error-prone than manually defining header guards. Pretty much all compilers support it even if it's not part of the C standard.
2021-12-10refactor(misc1): move out high-level input functions to a new file: input.cBjörn Linse1
Possibly dialog code is messages.c could be moved here as well. misc1.c is now empty, so delete it.