aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* vim-patch:7.4.383Shougo Matsushita2014-09-18
| | | | | | | Problem: Bad interaction between preview window and omnifunc. Solution: Avoid redrawing the status line. (Hirohito Higashi) https://code.google.com/p/vim/source/detail?r=v7-4-383
* Merge pull request #953 from splinterofchaos/patch235-exepathJustin M. Keyes2014-09-17
|\ | | | | vim-patch:7.4.235
| * update os_can_exe unit testScott Prager2014-09-17
| |
| * vim-patch:7.4.235Scott Prager2014-09-17
| | | | | | | | | | | | | | Problem: It is not easy to get the full path of a command. Solution: Add the exepath() function. https://code.google.com/p/vim/source/detail?r=5ab2946f7ce560985830fbc3c453bb0f7a01f385
| * path: learn save_absolute_path().Scott Prager2014-09-17
| |
* | Merge pull request #919 from munshkr/p7.4.310Justin M. Keyes2014-09-16
|\ \ | |/ |/| vim-patch:7.4.310, vim-patch:7.4.313
| * vim-patch:7.4.313Damián Silvani2014-09-16
| | | | | | | | | | | | | | Problem: Changing the return value of getpos() causes an error. (Jie Zhu) Solution: Revert getpos() and add getcurpos(). https://code.google.com/p/vim/source/detail?r=332a5c2b2956d9b18d85268a724d01deea27ec83
| * vim-patch:7.4.310Damián Silvani2014-09-16
|/ | | | | | | Problem: getpos()/setpos() don't include curswant. Solution: Add a fifth number when getting/setting the cursor. https://code.google.com/p/vim/source/detail?r=ccac0aa34eeaf46dad4b831461a532fc3fe71096
* Merge pull request #1129 from justinmk/clangJustin M. Keyes2014-09-16
|\ | | | | clang: Null pointer passed as an argument to a 'nonnull' parameter
| * clang: Null pointer passed as an argument to a 'nonnull' parameterJustin M. Keyes2014-08-30
| |
* | Merge pull request #1184 from Shougo/vim-patch-7.4.369Justin M. Keyes2014-09-16
|\ \ | | | | | | vim-patch:7.4.369
| * | vim-patch:7.4.369Shougo Matsushita2014-09-17
|/ / | | | | | | | | | | | | Problem: Using freed memory when exiting while compiled with EXITFREE. Solution: Set curwin to NULL and check for that. (Dominique Pelle) https://code.google.com/p/vim/source/detail?r=v7-4-369
* | Merge pull request #1183 from Shougo/vim-patch-7.4.368Justin M. Keyes2014-09-16
|\ \ | | | | | | vim-patch:7.4.368
| * | vim-patch:7.4.368Shougo Matsushita2014-09-16
| | | | | | | | | | | | | | | | | | | | | | | | Problem: Restoring the window sizes after closing the command line window doesn't work properly if there are nested splits. Solution: Restore the sizes twice. (Hirohito Higashi) https://code.google.com/p/vim/source/detail?r=v7-4-368
* | | Merge PR #1185 'Some fixes and missing changes'Thiago de Arruda2014-09-16
|\ \ \ | |/ / |/| |
| * | channel: Fix unpacker loop conditionThiago de Arruda2014-09-16
| | |
| * | deps: Switch lua msgpack library to one that supports 2.0Thiago de Arruda2014-09-16
| | |
| * | msgpack-gen: Fix msgpack_rpc_init_function_metadataThiago de Arruda2014-09-16
| | | | | | | | | | | | The function was broken on release builds
| * | runtime: Fix one of python sanity checksThiago de Arruda2014-09-16
| | | | | | | | | | | | Use sys.stdout.write which is compatible with python 2 and 3
| * | deps: Update msgpackThiago de Arruda2014-09-16
|/ / | | | | | | The new version fixes serialization/deserialization of EXT 8/16/32
* | Merge pull request #1140 from atwupack/vp-7.4.341Justin M. Keyes2014-09-15
|\ \ | | | | | | vim-patch:7.4.341, 7.4.347, 7.4.351, 7.4.358
| * | vim-patch:7.4.358André Twupack2014-09-13
| | | | | | | | | | | | | | | | | | | | | | | | Problem: Sort is not always stable. Solution: Add an index instead of relying on the pointer to remain the same. Idea by Jun Takimoto. https://code.google.com/p/vim/source/detail?r=v7-4-358
| * | vim-patch:7.4.351André Twupack2014-09-13
| | | | | | | | | | | | | | | | | | | | | Problem: sort() is not stable. Solution: When the items are identical, compare the pointers. https://code.google.com/p/vim/source/detail?r=v7-4-351
| * | vim-patch:7.4.347André Twupack2014-09-13
| | | | | | | | | | | | | | | | | | | | | Problem: test55 fails on some systems. Solution: Remove the elements that all result in zero and can end up in an arbitrary position. https://code.google.com/p/vim/source/detail?r=v7-4-347
| * | vim-patch:7.4.341André Twupack2014-09-13
| | | | | | | | | | | | | | | | | | | | | Problem: sort() doesn't handle numbers well. Solution: Add an argument to specify sorting on numbers. (Christian Brabandt) https://code.google.com/p/vim/source/detail?r=adc4a84f72eb44dae657af713922a6e2c1f64ae3
* | | Merge pull request #1177 from NOLFXceptMe/vp-7.4.387Justin M. Keyes2014-09-15
|\ \ \ | | | | | | | | vim-patch:7.4.387
| * | | vim-patch:7.4.387Naveen Kumar Molleti2014-09-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: "4gro" replaces one character then executes "ooo". (Urtica Dioica) Solution: Write the ESC in the second stuff buffer. https://code.google.com/p/vim/source/detail?r=v7-4-387
* | | | Merge PR #1175 'Some fixes to nvim initial documentation'Thiago de Arruda2014-09-15
|\ \ \ \
| * | | | runtime: Make python_setup.vim compatible with python 2.6Thiago de Arruda2014-09-15
| | | | |
| * | | | runtime: Some nvim documentation fixes pointed by @oni-linkThiago de Arruda2014-09-15
| | | | |
| * | | | eval.c: Rename has('neovim') feature to has('nvim')Thiago de Arruda2014-09-15
|/ / / / | | | | | | | | | | | | To follow the convention of 'nvim' for technical references
* | | | Merge pull request #1169 from splinterofchaos/arglistidJustin M. Keyes2014-09-15
|\ \ \ \ | | | | | | | | | | vim-patch:7.4.312
| * | | | vim-patch:7.4.312Scott Prager2014-09-13
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | Problem: Cannot figure out what argument list is being used for a window. Solution: Add the arglistid() function. (Marcin Szamotulski) https://code.google.com/p/vim/source/detail?r=v7-4-312
* | | | Merge pull request #1173 from jszakmeister/build-portability-fixJustin M. Keyes2014-09-14
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | third-party: avoid using `rm` in the install command closes #1171
| * | | third-party: avoid using `rm` in the install commandJohn Szakmeister2014-09-14
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also, the command was removing only .so versions of the library, and not the the `.dylib` under Mac OS X, and in a way that it would fail if the files weren't present. Instead, let's delegate to a CMake script--to get the portability--and use a glob to detect and remove the shared versions of the library. Hopefully, this will become unnecessary as msgpack's build becomes more full-featured, and we can just tell it to build the static version instead.
* | | Merge pull request #1165 from splinterofchaos/fix-patch-371Justin M. Keyes2014-09-14
|\ \ \ | | | | | | | | 7.4.371.
| * | | 7.4.371Scott Prager2014-09-14
| |/ /
* | | Merge PR #1163 'Initial documentation of nvim features'Thiago de Arruda2014-09-13
|\ \ \
| * | | runtime: Document python interface, clipboard and add intro docThiago de Arruda2014-09-13
| | | |
| * | | runtime: Document 'unnamedclip'Thiago de Arruda2014-09-13
| | | |
| * | | runtime: Update python_setup.vim to the new rpc function namesThiago de Arruda2014-09-13
| | | | | | | | | | | | | | | | Also improve version checking.
| * | | runtime: Add highlighting for new functions/eventsThiago de Arruda2014-09-13
| | | |
| * | | runtime: Initial job control documentationThiago de Arruda2014-09-13
| | | |
| * | | runtime: Initial msgpack-rpc documentationThiago de Arruda2014-09-13
| | | |
| * | | runtime: Enhance help.vim to highlight Nvim/NVIMThiago de Arruda2014-09-13
| | | |
| * | | eval.c: Rename msgpack-rpc functions for consistencyThiago de Arruda2014-09-13
| | | |
| * | | eval.c: Rename jobwrite to jobsendThiago de Arruda2014-09-13
| | | |
| * | | server: Rename address environment variableThiago de Arruda2014-09-13
|/ / / | | | | | | | | | | | | To follow the pattern of using NVIM for technical descriptions, it was renamed to NVIM_LISTEN_ADDRESS
* | | Merge pull request #1167 from atwupack/fix-issue-1164Justin M. Keyes2014-09-13
|\ \ \ | |/ / |/| | ex_cmds2.c:fix for issue #1164
| * | ex_cmds2.c:fix for issue #1164André Twupack2014-09-13
|/ / | | | | | | fix condition while iterating over all buffers