| Commit message (Collapse) | Author | Age | |
|---|---|---|---|
| * | Remove char_u: vim_settempdir() | Mark Bainter | 2015-05-06 |
| | | |||
| * | Remove char_u: vim_FullName() | Mark Bainter | 2015-05-06 |
| | | |||
| * | Remove char_u: add_pathsep() | Mark Bainter | 2015-05-06 |
| | | |||
| * | memory: Add `free` wrapper and refactor project to use it | Thiago de Arruda | 2015-04-13 |
| | | | | | | | We already use wrappers for allocation, the new `xfree` function is the equivalent for deallocation and provides a way to fully replace the malloc implementation used by Neovim. | ||
| * | Remove redundant casts | Anton Ovchinnikov | 2015-03-09 |
| | | |||
| * | Use ARRAY_SIZE where Coccinelle wasn't able to do it | Felipe Oliveira Carvalho | 2014-12-18 |
| | | |||
| * | Implement `os_mkdtemp` on top of `uv_fs_mkdtemp` | Pavel Platto | 2014-08-09 |
| | | |||
| * | Statically allocate NameBuff | Wayne Rowcliffe | 2014-07-22 |
| | | |||
| * | Create os/os_defs.h for os specific definitions | Pavel Platto | 2014-07-14 |
| | | |||
| * | tempfile.c: refactor vim_settempdir | Pavel Platto | 2014-07-14 |
| | | | | | | | | - return result of setting and remove directory if the setting was not successful. - don't do `STRCPY` in case of `vim_FullName` failure because `vim_FullName` already did it. | ||
| * | tempfile.c: fix style issues and comments | Pavel Platto | 2014-07-14 |
| | | |||
| * | tempfile.c: add to clint-files and fix warnings | Pavel Platto | 2014-07-14 |
| | | |||
| * | Extract `tempfile` module from fileio | Pavel Platto | 2014-07-14 |
| Though this module is relatively small it has very clear boundaries. The last argument for extracting `tempfile` was the errors which I got when I was writing unittests for it: `cimport './src/nvim/fileio.h'` does not work for some reason. | |||