summaryrefslogtreecommitdiff
path: root/src/testdir
Commit message (Collapse)AuthorAgeFilesLines
* patch 8.1.1453: popup window "moved" property not implemented yetv8.1.1453Bram Moolenaar2019-06-021-2/+63
| | | | | Problem: Popup window "moved" property not implemented yet. Solution: Implement it.
* patch 8.1.1452: line and col property of popup windows not properly checkedv8.1.1452Bram Moolenaar2019-06-021-0/+95
| | | | | Problem: Line and col property of popup windows not properly checked. Solution: Check for "+" or "-" sign.
* patch 8.1.1450: popup window positioning wrong when using padding or bordersv8.1.1450Bram Moolenaar2019-06-022-0/+61
| | | | | Problem: Popup window positioning wrong when using padding or borders. Solution: Fix computing the position.
* patch 8.1.1449: popup text truncated at end of screenv8.1.1449Bram Moolenaar2019-06-021-0/+183
| | | | | | Problem: Popup text truncated at end of screen. Solution: Move popup left if needed. Add the "fixed" property to disable that. (Ben Jackson , closes #4466)
* patch 8.1.1448: statusline is sometimes drawn on top of popupv8.1.1448Bram Moolenaar2019-06-022-0/+47
| | | | | | Problem: Statusline is sometimes drawn on top of popup. Solution: Redraw popups after the statusline. (Naruhiko Nishino, closes #4468)
* patch 8.1.1447: not allowed to create an empty popupv8.1.1447Bram Moolenaar2019-06-021-0/+14
| | | | | Problem: Not allowed to create an empty popup. Solution: Remove restriction that there is some text. (closes #4470)
* patch 8.1.1446: popup window callback not implemented yetv8.1.1446Bram Moolenaar2019-06-011-0/+10
| | | | | Problem: Popup window callback not implemented yet. Solution: Implement the callback.
* patch 8.1.1445: popup window border highlight not implemented yetv8.1.1445Bram Moolenaar2019-06-012-0/+32
| | | | | Problem: Popup window border highlight not implemented yet. Solution: Implement the "borderhighlight" option.
* patch 8.1.1444: not using double line characters for popup borderv8.1.1444Bram Moolenaar2019-06-012-13/+30
| | | | | Problem: Not using double line characters for popup border. Solution: Use double line characters if using utf-8.
* patch 8.1.1443: popup window padding and border not implemented yetv8.1.1443Bram Moolenaar2019-06-012-0/+63
| | | | | | Problem: Popup window padding and border not implemented yet. Solution: Implement padding and border. Add core position and size to popup_getpos().
* patch 8.1.1441: popup window filter not yet implementedv8.1.1441Bram Moolenaar2019-06-011-0/+43
| | | | | Problem: Popup window filter not yet implemented. Solution: Implement the popup filter.
* patch 8.1.1440: win_execute() test failsv8.1.1440Bram Moolenaar2019-06-012-2/+1
| | | | | Problem: Win_execute() test fails. Solution: Adjust the expected error number. Move to popup test.
* patch 8.1.1438: some commands cause trouble in a popup windowv8.1.1438Bram Moolenaar2019-06-011-2/+21
| | | | | Problem: Some commands cause trouble in a popup window. Solution: Add NOT_IN_POPUP_WINDOW.
* patch 8.1.1436: writefile test fails when run under /tmpv8.1.1436Bram Moolenaar2019-05-311-3/+4
| | | | | Problem: Writefile test fails when run under /tmp. Solution: Adjust 'backupskip. (Kenta Sato, closes #4462)
* patch 8.1.1435: memory usage test is a bit too flakyv8.1.1435Bram Moolenaar2019-05-311-4/+5
| | | | | Problem: Memory usage test is a bit too flaky. Solution: Adjust the tolerances a bit. (Christian Brabandt)
* patch 8.1.1434: test 3 is old stylev8.1.1434Bram Moolenaar2019-05-315-4459/+5125
| | | | | Problem: Test 3 is old style. Solution: Turn into a new style test. (Yegappan Lakshmanan, closes #4460)
* patch 8.1.1433: win_execute() may leave popup window focusedv8.1.1433Bram Moolenaar2019-05-311-0/+8
| | | | | | Problem: Win_execute() may leave popup window focused, eventually leading to a crash. (Bjorn Linse) Solution: When previous window was closed, go to the first window.
* patch 8.1.1431: popup window listed as "Scratch"v8.1.1431Bram Moolenaar2019-05-301-0/+4
| | | | | Problem: Popup window listed as "Scratch". Solution: List them as "Popup".
* patch 8.1.1430: popup window option "wrap" not supportedv8.1.1430Bram Moolenaar2019-05-303-20/+97
| | | | | Problem: Popup window option "wrap" not supported. Solution: Implement it.
* patch 8.1.1428: popup_atcursor() not implemented yetv8.1.1428Bram Moolenaar2019-05-301-0/+49
| | | | | Problem: Popup_atcursor() not implemented yet. Solution: Implement it. (Yasuhiro Matsumoto, closes #4456)
* patch 8.1.1426: no test for syntax highlight in popup windowv8.1.1426Bram Moolenaar2019-05-303-0/+68
| | | | | | Problem: No test for syntax highlight in popup window. Solution: Add a screenshot test. Update associated documentation. Avoid 'buftype' being reset by setbufvar().
* patch 8.1.1423: popup windows use options from current window and bufferv8.1.1423Bram Moolenaar2019-05-301-0/+23
| | | | | Problem: Popup windows use options from current window and buffer. Solution: Clear all local options when creating a popup window.
* patch 8.1.1422: popup_getoptions() not implemented yetv8.1.1422Bram Moolenaar2019-05-301-0/+47
| | | | | Problem: Popup_getoptions() not implemented yet. Solution: Implement it. (closes #4452)
* patch 8.1.1421: drawing "~" line in popup windowv8.1.1421Bram Moolenaar2019-05-303-2/+17
| | | | | Problem: Drawing "~" line in popup window. Solution: Just draw text in the last line of the popup window.
* patch 8.1.1420: popup window size only uses first line lengthv8.1.1420Bram Moolenaar2019-05-291-0/+36
| | | | | | Problem: Popup window size only uses first line length. Solution: Use the longest line. (Ben Jackson, closes #4451) Also deal with wrapping lines.
* patch 8.1.1418: win_execute() is not implemented yetv8.1.1418Bram Moolenaar2019-05-291-0/+24
| | | | | Problem: Win_execute() is not implemented yet. Solution: Implement it.
* patch 8.1.1417: MS-Windows: resolve() does not resolve all components of pathv8.1.1417Bram Moolenaar2019-05-291-1/+14
| | | | | | | Problem: MS-Windows: resolve() does not resolve all components of the path. (David Briscoe) Solution: Do not bail out for a reparse point. (Yasuhiro Matsumoto, closes #4211, closes #4447)
* patch 8.1.1416: popup_getposition() not implemented yetv8.1.1416Bram Moolenaar2019-05-291-0/+17
| | | | | Problem: Popup_getposition() not implemented yet. Solution: Implement it. (Yasuhiro Matsumoto, closes #4449)
* patch 8.1.1414: alloc() returning "char_u *" causes a lot of type castsv8.1.1414Bram Moolenaar2019-05-281-2/+2
| | | | | | Problem: Alloc() returning "char_u *" causes a lot of type casts. Solution: Have it return "void *". (Mike Williams) Define ALLOC_ONE() to check the simple allocations.
* patch 8.1.1413: error when the drive of the swap file was disconnectedv8.1.1413Bram Moolenaar2019-05-271-8/+8
| | | | | Problem: Error when the drive of the swap file was disconnected. Solution: Try closing and re-opening the swap file. (closes #4378)
* patch 8.1.1412: test 30 is old stylev8.1.1412Bram Moolenaar2019-05-275-373/+247
| | | | | Problem: Test 30 is old style. Solution: Turn it into a new style test. (Yegappan Lakshmanan, closes #4440)
* patch 8.1.1410: popup_move() is not implemented yetv8.1.1410Bram Moolenaar2019-05-272-5/+53
| | | | | | Problem: Popup_move() is not implemented yet. Solution: Implement it. (Yasuhiro Matsumoto, closes #4441) Improve the positioning and resizing.
* patch 8.1.1407: popup_create() does not support text propertiesv8.1.1407Bram Moolenaar2019-05-264-5/+12
| | | | | Problem: Popup_create() does not support text properties. Solution: Support the third form of the text argument.
* patch 8.1.1406: popup_hide() and popup_show() not implemented yetv8.1.1406Bram Moolenaar2019-05-261-0/+38
| | | | | Problem: popup_hide() and popup_show() not implemented yet. Solution: Implement the functions.
* patch 8.1.1405: "highlight" option of popup windows not supportedv8.1.1405Bram Moolenaar2019-05-263-9/+10
| | | | | Problem: "highlight" option of popup windows not supported. Solution: Implement the "highlight" option.
* patch 8.1.1403: cannot build without the timer featurev8.1.1403Bram Moolenaar2019-05-261-0/+4
| | | | | Problem: Cannot build without the timer feature. Solution: Add #ifdef.
* patch 8.1.1402: "timer" option of popup windows not supportedv8.1.1402Bram Moolenaar2019-05-261-0/+34
| | | | | Problem: "timer" option of popup windows not supported. Solution: Implement the "timer" option. (Yasuhiro Matsumoto, closes #4439)
* patch 8.1.1401: misspelled mkspellmem as makespellmemv8.1.1401Bram Moolenaar2019-05-261-1/+1
| | | | | | Problem: Misspelled mkspellmem as makespellmem. Solution: Drop duplicate help entry, fix test. (Naruhiko Nishino, Ken Takata, closes #4437)
* patch 8.1.1399: popup windows not adjusted when switching tabsv8.1.1399Bram Moolenaar2019-05-264-0/+43
| | | | | Problem: Popup windows not adjusted when switching tabs. Solution: Save and restore first_tab_popupwin. Fix closing a tabpage.
* patch 8.1.1396: 'wincolor' does not apply to lines below the bufferv8.1.1396Bram Moolenaar2019-05-252-0/+32
| | | | | Problem: 'wincolor' does not apply to lines below the buffer. Solution: Also apply 'wincolor' to the "~" lines and the number column.
* patch 8.1.1395: saving for undo may access invalid memoryv8.1.1395Bram Moolenaar2019-05-251-0/+9
| | | | | Problem: Saving for undo may access invalid memory. (Dominique Pelle) Solution: Set ml_line_len also when returning a constant string.
* patch 8.1.1394: not restoring t_F2 in registers testv8.1.1394Bram Moolenaar2019-05-251-1/+1
| | | | | Problem: Not restoring t_F2 in registers test. Solution: Assign to &t_F2 instead of t_F2. (Andy Massimino, closes #4434)
* patch 8.1.1391: no popup window supportv8.1.1391Bram Moolenaar2019-05-253-2/+40
| | | | | Problem: No popup window support. Solution: Add initial code for popup windows. Add the 'wincolor' option.
* patch 8.1.1390: search stats are off when using count or offsetv8.1.1390Bram Moolenaar2019-05-241-0/+19
| | | | | Problem: Search stats are off when using count or offset. Solution: Recompute the stats when needed. (Masato Nishihata, closes #4410)
* patch 8.1.1389: changes are not flushed when end and start overlapv8.1.1389Bram Moolenaar2019-05-241-0/+11
| | | | | | Problem: Changes are not flushed when end and start overlap. (Paul Jolly) Solution: When end of a previous changes overlaps with start of a new change, first flush listeners.
* patch 8.1.1388: errors when calling prop_remove() for an unloaded bufferv8.1.1388Bram Moolenaar2019-05-241-2/+22
| | | | | | Problem: Errors when calling prop_remove() for an unloaded buffer. Solution: Bail out when the buffer is not loaded. Add a few more tests for failing when the buffer number is invalid.
* patch 8.1.1387: calling prop_add() in an empty buffer doesn't workv8.1.1387Bram Moolenaar2019-05-241-0/+8
| | | | | | Problem: Calling prop_add() in an empty buffer doesn't work. (Dominique Pelle) Solution: Open the memline before adding a text property. (closes #4412)
* patch 8.1.1382: error when editing test filev8.1.1382Bram Moolenaar2019-05-243-4/+2
| | | | | Problem: Error when editing test file. Solution: Remove part of modeline.
* patch 8.1.1379: filechanged test hangsv8.1.1379Bram Moolenaar2019-05-241-1/+2
| | | | | Problem: Filechanged test hangs. Solution: Do not check 'autoread'.
* patch 8.1.1378: delete() can not handle a file name that looks like a patternv8.1.1378Bram Moolenaar2019-05-241-0/+15
| | | | | | Problem: Delete() can not handle a file name that looks like a pattern. Solution: Use readdir() instead of appending "/*" and expanding wildcards. (Ken Takata, closes #4424, closes #696)