summaryrefslogtreecommitdiffstatshomepage
path: root/src/nvim/cursor.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-21refactor(IWYU): move decor provider types to decoration_defs.h (#26692)zeertzjq1
2023-11-28refactor: fix runtime_defs.h (#26259)zeertzjq1
2023-11-27build(IWYU): fix includes for undo_defs.hdundargoc1
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.
2016-09-13refactor: eliminate misc2.cJustin M. Keyes1
move `call_shell` to misc1.c Move some fns to state.c Move some fns to option.c Move some fns to memline.c Move `vim_chdir*` fns to file_search.c Move some fns to new module, bytes.c Move some fns to fileio.c
2014-06-20Use generated declarations in cursor.h #849Pavel Platto1
2014-05-28Add cursor.{c,h} to clint-files.txtPavel Platto1
2014-05-28Remove ml_ prefix from cursor.h functionsPavel Platto1
s/ml_get_curline/get_cursor_line_ptr s/ml_get_cursor/get_cursor_pos_ptr
2014-05-28Enable -Wconversion on cursor.cPavel Platto1
2014-05-28Extract cursor.h from misc{1,2}.h and memline.hHinidu1