comparison src/structs.h @ 20711:d91b8d1e5198 v8.2.0909

patch 8.2.0909: cannot go back to the previous local directory Commit: https://github.com/vim/vim/commit/002bc79991286934a9593b80635c27d4238cdfc4 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Jun 5 22:33:42 2020 +0200 patch 8.2.0909: cannot go back to the previous local directory Problem: Cannot go back to the previous local directory. Solution: Add "tcd -" and "lcd -". (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/4362)
author Bram Moolenaar <Bram@vim.org>
date Fri, 05 Jun 2020 22:45:04 +0200
parents 99b6e6bf48bf
children f4455c71a8aa
comparison
equal deleted inserted replaced
20710:24fa685e72e9 20711:d91b8d1e5198
2992 // previous value of which_scrollbars 2992 // previous value of which_scrollbars
2993 #endif 2993 #endif
2994 2994
2995 char_u *tp_localdir; // absolute path of local directory or 2995 char_u *tp_localdir; // absolute path of local directory or
2996 // NULL 2996 // NULL
2997 char_u *tp_prevdir; // previous directory
2998
2997 #ifdef FEAT_DIFF 2999 #ifdef FEAT_DIFF
2998 diff_T *tp_first_diff; 3000 diff_T *tp_first_diff;
2999 buf_T *(tp_diffbuf[DB_COUNT]); 3001 buf_T *(tp_diffbuf[DB_COUNT]);
3000 int tp_diff_invalid; // list of diffs is outdated 3002 int tp_diff_invalid; // list of diffs is outdated
3001 int tp_diff_update; // update diffs before redrawing 3003 int tp_diff_update; // update diffs before redrawing
3395 // out of range!) 3397 // out of range!)
3396 int w_arg_idx_invalid; // editing another file than w_arg_idx 3398 int w_arg_idx_invalid; // editing another file than w_arg_idx
3397 3399
3398 char_u *w_localdir; // absolute path of local directory or 3400 char_u *w_localdir; // absolute path of local directory or
3399 // NULL 3401 // NULL
3402 char_u *w_prevdir; // previous directory
3400 #ifdef FEAT_MENU 3403 #ifdef FEAT_MENU
3401 vimmenu_T *w_winbar; // The root of the WinBar menu hierarchy. 3404 vimmenu_T *w_winbar; // The root of the WinBar menu hierarchy.
3402 winbar_item_T *w_winbar_items; // list of items in the WinBar 3405 winbar_item_T *w_winbar_items; // list of items in the WinBar
3403 int w_winbar_height; // 1 if there is a window toolbar 3406 int w_winbar_height; // 1 if there is a window toolbar
3404 #endif 3407 #endif