aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* doc: nvim_python: mention --upgrade. #3832mseri2015-12-12
|
* Merge pull request #3589 from ZyX-I/remove-internal_refcountJustin M. Keyes2015-12-12
|\ | | | | eval: Replace internal_refcount hack with proper copyID setting
| * eval: Use list_unref in place of decrementing refcount directlyZyX2015-12-13
| |
| * eval: Replace internal_refcount hack with proper copyID settingZyX2015-12-13
|/
* Merge pull request #3753 from watiko/vim-7.4.790Justin M. Keyes2015-12-12
|\ | | | | Vim 7.4.{786,787,789,790}
| * Make clint status validwatiko2015-12-12
| |
| * Fix the memory leakingwatiko2015-12-12
| |
| * Revert char to char_uwatiko2015-12-12
| |
| * tests: Improve legacy autocmd_option.watiko2015-12-12
| | | | | | | | | | * Compare tables instead of strings * Add neovim specific test
| * Improve coding stylewatiko2015-12-06
| |
| * tests: Keep each autocmd_option's test in isolation.watiko2015-11-28
| |
| * Use vim_snprintf instead of sprintfwatiko2015-11-28
| |
| * Improve coding stylewatiko2015-11-28
| |
| * Improve coding stylewatiko2015-11-28
| |
| * tests: Improve legacy test autocmd_option.watiko2015-11-28
| |
| * tests: Migrate legacy test autocmd_option.watiko2015-11-28
| |
| * vim-patch:7.4.790watiko2015-11-28
| | | | | | | | | | | | | | | | | | Problem: Test fails when the autochdir feature is not available. Test output contains the test script. Solution: Check for the autochdir feature. (Kazunobu Kuriyama) Only write the relevant test output. https://github.com/vim/vim/commit/d113a80c77101e9f5723abb075882012753cf611
| * vim-patch:7.4.789watiko2015-11-28
| | | | | | | | | | | | | | Problem: Using freed memory and crash. (Dominique Pellej) Solution: Correct use of pointers. (Hirohito Higashi) https://github.com/vim/vim/commit/9cac424d05c0e79cd621f1b9f2f01a9f459fcbe6
| * vim-patch:7.4.787watiko2015-11-28
| | | | | | | | | | | | | | Problem: snprintf() isn't available everywhere. Solution: Use vim_snprintf(). (Ken Takata) https://github.com/vim/vim/commit/fb9bc4829a1442fc8e93f078c9f923c9d382dbd2
| * vim-patch:7.4.786watiko2015-11-28
| | | | | | | | | | | | | | Problem: It is not possible for a plugin to adjust to a changed setting. Solution: Add the OptionSet autocommand event. (Christian Brabandt) https://github.com/vim/vim/commit/537443018d41918639695a442c91b34ccec69fc3
* | Merge pull request #3807 from ZyX-I/improve-clintJustin M. Keyes2015-12-12
|\ \ | | | | | | Make clint.py better follow our style guide
| * | shada: Fix all linter errors in src/nvim/shada.*ZyX2015-12-13
| | | | | | | | | | | | | | | This commit is an example of fixing incorrect code which previously passed through linter.
| * | clint: Check indentation and alignment inside expressionsZyX2015-12-11
| | |
| * | clint: Check for spaces after { and before }ZyX2015-12-09
| | |
| * | clint: Do not special-case for() semicolonsZyX2015-12-09
| | |
| * | clint: Disallow old style comments everywhere, except for macrosZyX2015-12-08
| | |
| * | clint: Make sure that braces are always used for if and other clausesZyX2015-12-08
| | |
* | | Merge pull request #3824 from sethjackson/pstrcmpJustin M. Keyes2015-12-12
|\ \ \ | | | | | | | | Windows: Remove UNIX guard for pstrcmp()
| * | | Windows: Remove UNIX guard for pstrcmp()Rui Abreu Ferreira2015-12-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | @equalsraf: I took a look at the Vim source pstrcmp() is actually used in the dos_expandpath(misc1.c). The only difference between the UNIX and WIN32 version of the functions is the _cdecl call convention annotation - the body of the function is identical. Neovim kept the comment from the Unix function but not from the Windows variant. Seems to me its safe to use the same function for both - and just correct the comment.
* | | | Merge pull request #3825 from sethjackson/modnameJustin M. Keyes2015-12-12
|\ \ \ \ | | | | | | | | | | Windows: Remove unnecessary codepath from modname
| * | | | Windows: Remove unnecessary codepath from modname.Seth Jackson2015-12-11
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | File names starting with periods are perfectly acceptable on Windows file systems. The only place where this is not acceptable is on MS-DOS FAT file systems which only support 8.3 file names. See here: https://msdn.microsoft.com/en-us/library/windows/desktop/aa365247%28v=vs.85%29.aspx Since Neovim does not support MS-DOS or 8.3 file names (#605) we can drop this codepath. It was not compiling anyways since we do not define WIN3264.
* | | | Merge pull request #3826 from sethjackson/remove-getscriptJustin M. Keyes2015-12-12
|\ \ \ \ | |/ / / |/| | | Remove getscript.vim
| * | | Remove getscript.vim.Seth Jackson2015-12-12
|/ / /
* | | statusline: Check width before advancing pointer. #3818Enrico Ghirardi2015-12-10
| | | | | | | | | | | | | | | | | | Closes #3763 Helped-by: oni-link <knil.ino@gmail.com>
* | | Merge pull request #3813 from Shougo/remoteJustin M. Keyes2015-12-09
|\ \ \ | | | | | | | | Fix UpdateRemotePlugins fails problem
| * | | Fix UpdateRemotePlugins fails problemShougo Matsushita2015-12-10
| | | |
* | | | Merge pull request #3804 from sethjackson/signal-guardsJustin M. Keyes2015-12-09
|\ \ \ \ | | | | | | | | | | Add guards for SIGPIPE and SIGQUIT
| * | | | Add guards for SIGPIPE and SIGQUITRui Abreu Ferreira2015-12-08
| | |/ / | |/| | | | | | | | | | In some systems the signals SIGPIPE and SIGQUIT are not available.
* | | | Merge pull request #3783 from sethjackson/log-file-defJustin M. Keyes2015-12-09
|\ \ \ \ | |_|/ / |/| | | Update USR_LOG_FILE definition.
| * | | Update USR_LOG_FILE definition.Rui Abreu Ferreira2015-12-07
| |/ /
* | | Merge pull request #3805 from sethjackson/windows-homeJustin M. Keyes2015-12-09
|\ \ \ | |/ / |/| | Windows: Define HOME environment variable
| * | Windows: Define HOME environment variableRui Abreu Ferreira2015-12-08
|/ / | | | | | | | | | | - Bring back Vim code for settings $HOME in Windows from $HOMEDRIVE$HOMEPATH - vim-patch:0
* | Merge pull request #3780 from sethjackson/header-guardsJustin M. Keyes2015-12-07
|\ \ | | | | | | Add missing guard for HAVE_UNISTD_H
| * | Add missing guard for HAVE_UNISTD_HRui Abreu Ferreira2015-12-02
| | |
* | | Merge pull request #3782 from sethjackson/mingw-luajitJustin M. Keyes2015-12-07
|\ \ \ | | | | | | | | MinGW: Add libluajit-5.1 lib name to FindLuaJit
| * | | MinGW: Add libluajit-5.1 lib name to FindLuaJitRui Abreu Ferreira2015-12-02
| |/ /
* | | Merge pull request #3793 from mhinz/docs/remove-shell-cmdJustin M. Keyes2015-12-06
|\ \ \ | | | | | | | | Docs: remove references to removed :shell command
| * | | Docs: remove reference to removed :shell commandMarco Hinz2015-12-06
| |/ / | | | | | | | | | References #3791.
* | | Nvim 0.1.1v0.1.1Justin M. Keyes2015-12-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - shada/msgpack editor plugin #3270 - VimL Dict notifications #3603 - Note: API for this feature may change. - :profile dump, :profile stop #2427 - :oldfiles! #3611 - TermOpen, TermClose events #3653 - fix: shada/viminfo: Do not save unlisted and quickfix buffers #3581
* | | Merge pull request #3788 from sethjackson/command-line-executeJustin M. Keyes2015-12-05
|\ \ \ | |/ / |/| | Fix Windows code in command_line_execute()