comparison src/globals.h @ 21703:22583b9d4efd v8.2.1401

patch 8.2.1401: cannot jump to the last used tabpage Commit: https://github.com/vim/vim/commit/62a232506d06f6d1b3b7271801c907d6294dfe84 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 9 14:04:42 2020 +0200 patch 8.2.1401: cannot jump to the last used tabpage Problem: Cannot jump to the last used tabpage. Solution: Add g<Tab> and tabpagnr('#'). (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/6661, neovim #11626)
author Bram Moolenaar <Bram@vim.org>
date Sun, 09 Aug 2020 14:15:04 +0200
parents 7b5b9558500a
children 35921b7fc07a
comparison
equal deleted inserted replaced
21702:b63fb341c0da 21703:22583b9d4efd
723 */ 723 */
724 EXTERN frame_T *topframe; // top of the window frame tree 724 EXTERN frame_T *topframe; // top of the window frame tree
725 725
726 /* 726 /*
727 * Tab pages are alternative topframes. "first_tabpage" points to the first 727 * Tab pages are alternative topframes. "first_tabpage" points to the first
728 * one in the list, "curtab" is the current one. 728 * one in the list, "curtab" is the current one. "lastused_tabpage" is the
729 * last used one.
729 */ 730 */
730 EXTERN tabpage_T *first_tabpage; 731 EXTERN tabpage_T *first_tabpage;
731 EXTERN tabpage_T *curtab; 732 EXTERN tabpage_T *curtab;
733 EXTERN tabpage_T *lastused_tabpage;
732 EXTERN int redraw_tabline INIT(= FALSE); // need to redraw tabline 734 EXTERN int redraw_tabline INIT(= FALSE); // need to redraw tabline
733 735
734 /* 736 /*
735 * All buffers are linked in a list. 'firstbuf' points to the first entry, 737 * All buffers are linked in a list. 'firstbuf' points to the first entry,
736 * 'lastbuf' to the last entry and 'curbuf' to the currently active buffer. 738 * 'lastbuf' to the last entry and 'curbuf' to the currently active buffer.