DirChanged: avoid redundant events on 'autochdir'

This commit is contained in:
Justin M. Keyes 2017-03-12 12:12:26 +01:00
parent d9fcbc2cfb
commit c5e61b41a5
3 changed files with 46 additions and 32 deletions

View File

@ -6960,8 +6960,8 @@ void post_chdir(CdScope scope)
} }
} }
char curdir[MAXPATHL]; char cwd[MAXPATHL];
if (os_dirname((char_u *)curdir, MAXPATHL) != OK) { if (os_dirname((char_u *)cwd, MAXPATHL) != OK) {
return; return;
} }
switch (scope) { switch (scope) {
@ -6971,17 +6971,17 @@ void post_chdir(CdScope scope)
globaldir = NULL; globaldir = NULL;
break; break;
case kCdScopeTab: case kCdScopeTab:
curtab->tp_localdir = (char_u *)xstrdup(curdir); curtab->tp_localdir = (char_u *)xstrdup(cwd);
break; break;
case kCdScopeWindow: case kCdScopeWindow:
curwin->w_localdir = (char_u *)xstrdup(curdir); curwin->w_localdir = (char_u *)xstrdup(cwd);
break; break;
case kCdScopeInvalid: case kCdScopeInvalid:
assert(false); assert(false);
} }
shorten_fnames(true); shorten_fnames(true);
do_autocmd_dirchanged(curdir, scope); do_autocmd_dirchanged(cwd, scope);
} }
/// `:cd`, `:tcd`, `:lcd`, `:chdir`, `:tchdir` and `:lchdir`. /// `:cd`, `:tcd`, `:lcd`, `:chdir`, `:tchdir` and `:lchdir`.

View File

@ -1566,14 +1566,25 @@ void do_autocmd_dirchanged(char *new_dir, CdScope scope)
/// @return OK or FAIL /// @return OK or FAIL
int vim_chdirfile(char_u *fname) int vim_chdirfile(char_u *fname)
{ {
char_u dir[MAXPATHL]; char dir[MAXPATHL];
STRLCPY(dir, fname, MAXPATHL); STRLCPY(dir, fname, MAXPATHL);
*path_tail_with_sep(dir) = NUL; *path_tail_with_sep((char_u *)dir) = NUL;
if (os_chdir((char *)dir) != 0) {
if (os_dirname(NameBuff, sizeof(NameBuff)) != OK) {
NameBuff[0] = NUL;
}
if (os_chdir(dir) != 0) {
return FAIL; return FAIL;
} }
do_autocmd_dirchanged((char *)dir, kCdScopeWindow);
#ifdef BACKSLASH_IN_FILENAME
slash_adjust(dir);
#endif
if (!strequal(dir, (char *)NameBuff)) {
do_autocmd_dirchanged(dir, kCdScopeWindow);
}
return OK; return OK;
} }

View File

