mirror of
https://github.com/neovim/neovim.git
synced 2025-10-08 02:46:31 +00:00
vim-patch:8.2.4060: win_execute() slow on systems where getcwd()/chdir() is slow
Problem: win_execute() is slow on systems where getcwd() or chdir() is
slow. (Rick Howe)
Solution: Avoid using getcwd() and chdir() if no local directory is used and
'acd' is not set. (closes vim/vim#9504)
d6f27c66cc
This commit is contained in:
@@ -51,7 +51,16 @@ typedef struct {
|
|||||||
char_u cwd_[MAXPATHL]; \
|
char_u cwd_[MAXPATHL]; \
|
||||||
char_u autocwd_[MAXPATHL]; \
|
char_u autocwd_[MAXPATHL]; \
|
||||||
bool apply_acd_ = false; \
|
bool apply_acd_ = false; \
|
||||||
const int cwd_status_ = os_dirname(cwd_, MAXPATHL); \
|
int cwd_status_ = FAIL; \
|
||||||
|
/* Getting and setting directory can be slow on some systems, only do */ \
|
||||||
|
/* this when the current or target window/tab have a local directory or */ \
|
||||||
|
/* 'acd' is set. */ \
|
||||||
|
if (curwin != wp \
|
||||||
|
&& (curwin->w_localdir != NULL || wp->w_localdir != NULL \
|
||||||
|
|| (curtab != tp && (curtab->tp_localdir != NULL || tp->tp_localdir != NULL)) \
|
||||||
|
|| p_acd)) { \
|
||||||
|
cwd_status_ = os_dirname(cwd_, MAXPATHL); \
|
||||||
|
} \
|
||||||
/* If 'acd' is set, check we are using that directory. If yes, then */ \
|
/* If 'acd' is set, check we are using that directory. If yes, then */ \
|
||||||
/* apply 'acd' afterwards, otherwise restore the current directory. */ \
|
/* apply 'acd' afterwards, otherwise restore the current directory. */ \
|
||||||
if (cwd_status_ == OK && p_acd) { \
|
if (cwd_status_ == OK && p_acd) { \
|
||||||
|
Reference in New Issue
Block a user