aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Merge #4303 'vim-patch:7.4.{951,1143,1144}'.Justin M. Keyes2016-04-25
|\
| * test: Remove migrated legacy test from Makefilewatiko2016-03-02
| |
| * tests: Migrate legacy test sortwatiko2016-03-02
| |
| * vim-patch:7.4.1144watiko2016-03-02
| | | | | | | | | | | | | | Problem: Can't build on several systems. Solution: Include float.h. (Christian Robinson, closes vim/vim#570 vim/vim#571) https://github.com/vim/vim/commit/17576a1e33d71b5602cee86bf220a806c8412605
| * vim-patch:7.4.1143watiko2016-03-02
| | | | | | | | | | | | | | | | Problem: Can't sort on floating point numbers. Solution: Add the "f" flag to ":sort". (Alex Jakushev) Also add the "f" flag to sort(). https://github.com/vim/vim/commit/f7edf40448a09e04eec3bd05e043f7fea93b07c9
| * vim-patch:7.4.951watiko2016-03-02
| | | | | | | | | | | | | | Problem: Sorting number strings does not work as expected. (Luc Hermitte) Solution: Add the 'N" argument to sort() https://github.com/vim/vim/commit/b00da1d6d1655cb6e415f84ecc3be5ff3b790811
* | Merge pull request #4273 from watiko/vim-7.4.957Justin M. Keyes2016-04-25
|\ \ | | | | | | vim-patch:7.4.{941,942,957}
| * | tests: Migrate legacy test tagcasewatiko2016-03-06
| | |
| * | vim-patch:7.4.957watiko2016-03-06
| | | | | | | | | | | | | | | | | | | | | Problem: Test_tagcase fails when using another language than English. Solution: Set the messages language to C. (Kenichi Ito) https://github.com/vim/vim/commit/bc96c29ffc753daef302d20322d1e3d560094f44
| * | vim-patch:7.4.942watiko2016-03-06
| | | | | | | | | | | | | | | | | | | | | Problem: test_tagcase breaks for small builds. Solution: Bail out of the test early. (Hirohito Higashi) https://github.com/vim/vim/commit/60422e68a3a555144f8c76c666f050e8d104c16b
| * | buffer_defs.h: Fix lint errorswatiko2016-03-06
| | |
| * | vim-patch:7.4.941watiko2016-03-06
| | | | | | | | | | | | | | | | | | | | | Problem: There is no way to ignore case only for tag searches. Solution: Add the 'tagcase' option. (Gary Johnson) https://github.com/vim/vim/commit/0f6562e9036f889185dff49a75c7fc5ffb28b307
* | | mouse: Implement horizontal scroll. #3450bambu2016-04-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Code from Vim source. - Removed the check for 'guioptions' - mouse_spec.lua: test <ScrollWheelLeft> and <ScrollWheelRight> - Move horizontal scroll logic to mouse.c - Remove 'gui_' from the function names - Renamed variables to be more specific (as opposed to generic p, w). - Marked some functions as `static`
* | | Merge pull request #4642 from justinmk/unittest-event_initJustin M. Keyes2016-04-25
|\ \ \ | | | | | | | | test/unit: ensure event_init()
| * | | test/unit: ensure event_init()Justin M. Keyes2016-04-25
| | | | | | | | | | | | | | | | | | | | | | | | Closes #4635 References #4630 References https://github.com/neovim/neovim/pull/4070#discussion_r50626558
| * | | test: shell_spec: rename variableJustin M. Keyes2016-04-24
|/ / /
* | | version bumpJustin M. Keyes2016-04-24
| | |
* | | NVIM v0.1.4v0.1.4Justin M. Keyes2016-04-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Features: 5ebffaa :tcd for tab-local working directory (like :lcd, but for tabs) d835c03 remote/define.vim: support remote function "range" 007d573 json_encode/json_decode (with sophisticated error detection) #4131 b50afb4 clipboard: support "lemonade" tool Fixes: cc1beec eval.c: Fix heap corruption error. #4592 4043725 mbyte.c: Fix invalid memory access in utfc_ptr2char_len #4574 4eb5827 Enable syntax/filetype by default. #4558 Changes: 5c6592f v:windowid is writeable (useful for GUIs) #4608
* | | release.sh: Automate release process.Justin M. Keyes2016-04-24
| | |
* | | Merge pull request #4636 from blueyed/vim-patch-fix-find_git_remoteJustin M. Keyes2016-04-24
|\ \ \ | | | | | | | | vim-patch.sh: fix/improve pattern with find_git_remote
| * | | vim-patch.sh: fix/improve pattern with find_git_remoteDaniel Hahler2016-04-24
| | | |
* | | | Merge pull request #4571 from bfredl/pumtestBjörn Linse2016-04-24
|\ \ \ \ | |/ / / |/| | | more screen tests for completion popupmenu
| * | | tests/ui: screen tests for completion popupmenuBjörn Linse2016-04-24
|/ / /
* | | vim-patch.sh: Query git for name of neovim remoteJames McCoy2016-04-23
| | | | | | | | | | | | | | | Rather than assume the user named their neovim/neovim remote "upstream", parse the information from "git remote -v".
* | | Merge pull request #4367 from jbradaric/vim-7.4.1107Justin M. Keyes2016-04-22
|\ \ \ | | | | | | | | vim-patch:7.4.{1107,1114,1116,1117,1120}
| * | | Fix another linter error.Jurica Bradaric2016-04-20
| | | |
| * | | delete_spec: Fix linter errors.Jurica Bradaric2016-04-20
| | | |
| * | | Merge tempfile.c back into fileio.cJurica Bradaric2016-04-20
| | | |
| * | | vim-patch:7.4.1120Jurica Bradaric2016-04-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: delete(x, 'rf') fails if a directory is empty. (Lcd) Solution: Ignore not finding matches in an empty directory. https://github.com/vim/vim/commit/336bd622c31e1805495c034e1a8cfadcc0bbabc7
| * | | vim-patch:7.4.1117Jurica Bradaric2016-04-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: No longer get "." and ".." in directory list. Solution: Do not skip "." and ".." unless EW_DODOT is set. https://github.com/vim/vim/commit/d82103ed8534a1207742e9666ac7ef1e47dda12d
| * | | Fix linter errors.Jurica Bradaric2016-04-20
| | | |
| * | | vim-patch:7.4.1116Jurica Bradaric2016-04-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: delete(x, 'rf') does not delete files starting with a dot. Solution: Also delete files starting with a dot. https://github.com/vim/vim/commit/b0967d587fc420fa02832533d4915c85d1a78c17
| * | | vim-patch:7.4.1114Jurica Bradaric2016-04-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: delete() does not work well with symbolic links. Solution: Recognize symbolik links. https://github.com/vim/vim/commit/43a34f9f74fdce462fa250baab620264c28b6165
| * | | vim-patch:7.4.1107Jurica Bradaric2016-04-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Vim can create a directory but not delete it. Solution: Add an argument to delete() to make it possible to delete a directory, also recursively. https://github.com/vim/vim/commit/da440d21a6b94d7f525fa7be9b1417c78dd9aa4c
* | | | version.c: update. #4301Shougo Matsushita2016-04-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NA patches: 238, 244 SMACK support 1220 Tiny build 1221 configure 1222 Tiny build 1224 Makefile 1225 old style functions 1226 GRESOURCE_HDR 1227 compiler warning 1240, 1241 Makefile 1242 FEAT_EVAL 1243 Compiler warning 1245, 1251 Filelist 1270, 1272, 1280 if_python 1277 ifdef 1290 job 1292 Compiler warning 1320, 1323, 1326, 1332 Makefile 1334, 1339 char_u cast for Windows 1340 Windows build 1344, 1345 Windows 1348 Windows GUI 1349 if_mzscheme 1350 RealWaitForChar() 1154, 1156, 1157, 1160, 1163-1168, 1173, 1178, 1181, 1188, 1269, 1278, 1279 json 1229-1235, 1238, 1239, 1244, 1246-1250, 1252-1258, 1260-1268, 1274-1275, 1283, channel/job 1286-1289, 1291, 1293-1295, 1297-1299, 1301-1304, 1306-1319, 1321, 1322, 1324, channel/job 1325, 1327-1331, 1333, 1335-1338, 1341-1343 channel/job 1351, 1353, 1355-1362, 1369-1374, 1376 channel/job 1354 Makefile 1363 Tiny Build 1364, 1368, 1375 Remove Win16 code 1367 json 1387 Win16 1377-1382, 1385, 1386, 1389, 1393, 1395, 1398, 1404 channel 1383 GVimExt 1390 configure 1391 Compiler warning 1392 Makefile 1399 MS-DOS 1400 if_perl 1402, 1409 GTK-3 support 1403 ifdef Quickfix 1407, 1408 JSON 1411 wrong indent 1412 wrong indent 1413, 1418, 1421-1423 channel 1414, 1415 Appveyor 1416 char_u fix 1417 Filelist 1419 --not-a-terminal 1420, 1424 Makefile 1426, 1435, 1438, 1441, 1447, 1449 channel 1427 C89 1428 DirectWrite 1429 Win32 GUI 1430, 1434, 1439, 1444-1446, 1448, 1450 JSON 1431 if_scope 1432 GUI GTK 1433 if_sniff 1436 Filelist 1437 isnan(), isinf() 1440 Windows build 1442 if_ole 1443 GTK3 1451, 1452, 1454, 1457, 1459, 1461, 1465, 1466, 1469-1472 channel 1453 Makefile 1455 JSON 1460, 1462 functions prototypes 1463 configure 1467 FEAT_FLOAT 1473, 1474 ifdef 1475 push_raw_key() 1476 UNUSED 1481 ifdef 1482-1485, 1493, 1496, 1501-1507, 1509, 1510, 1512, 1514, 1515, 1517-1520, 1522-1524 channel 1487 isinf() 1488 add_to_input_buf_csi() 1489 MSVC 1490, 1497, 1525 GUI GTK 1495 Compiler Warning 1498 JSON 1508 Makefile 1526, 1527, 1529-1532, 1534, 1536, 1537 channel Included patches: 1346 #3035 1405 fix the flick in complete() 1406 #4064 1500 from neovim 1511 1757 #4509
* | | | Merge #3229 ':tcd'Justin M. Keyes2016-04-21
|\ \ \ \
| * | | | tcd: doc, error messagesJustin M. Keyes2016-04-21
| | | | |
| * | | | Implement tab-local working directory feature.HiPhish2016-04-20
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | New ex commands: 'tcd', 'tchdir' Changed Vimscript functions: 'haslocaldir', 'getcwd' The ex-commands ':tcd' and ':tchdir' are the tab-local equivalents of ':lcd' and ':lchdir'. There are no new Vimscript functions introduced, instead the functions 'haslocaldir' and 'getcwd' take in optional arguments. See the documentation for details Since there is now different levels of local directory a simple boolean at source level is no longer sufficient; a new enumeration type is used for the scope-level from now on. The documentation has been accommodated for these new commands and functional tests have been written to test the feature.
* | | | Merge pull request #4618 from bfredl/regcrashBjörn Linse2016-04-21
|\ \ \ \ | |/ / / |/| | | eval: make sure getreg() returns a valid list for an unset register (vim-patch:7.4.1755)
| * | | eval: let getreg() return valid list for an undefined registerBjörn Linse2016-04-21
|/ / / | | | | | | | | | | | | vim-patch:7.4.1755 this prevents a crash when the list is used in setreg() later
* | | Merge pull request #4610 from KillTheMule/vim-7.4.819Justin M. Keyes2016-04-20
|\ \ \ | | | | | | | | vim-patch:7.4.819
| * | | vim-patch:7.4.819KillTheMule2016-04-19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem: Beeping when running the tests. Solution: Fix 41 beeps. (Roland Eggner) https://github.com/vim/vim/commit/901e58c243ef4363bb2c13b2c96c7b0acd45e6d1 Applied cleanly, except for files test29.in, test4.in, test61.in, test82.in, test83.in, test90.in, test95.in, which were all converted to lua tests, and version.c. Some beeps remain, but this is much better.
* | | | Merge pull request #4589 from gregorias/patch_1113Justin M. Keyes2016-04-20
|\ \ \ \ | | | | | | | | | | vim-patch: 7.4.1113
| * | | | vim-patch:7.4.1113Grzegorz Milka2016-04-19
| |/ / / | | | | | | | | | | | | | | | | Problem: Using {ns} in variable name does not work. (lilydjwg) Solution: Fix recognizing colon. Add a test.
* / / / v:windowid #4608Rui Abreu Ferreira2016-04-19
|/ / / | | | | | | | | | | | | | | | Set v:windowid as writeable (but read only in the sandbox). References #3626
* | | Merge pull request #4604 from dbarnett/vim-60cce2fJustin M. Keyes2016-04-19
|\ \ \ | | | | | | | | vim-patch:60cce2f
| * | | vim-patch:60cce2fDavid Barnett2016-04-18
| | | | | | | | | | | | | | | | | | | | | | | | Update runtime files. https://github.com/vim/vim/commit/60cce2fb736c8ff6fdb9603f502d3c15f1f7a25d
* | | | doc: remove redundant, outdated section.Justin M. Keyes2016-04-19
|/ / / | | | | | | | | | The new content from bf635102 is retained.
* | | Merge pull request #4603 from dbarnett/vim-ca63501Justin M. Keyes2016-04-19
|\ \ \ | | | | | | | | vim-patch:ca63501
| * | | vim-patch:ca63501David Barnett2016-04-18
|/ / / | | | | | | | | | | | | | | | Update various runtime files. https://github.com/vim/vim/commit/ca63501fbcd1cf9c8aa9ff12c093c95b62a89ed7