aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os_unix_defs.h
Commit message (Collapse)AuthorAge
* Split os_unix_defs.h into os/Yamakaky2015-07-06
|
* vim-patch:7.4.713Felipe Morales2015-06-13
| | | | | | | | patch 7.4.713 Problem: Wrong condition for #ifdef. Solution: Change USR_EXRC_FILE2 to USR_VIMRC_FILE2. (Mikael Fourrier) https://code.google.com/p/vim/source/detail?r=v7-4-713
* CMakeLists: enable USE_FNAME_CASE on MacScott Prager2015-03-31
|
* Remove platform dependent HAVE_OPENDIR #2010Jonas Dourado2015-03-17
|
* os_unix_defs && os/unix_defs: Consistently use '~' over '$HOME' #2009Michael Reed2015-03-11
| | | | | | these path names are ridiculous... Based on #889, but also remove some unused #defines
* Remove easy modeFelipe Morales2015-01-15
|
* Linting: Fix header guards, add whitespace.Florian Walch2014-12-24
|
* Remove NeXTSTEP referencesMichael Reed2014-11-27
| | | | Remove trailing whitespace as well.
* Remove HAVE_LIBC_HPavel Platto2014-08-02
| | | | It was used in Vim for NeXT OS.
* Remove #ifdefs TEMPDIRNAMES and add TEMPDIRNAMES for WindowsPavel Platto2014-07-14
| | | | | | | | Vim does not define TEMPDIRNAMES for all systems, but it is defined for all systems supported by Neovim. Temporary directory names for Windows was obtained from GetTempPath() function documentation at MSDN. Additionally small renamings were performed.
* Use strict function prototypes #945Pavel Platto2014-07-14
| | | | | | | | | | | | | | | | | | | `-Wstrict-prototypes` warn if a function is declared or defined without specifying the argument types. This warning disallow function prototypes with empty parameter list. In C, a function declared with an empty parameter list accepts an arbitrary number of arguments when being called. This is for historic reasons; originally, C functions didn't have prototypes, as C evolved from B, a typeless language. When prototypes were added, the original typeless declarations were left in the language for backwards compatibility. Instead we should provide `void` in argument list to state that function doesn't have arguments. Also this warning disallow declaring type of the parameters after the parentheses because Neovim header generator produce no declarations for old-stlyle prototypes: it expects to find `{` after prototype.
* os: remove legacy mch_libcallNicolas Hillegeer2014-06-28
| | | | | Remove as much leftover cruft as possible. Tried to see which globals are now not used anymore.
* FileID: remove `CHECK_INODE` macroStefan Hoffmann2014-06-27
|
* Introduce nvim namespace: Fix define guards.Eliseo Martínez2014-05-15
| | | | | | Change define guards from NEOVIM_XXX_H to NVIM_XXX_H: - Change header files. - Change clint correct guard name calculation.
* Introduce nvim namespace: Move files.Eliseo Martínez2014-05-15
Move files from src/ to src/nvim/. - src/nvim/ becomes the new root dir for nvim executable sources. - src/libnvim/ is planned to become root dir of the neovim library.