@ -20,34 +20,36 @@ describe('autocmd DirChanged', function()
before_each(function() before_each(function()
clear() clear()
command('autocmd DirChanged * let [g:getcwd_rv, g:event, g:amatch, g:cdcount] ' command('autocmd DirChanged * let [g:getcwd, g:ev, g:amatch, g:cdcount] '
..' = [getcwd(), copy(v:event), expand("<amatch>"), 1 + get(g:, "cdcount", 0)]' ..' = [getcwd(), copy(v:event), expand("<amatch>"), 1 + get(g:, "cdcount", 0)]')
..[[ | let g:event['cwd'] = substitute(g:event['cwd'], '\\', '/', 'g') ]]) -- Normalize path separators.
command([[autocmd DirChanged * let g:ev['cwd'] = substitute(g:ev['cwd'], '\\', '/', 'g')]])
command([[autocmd DirChanged * let g:getcwd = substitute(g:getcwd, '\\', '/', 'g')]])
end) end)
it('sets v:event', function() it('sets v:event', function()
command('lcd '..dirs[1]) command('lcd '..dirs[1])
eq({cwd=dirs[1], scope='window'}, eval('g:event')) eq({cwd=dirs[1], scope='window'}, eval('g:ev'))
eq(1, eval('g:cdcount')) eq(1, eval('g:cdcount'))
command('tcd '..dirs[2]) command('tcd '..dirs[2])
eq({cwd=dirs[2], scope='tab'}, eval('g:event')) eq({cwd=dirs[2], scope='tab'}, eval('g:ev'))
eq(2, eval('g:cdcount')) eq(2, eval('g:cdcount'))
command('cd '..dirs[3]) command('cd '..dirs[3])
eq({cwd=dirs[3], scope='global'}, eval('g:event')) eq({cwd=dirs[3], scope='global'}, eval('g:ev'))
eq(3, eval('g:cdcount')) eq(3, eval('g:cdcount'))
end) end)
it('sets getcwd() during event #6260', function() it('sets getcwd() during event #6260', function()
command('lcd '..dirs[1]) command('lcd '..dirs[1])
eq(dirs[1], eval('g:getcwd_rv')) eq(dirs[1], eval('g:getcwd'))
command('tcd '..dirs[2]) command('tcd '..dirs[2])
eq(dirs[2], eval('g:getcwd_rv')) eq(dirs[2], eval('g:getcwd'))
command('cd '..dirs[3]) command('cd '..dirs[3])
eq(dirs[3], eval('g:getcwd_rv')) eq(dirs[3], eval('g:getcwd'))
end) end)
it('disallows recursion', function() it('disallows recursion', function()
@ -55,7 +57,7 @@ describe('autocmd DirChanged', function()
-- Set up a _nested_ handler. -- Set up a _nested_ handler.
command('autocmd DirChanged * nested lcd '..dirs[3]) command('autocmd DirChanged * nested lcd '..dirs[3])
command('lcd '..dirs[1]) command('lcd '..dirs[1])
eq({cwd=dirs[1], scope='window'}, eval('g:event')) eq({cwd=dirs[1], scope='window'}, eval('g:ev'))
eq(1, eval('g:cdcount')) eq(1, eval('g:cdcount'))
-- autocmd changed to dirs[3], but did NOT trigger another DirChanged. -- autocmd changed to dirs[3], but did NOT trigger another DirChanged.
eq(dirs[3], eval('getcwd()')) eq(dirs[3], eval('getcwd()'))
@ -73,22 +75,22 @@ describe('autocmd DirChanged', function()
end) end)
it('does not trigger if :cd fails', function() it('does not trigger if :cd fails', function()
command('let g:event = {}') command('let g:ev = {}')
local status1, err1 = pcall(function() local status1, err1 = pcall(function()
command('lcd '..dirs[1] .. '/doesnotexist') command('lcd '..dirs[1] .. '/doesnotexist')
end) end)
eq({}, eval('g:event')) eq({}, eval('g:ev'))
local status2, err2 = pcall(function() local status2, err2 = pcall(function()
command('lcd '..dirs[2] .. '/doesnotexist') command('lcd '..dirs[2] .. '/doesnotexist')
end) end)
eq({}, eval('g:event')) eq({}, eval('g:ev'))
local status3, err3 = pcall(function() local status3, err3 = pcall(function()
command('lcd '..dirs[3] .. '/doesnotexist') command('lcd '..dirs[3] .. '/doesnotexist')
end) end)
eq({}, eval('g:event')) eq({}, eval('g:ev'))
eq(false, status1) eq(false, status1)
eq(false, status2) eq(false, status2)
@ -103,10 +105,12 @@ describe('autocmd DirChanged', function()
command('set autochdir') command('set autochdir')
command('split '..dirs[1]..'/foo') command('split '..dirs[1]..'/foo')
eq({cwd=dirs[1], scope='window'}, eval('g:event')) eq({cwd=dirs[1], scope='window'}, eval('g:ev'))
command('split '..dirs[2]..'/bar') command('split '..dirs[2]..'/bar')
eq({cwd=dirs[2], scope='window'}, eval('g:event')) eq({cwd=dirs[2], scope='window'}, eval('g:ev'))
eq(2, eval('g:cdcount'))
end) end)
it("is triggered by switching to win/tab with different CWD #6054", function() it("is triggered by switching to win/tab with different CWD #6054", function()
@ -117,16 +121,16 @@ describe('autocmd DirChanged', function()
command('lcd '..dirs[1]) command('lcd '..dirs[1])
command('2wincmd w') -- window 2 command('2wincmd w') -- window 2
eq({cwd=dirs[2], scope='window'}, eval('g:event')) eq({cwd=dirs[2], scope='window'}, eval('g:ev'))
eq(4, eval('g:cdcount')) eq(4, eval('g:cdcount'))
command('tabnew') -- tab 2 (tab-local CWD) command('tabnew') -- tab 2 (tab-local CWD)
eq(4, eval('g:cdcount')) -- same CWD, no DirChanged event eq(4, eval('g:cdcount')) -- same CWD, no DirChanged event
command('tcd '..dirs[3]) command('tcd '..dirs[3])
command('tabnext') -- tab 1 (no tab-local CWD) command('tabnext') -- tab 1 (no tab-local CWD)
eq({cwd=dirs[2], scope='window'}, eval('g:event')) eq({cwd=dirs[2], scope='window'}, eval('g:ev'))
command('tabnext') -- tab 2 command('tabnext') -- tab 2
eq({cwd=dirs[3], scope='tab'}, eval('g:event')) eq({cwd=dirs[3], scope='tab'}, eval('g:ev'))
eq(7, eval('g:cdcount')) eq(7, eval('g:cdcount'))
command('tabnext') -- tab 1 command('tabnext') -- tab 1
@ -134,21 +138,20 @@ describe('autocmd DirChanged', function()
eq(9, eval('g:cdcount')) eq(9, eval('g:cdcount'))
command('tabnext') -- tab 2 (has the *same* CWD) command('tabnext') -- tab 2 (has the *same* CWD)
eq(9, eval('g:cdcount')) -- same CWD, no DirChanged event eq(9, eval('g:cdcount')) -- same CWD, no DirChanged event
end) end)
it('is triggered by nvim_set_current_dir()', function() it('is triggered by nvim_set_current_dir()', function()
request('nvim_set_current_dir', dirs[1]) request('nvim_set_current_dir', dirs[1])
eq({cwd=dirs[1], scope='global'}, eval('g:event')) eq({cwd=dirs[1], scope='global'}, eval('g:ev'))
request('nvim_set_current_dir', dirs[2]) request('nvim_set_current_dir', dirs[2])
eq({cwd=dirs[2], scope='global'}, eval('g:event')) eq({cwd=dirs[2], scope='global'}, eval('g:ev'))
local status, err = pcall(function() local status, err = pcall(function()
request('nvim_set_current_dir', '/doesnotexist') request('nvim_set_current_dir', '/doesnotexist')
end) end)
eq(false, status) eq(false, status)
eq('Failed to change directory', string.match(err, ': (.*)')) eq('Failed to change directory', string.match(err, ': (.*)'))
eq({cwd=dirs[2], scope='global'}, eval('g:event')) eq({cwd=dirs[2], scope='global'}, eval('g:ev'))
end) end)
end) end)