Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | build/MSVC: fix "C4028: formal parameter different from declaration" | Justin M. Keyes | 2018-03-18 |
| | |||
* | keymap: Do not use vim_isIDc in keymap.c | ZyX | 2017-11-30 |
| | | | | | | | | Note: there are three changes to ascii_isident. Reverting first two (in find_special_key and first in get_special_key_code) normally fails the new test with empty &isident, but reverting the third does not. Hence adding `>` to &isident. Ref vim/vim#2389. | ||
* | ascii: Readd DEL_STR define | ZyX | 2017-03-29 |
| | |||
* | eval: Move remaining get_tv_string* functions to eval/typval.c | ZyX | 2017-03-29 |
| | |||
* | *: Move some dictionary functions to typval.h and use char* | ZyX | 2017-03-29 |
| | | | | Also fixes buffer reusage in setmatches() and complete(). | ||
* | Fix lint issues | Jason Schulz | 2016-01-15 |
| | |||
* | Add support for binary numbers | Jason Schulz | 2016-01-15 |
| | |||
* | src/*: Remove `VIM - Vi improved ...` header | Michael Reed | 2015-11-27 |
| | | | | | | | | | | | | | | | | | | | Regarding the individual items in the header: `Vim - Vi improved by Bram Moolenar` Bram Moolenar is already mentioned throughout the documentation, as well as the intro screen. `:help uganda` It's already shown to all users who don't use `shortmess+=I` upon starting nvim, and is already placed prominently in help.txt, i.e., `:help` run with no arguments. `:help credits` Already mentioned near the top of help.txt. `README.md` Already mentioned in develop.txt. | ||
* | MSVC: include os/os_defs.h for `inline`. #3239 | Rui Abreu Ferreira | 2015-08-25 |
| | |||
* | Improve comments and fix ascii_* attributes | Felipe Oliveira Carvalho | 2015-04-24 |
| | |||
* | Replace vim_isspace() with ascii_isspace() defined in ascii.h | Felipe Oliveira Carvalho | 2015-04-24 |
| | |||
* | Replace vim_isxdigit() with to ascii_isxdigit() defined in ascii.h | Felipe Oliveira Carvalho | 2015-04-24 |
| | |||
* | Replace VIM_ISDIGIT() and vim_isdigit() with ascii_isdigit() defined in ascii.h | Felipe Oliveira Carvalho | 2015-04-24 |
| | |||
* | Replace vim_iswhite with ascii_iswhite() defined in ascii.h | Felipe Oliveira Carvalho | 2015-04-24 |
| | |||
* | Remove EBCDIC: Remove IF_EB macros | Pavel Platto | 2014-08-02 |
| | |||
* | Introduce nvim namespace: Fix define guards. | Eliseo Martínez | 2014-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í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. |