aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_eval.ok
Commit message (Collapse)AuthorAge
* tests: Remove legacy test files for eval test.Lucas Hoffmann2016-01-27
|
* vim-patch:7.4.608, 7.4.612Shougo Matsushita2015-12-19
| | | | | | | | | | | | Problem: test_eval fails when the clipboard feature is missing. Solution: Skip part of the test. Reduce the text used. https://github.com/vim/vim/commit/4ac163ae5f137af236931e778660cf7878d70c25 Problem: test_eval fails on Mac. Solution: Use the * register instead of the + register. (Jun Takimoto) https://github.com/vim/vim/commit/e08dd4e49e6d67686e3ba1322a641488ad67c711
* clipboard: avoid clipboard during :global. #2809Felipe Morales2015-08-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is equivalent to patches 7.4.396, 7.4.445 and 7.4.598. vim-patch:7.4.396 Problem: When 'clipboard' is "unnamed", :g/pat/d is very slow. (Praful) Solution: Only set the clipboard after the last delete. (Christian Brabandt) https://github.com/vim/vim/commit/1f285eb49a709e00552f7bef7e74efff5ae79026 vim-patch:7.4.445 Problem: Clipboard may be cleared on startup. Solution: Set clip_did_set_selection to -1 during startup. (Christian Brabandt) https://github.com/vim/vim/commit/1a19d37d90f037c09183ba68fdddf70ab8ee179a vim-patch:7.4.598 Problem: ":tabdo windo echo 'hi'" causes "* register not to be changed. (Salman Halim) Solution: Change how clip_did_set_selection is used and add clipboard_needs_update and global_change_count. (Christian Brabandt) https://github.com/vim/vim/commit/af6a579263a688f30bfbbee72b28d08cc7e0f3d4 Co-Author: @bfredl
* vim-patch:7.4.249Scott Prager2014-12-11
| | | | | | | Problem: Using setreg() with a list of numbers does not work. Solution: Use a separate buffer for numbers. (ZyX) https://code.google.com/p/vim/source/detail?r=v7-4-249
* vim-patch:7.4.243Scott Prager2014-12-11
| | | | | | | Problem: Cannot use setreg() to add text that includes a NUL. Solution: Make setreg() accept a list. https://code.google.com/p/vim/source/detail?r=v7-4-243
* 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
* Introduce nvim namespace: Move files.Eliseo Martínez2014-05-15
Move files from src/ to src/nvim/. - src/nvim/ becomes the new root dir for nvim executable sources. - src/libnvim/ is planned to become root dir of the neovim library.