| Commit message (Collapse) | Author | Age |
| ... | |
| | |
| |
| |
| |
| |
| | |
This is required by the msgpack-RPC specification. Also, the
send_call/send_event functions were refactored to accept a variable number of
arguments
|
| | | |
|
| | | |
|
| | |
| |
| |
| |
| | |
This option makes nvim run in "embedded mode", which creates an API channel via
stdin/stdout and disables all terminal-related code
|
| | |
| |
| |
| |
| | |
This function can be used to create an API channel that reads/writes from/to
stdin/stdout
|
| | | |
|
| | | |
|
| | |
| |
| |
| |
| |
| | |
It's analogous to rstream_set_file but only supports pipes(Support for regular
files may be added later). This function was added to support creating API
channels via stdout.
|
| |\ \
| | |
| | | |
vim-patch:7.4.220
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Test 105 does not work in a shadow dir. (James McCoy)
Solution: Omit "src/" from the checked path.
https://code.google.com/p/vim/source/detail?r=v7-4-220
|
| | |/
|/| |
|
| |/ |
|
| |\
| |
| | |
vim-patch:7.4.339
|
| | |
| |
| |
| |
| |
| |
| | |
Problem: Local function is available globally.
Solution: Add "static".
https://code.google.com/p/vim/source/detail?r=v7-4-339
|
| |/
|
|
|
|
|
| |
Problem: Can't run tests on Solaris.
Solution: Change the way VIMRUNTIME is set. (Laurent Blume)
https://code.google.com/p/vim/source/detail?r=v7-4-296
|
| |\
| |
| | |
Use lua generator in place of ex_cmds_defs header trick
|
| | | |
|
| | |
| |
| |
| |
| | |
:diffsplit command used to include some flag value twice. If I was using bitwise
OR it would be OK, but I had addition here. Changed to use bitwise OR.
|
| | |
| |
| |
| |
| |
| | |
Closes #788
Fixes #379
Ref #549
|
| | |
| |
| |
| | |
include breakindent and list related tests
|
| | |
| |
| |
| |
| |
| | |
Problem: With 'linebreak' a tab causes a missing line break.
Solution: Count a tab for what it's worth also for shorter lines.
(Christian Brabandt)
|
| | |
| |
| |
| |
| |
| | |
Problem: With 'linebreak' set and 'list' unset a Tab is not counted
properly. (Kent Sibilev)
Solution: Check the 'list' option. (Christian Brabandt)
|
| | |
| |
| |
| |
| |
| |
| | |
Problem: Linebreak test fails when encoding is not utf-8. (Danek
Duvall)
Solution: Split the test in a single byte one and a utf-8 one.
(Christian Brabandt)
|
| | |
| |
| |
| |
| |
| | |
Problem: When 'linebreak' is set control characters are not correctly
displayed. (Kimmy Lindvall)
Solution: Set n_extra. (Christian Brabandt)
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
Make 'breakindent' work with the 'list' option.
Originally patched in vim patch 7.4.353, by chrisbra
(https://code.google.com/p/vim/source/detail?r=d42a1d3b74d40f580359dbd139d2d0dfa7235252)
Updated version.c.
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
Do not cache "brishift".
Indent was not updated when changing 'breakindentopt'.
Reported by itchiny, fixed by chrisbra in vim patch 7.3.346
(https://code.google.com/p/vim/source/detail?r=3248c6e40aee01a7254d111dd846c6ec7889a804).
|
| |/ |
|
| |\
| |
| | |
vim-patch:7.4.231
|
| | |
| |
| |
| |
| |
| |
| |
| | |
Problem: An error in ":options" is not caught by the tests.
Solution: Add a test for ":options". Set $VIMRUNTIME for the tests so that
it uses the current runtime files instead of the installed ones.
https://code.google.com/p/vim/source/detail?r=0a295a3c9e473512ad3b006a0fb752ad43d19094
|
| | |
| |
| |
| |
| |
| |
| | |
Problem: Crash when starting gvim. Issue 230.
Solution: Check for a pointer to be NULL. (Christian Brabandt)
https://code.google.com/p/vim/source/detail?r=8ffcb546d782
|
| |\ \
| | |
| | | |
Add FOR_ALL_BUFFERS helper
|
| | | | |
|
| | | | |
|
| | |/
|/| |
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
Problem: When moving the cursor and then switching to another window the
previous window isn't scrolled. (Yukihiro Nakadaira)
Solution: Call update_topline() before leaving the window. (Christian
Brabandt)
https://code.google.com/p/vim/source/detail?r=018df65085f8
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
Problem: When starting the gui and changing the window size the status line
may not be drawn correctly.
Solution: Catch new_win_height() being called recursively. (Christian
Brabandt)
https://code.google.com/p/vim/source/detail?r=1f288d247548
|
| |\ \
| | |
| | | |
vim-patch:7.4.279
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: globpath() returns a string, making it difficult to get a
list of matches. (Greg Novack)
Solution: Add an optional argument like with glob(). (Adnan Zafar)
https://code.google.com/p/vim/source/detail?r=8e9db1f27a0063df023cc05a760fce73255dad24
|
| | | | |
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: The fish shell is not supported.
Solution: Use begin/end instead of () for fish. (Andy Russell)
https://code.google.com/p/vim/source/detail?r=a6b59ee633a355095e6473ec5e2a7d9088bfb853
|
| | | | |
|
| | | |
| | |
| | |
| | |
| | | |
Required for vim patch 276 as an alternative to
`get_isolated_shell_name()`.
|
| | | | |
|
| | | |
| | |
| | |
| | |
| | |
| | |
| | | |
Problem: Check for whether a highlight group has settings ignores fg and bg color settings.
Solution: Also check cterm and GUI color settings. (Christian Brabandt)
https://code.google.com/p/vim/source/detail?r=5c47dacf397c1c65d2dfc237b3ff395c66ec3d4d
|
| | | |
| | |
| | |
| | | |
uncomment some patch numbers that were satisfied by #938
|
| |\ \ \
| | | |
| | | | |
Implement os_fchown and remove HAVE_FCHOWN
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Problem: 'lispwords' is a global option.
Solution: Make 'lispwords' global-local. (Sung Pae)
https://code.google.com/p/vim/source/detail?r=06e5f65c34d8136c3a9d2219429b7eca35cb3a21
|
| |\ \ \ \
| | | | |
| | | | | |
vim-patch:7.4.314
|