summaryrefslogtreecommitdiffstats
path: root/src/evalwindow.c
AgeCommit message (Collapse)Author
2020-08-09patch 8.2.1401: cannot jump to the last used tabpagev8.2.1401Bram Moolenaar
Problem: Cannot jump to the last used tabpage. Solution: Add g<Tab> and tabpagnr('#'). (Yegappan Lakshmanan, closes #6661, neovim #11626)
2020-06-17patch 8.2.0996: using "aucmdwin" in win_gettype() is not idealv8.2.0996Bram Moolenaar
Problem: Using "aucmdwin" in win_gettype() is not ideal. Solution: Rename to "autocmd".
2020-06-16patch 8.2.0991: cannot get window type for autocmd and preview windowv8.2.0991Bram Moolenaar
Problem: Cannot get window type for autocmd and preview window. Solution: Add types to win_gettype(). (Yegappan Lakshmanan, closes #6277)
2020-04-06patch 8.2.0523: loops are repeatedv8.2.0523Bram Moolenaar
Problem: Loops are repeated. Solution: Use FOR_ALL_ macros. (Yegappan Lakshmanan, closes #5882)
2020-04-02patch 8.2.0500: using the same loop in many placesv8.2.0500Bram Moolenaar
Problem: Using the same loop in many places. Solution: Define more FOR_ALL macros. (Yegappan Lakshmanan, closes #5339)
2020-03-20patch 8.2.0422: crash when passing popup window to win_splitmove()v8.2.0422Bram Moolenaar
Problem: Crash when passing popup window to win_splitmove(). (john Devin) Solution: Disallow moving a popup window. (closes #5816)
2020-02-14patch 8.2.0257: cannot recognize a terminal in a popup windowv8.2.0257Bram Moolenaar
Problem: Cannot recognize a terminal in a popup window. Solution: Add the win_gettype() function.
2020-02-03patch 8.2.0204: crash when using winnr('j') in a popup windowv8.2.0204Bram Moolenaar
Problem: Crash when using winnr('j') in a popup window. Solution: Do not search for neighbors in a popup window. (closes #5568)
2020-01-14patch 8.2.0117: crash when using gettabwinvar() with invalid argumentsv8.2.0117Bram Moolenaar
Problem: Crash when using gettabwinvar() with invalid arguments. (Yilin Yang) Solution: Use "curtab" if "tp" is NULL. (closes #5475)
2020-01-06patch 8.2.0093: win_splitmove() can make Vim hangv8.2.0093Bram Moolenaar
Problem: win_splitmove() can make Vim hang. Solution: Check windows exists in the current tab page. (closes #5444)
2019-11-30patch 8.1.2371: FEAT_TEXT_PROP is a confusing namev8.1.2371Bram Moolenaar
Problem: FEAT_TEXT_PROP is a confusing name. Solution: Use FEAT_PROP_POPUP. (Naruhiko Nishino, closes #5291)
2019-10-08patch 8.1.2124: ruler is not updated if win_execute() moves cursorv8.1.2124Bram Moolenaar
Problem: Ruler is not updated if win_execute() moves cursor. Solution: Update the status line. (closes #5022)
2019-09-15patch 8.1.2037: can call win_gotoid() in cmdline windowv8.1.2037Bram Moolenaar
Problem: Can call win_gotoid() in cmdline window. Solution: Disallow switching windows. (Yasuhiro Matsumoto, closes #4940)
2019-09-10patch 8.1.2020: it is not easy to change the window layoutv8.1.2020Bram Moolenaar
Problem: It is not easy to change the window layout. Solution: Add win_splitmove(). (Andy Massimino, closes #4561)
2019-09-07patch 8.1.2001: some source files are too bigv8.1.2001Bram Moolenaar
Problem: Some source files are too big. Solution: Move buffer and window related functions to evalbuffer.c and evalwindow.c. (Yegappan Lakshmanan, closes #4898)