Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Extract cursor.h from misc{1,2}.h and memline.h | Hinidu | 2014-05-28 | |
| | ||||
* | vim-patch:7.4.267 | oni-link | 2014-05-27 | |
| | | | | | | | Problem: The '[ mark is in the wrong position after "gq". (Ingo Karkat) Solution: Add the setmark argument to do_join(). (Christian Brabandt) https://code.google.com/p/vim/source/detail?r=75f222d67cea335efbe0274de6340dba174c1e7e | |||
* | Simplify edit.c functions replace_{push,pop}. | oni-link | 2014-05-24 | |
| | | | | | | * Replace xmalloc (+memmove) with xrealloc * Code style adjustments. * Remove obsolete TODO comment | |||
* | Remove NULL/non-NULL tests after calls to vim_str(n)save() | Felipe Oliveira Carvalho | 2014-05-19 | |
| | ||||
* | Introduce nvim namespace: Fix unmasked strings.h issue. | Eliseo Martínez | 2014-05-15 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Now that nvim/strings.h is correctly namespaced, an issue that had been masked until now arises: When compiling, we get a lot of errors because of everywhere the functions in nvim/strings.h are used, there's no include to import them. But, how could this compile and work previously, then? It turns out that: - In every such case, we are also including vim.h, which in turn includes os_unix_defs.h. - os_unix_defs.h includes <string.h> and also <strings.h> in some systems (e.g. OSX). - Build had been modified previously to (even when importing system headers), prefer equally-named local ones. That was in fact done as a previous attempt to solve the same issue we are trying to solve another way now. So, we were including our "strings.h" as a side-effect of including <strings.h> through "vim.h" --> "os_unix_defs.h". Solution: Correctly include "nvim/strings.h" in every file needing it. | |||
* | Introduce nvim namespace: Fix project-local includes. | Eliseo Martínez | 2014-05-15 | |
| | | | | Prepend 'nvim/' in all project-local (non-system) includes. | |||
* | Introduce nvim namespace: Move files. | Eliseo Martínez | 2014-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. |