support.txt 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. *support.txt* Nvim
  2. NVIM REFERENCE MANUAL
  3. Support *support*
  4. Type |gO| to see the table of contents.
  5. ==============================================================================
  6. Supported platforms *supported-platforms*
  7. `System` `Tier` `Versions` `Tested versions`
  8. Linux 1 >= 2.6.32, glibc >= 2.12 Ubuntu 24.04
  9. macOS (Intel) 1 >= 11 macOS 13
  10. macOS (M1) 1 >= 11 macOS 15
  11. Windows 64-bit 1 >= Windows 10 Version 1809 Windows Server 2022
  12. FreeBSD 1 >= 10 FreeBSD 14
  13. OpenBSD 2 >= 7
  14. MinGW 2 MinGW-w64
  15. Windows 64-bit 3 < Windows 10 Version 1809
  16. Note: Windows 10 "Version 1809" or later is required for |:terminal|. To check
  17. your Windows version, run the "winver" command and look for "Version xxxx"
  18. (NOT "OS Build").
  19. Note: On Windows "Server" you may need to install vcruntime140.dll:
  20. https://learn.microsoft.com/en-us/cpp/windows/latest-supported-vc-redist?view=msvc-170
  21. Support types ~
  22. * Tier 1: Officially supported and tested with CI. Any contributed patch
  23. MUST NOT break support for such platforms.
  24. * Tier 2: Officially supported, but not necessarily tested with CI. Support
  25. for these platforms are maintained by best effort, without being a top
  26. priority.
  27. * Tier 3: Not tested and no guarantees, and not all features may work.
  28. Adding support for a new platform ~
  29. IMPORTANT: Before attempting to add support for a new platform please open
  30. an issue about it for discussion.
  31. ==============================================================================
  32. Common
  33. Some common notes when adding support for new platforms:
  34. CMake is the only supported build system. Nvim must be buildable on the
  35. platform with CMake.
  36. All functionality related to the new platform must be implemented in its own
  37. file inside `src/nvim/os` unless it's already done in a common file, in which
  38. case adding an `#ifdef` is fine.
  39. vim:tw=78:ts=8:et:ft=help:norl: