| Commit message (Collapse) | Author | Age |
| |
|
|\
| |
| | |
eval: Replace internal_refcount hack with proper copyID setting
|
| | |
|
|/ |
|
|\
| |
| | |
Vim 7.4.{786,787,789,790}
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
* Compare tables instead of strings
* Add neovim specific test
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
|
| |
| |
| |
| |
| |
| |
| | |
Problem: Using freed memory and crash. (Dominique Pellej)
Solution: Correct use of pointers. (Hirohito Higashi)
https://github.com/vim/vim/commit/9cac424d05c0e79cd621f1b9f2f01a9f459fcbe6
|
| |
| |
| |
| |
| |
| |
| | |
Problem: snprintf() isn't available everywhere.
Solution: Use vim_snprintf(). (Ken Takata)
https://github.com/vim/vim/commit/fb9bc4829a1442fc8e93f078c9f923c9d382dbd2
|
| |
| |
| |
| |
| |
| |
| | |
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
|
|\ \
| | |
| | | |
Make clint.py better follow our style guide
|
| | |
| | |
| | |
| | |
| | | |
This commit is an example of fixing incorrect code which previously passed
through linter.
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
| | | |
|
|\ \ \
| | | |
| | | | |
Windows: Remove UNIX guard for pstrcmp()
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
@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.
|
|\ \ \ \
| | | | |
| | | | | |
Windows: Remove unnecessary codepath from modname
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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.
|
|\ \ \ \
| |/ / /
|/| | | |
Remove getscript.vim
|
|/ / / |
|
| | |
| | |
| | |
| | |
| | |
| | | |
Closes #3763
Helped-by: oni-link <knil.ino@gmail.com>
|
|\ \ \
| | | |
| | | | |
Fix UpdateRemotePlugins fails problem
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Add guards for SIGPIPE and SIGQUIT
|
| | |/ /
| |/| |
| | | |
| | | | |
In some systems the signals SIGPIPE and SIGQUIT are not available.
|
|\ \ \ \
| |_|/ /
|/| | | |
Update USR_LOG_FILE definition.
|
| |/ / |
|
|\ \ \
| |/ /
|/| | |
Windows: Define HOME environment variable
|
|/ /
| |
| |
| |
| |
| | |
- Bring back Vim code for settings $HOME in Windows from
$HOMEDRIVE$HOMEPATH
- vim-patch:0
|
|\ \
| | |
| | | |
Add missing guard for HAVE_UNISTD_H
|
| | | |
|
|\ \ \
| | | |
| | | | |
MinGW: Add libluajit-5.1 lib name to FindLuaJit
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
Docs: remove references to removed :shell command
|
| |/ /
| | |
| | |
| | | |
References #3791.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- 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
|
|\ \ \
| |/ /
|/| | |
Fix Windows code in command_line_execute()
|