comparison src/structs.h @ 16576:bcc343175103 v8.1.1291

patch 8.1.1291: not easy to change directory and restore commit https://github.com/vim/vim/commit/1063f3d2008f22d02ccfa9dab83a23db52febbdc Author: Bram Moolenaar <Bram@vim.org> Date: Tue May 7 22:06:52 2019 +0200 patch 8.1.1291: not easy to change directory and restore Problem: Not easy to change directory and restore. Solution: Add the chdir() function. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/4358)
author Bram Moolenaar <Bram@vim.org>
date Tue, 07 May 2019 22:15:05 +0200
parents 7a563ee902b6
children 1a911bd57f11
comparison
equal deleted inserted replaced
16575:e0baba49b677 16576:bcc343175103
3553 typedef struct { 3553 typedef struct {
3554 varnumber_T vv_prevcount; 3554 varnumber_T vv_prevcount;
3555 varnumber_T vv_count; 3555 varnumber_T vv_count;
3556 varnumber_T vv_count1; 3556 varnumber_T vv_count1;
3557 } vimvars_save_T; 3557 } vimvars_save_T;
3558
3559 // Scope for changing directory
3560 typedef enum {
3561 CDSCOPE_GLOBAL, // :cd
3562 CDSCOPE_TABPAGE, // :tcd
3563 CDSCOPE_WINDOW // :lcd
3564 } cdscope_T;