aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
...
| * | Fix version numbersShougo Matsushita2014-09-10
| | |
* | | Merge pull request #1149 from splinterofchaos/vim-patch-7.4.278Justin M. Keyes2014-09-09
|\ \ \ | |/ / |/| | vim-patch:7.4.278
| * | vim-patch:7.4.278Scott Prager2014-09-09
| | | | | | | | | | | | | | | | | | | | | Problem: list_remove() conflicts with function defined in Sun header file. Solution: Rename the function. (Richard Palo) https://code.google.com/p/vim/source/detail?r=v7-4-278
* | | Additional FOR_ALL_WINDOWS usageWayne Rowcliffe2014-09-08
| | |
* | | Convert FOR_ALL_WINDOWS to use a locally declared pointerWayne Rowcliffe2014-09-08
|/ /
* | Merge pull request #1107 from fmoralesc/matchaddposJustin M. Keyes2014-09-05
|\ \ | | | | | | Add matchaddpos()-related vim patches. [vim-patch: 7.4.330, 7.4.334, 7.4.343, 7.4.344, 7.4.362]
| * | vim-patch: 7.4.344Felipe Morales2014-09-04
| | | | | | | | | | | | | | | | | | | | | | | | Problem: Unnecessary initializations and other things related to matchaddpos(). Solution: Code cleanup. (Alexey Radkov) https://code.google.com/p/vim/source/detail?r=ce284c205558d103326a4c3f22f181774690b3eb
| * | vim-patch: 7.4.343Felipe Morales2014-09-04
| | | | | | | | | | | | | | | | | | | | | Problem: matchdelete() does not always update the right lines. Solution: Fix off-by-one error. (Ozaki Kiichi) https://code.google.com/p/vim/source/detail?r=539ce56d8f35fe2deb5c4f57335e1adf97ae4e74
| * | vim-patch: 7.4.362Felipe Morales2014-09-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: When matchaddpos() uses a length smaller than the number of bytes in the (last) character the highlight continues until the end of the line. Solution: Change condition from equal to larger-or-equal. https://code.google.com/p/vim/source/detail?r=7fa2bed947fde3514a700c96861a537d816d6fd4
| * | vim-patch: 7.4.334Felipe Morales2014-09-04
| | | | | | | | | | | | | | | | | | | | | Problem: Unitialized variables, causing some problems. Solution: Initialize the variables. (Dominique Pelle) https://code.google.com/p/vim/source/detail?r=03d260a8ea0c0c67f424c387dbe2af5754e5e589
| * | vim-patch: 7.4.330Felipe Morales2014-09-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Using a regexp pattern to highlight a specific position can be slow. Solution: Add matchaddpos() to highlight specific positions efficiently. (Alexey Radkov.) https://code.google.com/p/vim/source/detail?r=f9fa2e506b9f07549cd91074835c5c553db7b3a7
* | | fileinfo: change returntype of os_fileinfo_sizeStefan Hoffmann2014-08-31
| | | | | | | | | | | | off_t -> uint64_t
* | | fileid: rename os_file_id_equal_file_infoStefan Hoffmann2014-08-31
| | |
* | | fileid: rename os_file_id_equalStefan Hoffmann2014-08-31
| | |
* | | fileid: rename os_get_file_idStefan Hoffmann2014-08-31
| | |
* | | fileinfo: rename os_file_info_get_inodeStefan Hoffmann2014-08-31
| | |
* | | fileinfo: rename os_file_info_get_idStefan Hoffmann2014-08-31
| | |
* | | fileinfo: rename os_file_info_id_equalStefan Hoffmann2014-08-31
| | |
* | | fileinfo: rename os_get_file_info{,_link,_fd}Stefan Hoffmann2014-08-31
| | |
* | | fileinfo: implement os_fileinfo_blocksizeStefan Hoffmann2014-08-31
| | |
* | | fileinfo: implement os_fileinfo_hardlinksStefan Hoffmann2014-08-31
| | |
* | | fileinfo: implement os_fileinfo_sizeStefan Hoffmann2014-08-31
| | | | | | | | | | | | this replaces os_get_file_size and file_info.stat.st_size
* | | channel: Remove code for automatically closing in channel_send_callThiago de Arruda2014-08-31
| |/ |/| | | | | | | | | This was causing a segfault(reported in #1125) because channels are already closed by `parse_msgpack` when the connection ends. Also fix the RPC stack overflow error message
* | msgpack-rpc: Always use arrays when sending events or callsThiago de Arruda2014-08-29
| | | | | | | | | | | | This is required by the msgpack-RPC specification. Also, the send_call/send_event functions were refactored to accept a variable number of arguments
* | msgpack-rpc: Accept method names in requestsThiago de Arruda2014-08-29
| |
* | clang: Null pointer passed as an argument to a 'nonnull' parameter #1090Justin M. Keyes2014-08-28
| |
* | api: Implement '--embedded-mode' command-line optionThiago de Arruda2014-08-28
| | | | | | | | | | This option makes nvim run in "embedded mode", which creates an API channel via stdin/stdout and disables all terminal-related code
* | channel: Implement channel_from_stdio functionThiago de Arruda2014-08-28
| | | | | | | | | | This function can be used to create an API channel that reads/writes from/to stdin/stdout
* | channel: fix channel buffer sizeThiago de Arruda2014-08-28
| |
* | channel: Fix channel not being closed when the RStream reaches EOFThiago de Arruda2014-08-28
| |
* | wstream: Implement wstream_set_fileThiago de Arruda2014-08-28
| | | | | | | | | | | | 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.
* | Merge pull request #1104 from Hinidu/vim-patch-7.4.220Justin M. Keyes2014-08-25
|\ \ | | | | | | vim-patch:7.4.220
| * | vim-patch:7.4.220Pavel Platto2014-08-22
| | | | | | | | | | | | | | | | | | | | | 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
* | | coverity/62620: fix uninitialized scalar variablePaul Burlumi2014-08-24
| |/ |/|
* | Mark patches 176, 185 and 189 as NAPavel Platto2014-08-22
|/
* Merge pull request #1101 from atwupack/vp-7.4.339Justin M. Keyes2014-08-22
|\ | | | | vim-patch:7.4.339
| * vim-patch:7.4.339André Twupack2014-08-21
| | | | | | | | | | | | | | Problem: Local function is available globally. Solution: Add "static". https://code.google.com/p/vim/source/detail?r=v7-4-339
* | vim-patch:7.4.296André Twupack2014-08-21
|/ | | | | | | 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
* Merge pull request #840 from ZyX-I/generate-ex_cmdsJustin M. Keyes2014-08-21
|\ | | | | Use lua generator in place of ex_cmds_defs header trick
| * Extend documentationZyX2014-08-20
| |
| * Fix problem with test47: addition is not bitwise ORZyX2014-08-20
| | | | | | | | | | :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.
| * Use lua generator in place of ex_cmds_defs header trickZyX2014-08-20
| | | | | | | | | | | | Closes #788 Fixes #379 Ref #549
* | update src/nvim/testdir/MakefileFelipe Morales2014-08-20
| | | | | | | | include breakindent and list related tests
* | vim-patch: 7.4.352Felipe Morales2014-08-20
| | | | | | | | | | | | 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)
* | vim-patch:7.4.388Felipe Morales2014-08-20
| | | | | | | | | | | | Problem: With 'linebreak' set and 'list' unset a Tab is not counted properly. (Kent Sibilev) Solution: Check the 'list' option. (Christian Brabandt)
* | vim-patch:7.4.370Felipe Morales2014-08-20
| | | | | | | | | | | | | | 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)
* | vim-patch:7.4.371Felipe Morales2014-08-20
| | | | | | | | | | | | Problem: When 'linebreak' is set control characters are not correctly displayed. (Kimmy Lindvall) Solution: Set n_extra. (Christian Brabandt)
* | vim-patch: 7.4.353Felipe Morales2014-08-20
| | | | | | | | | | | | | | | | | | 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.
* | vim-patch: 7.4.346Felipe Morales2014-08-20
| | | | | | | | | | | | | | | | | | 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).
* | Port vim's patch 7.4.338 ('breakindent')Felipe Morales2014-08-20
|/