aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer.c
diff options
context:
space:
mode:
authorMichael Ennen <mike.ennen@gmail.com>2016-04-27 15:18:42 -0700
committerMichael Ennen <mike.ennen@gmail.com>2016-04-27 16:28:38 -0700
commitc0de12c3c5f8a19172b4faeda89d01003ae03a71 (patch)
treef777fa2e337b274094d9f7dd43c675f05220b8ed /src/nvim/buffer.c
parente861af85f89e119193a9e219a4cb766757e28e5a (diff)
downloadrneovim-c0de12c3c5f8a19172b4faeda89d01003ae03a71.tar.gz
rneovim-c0de12c3c5f8a19172b4faeda89d01003ae03a71.tar.bz2
rneovim-c0de12c3c5f8a19172b4faeda89d01003ae03a71.zip
vim-patch: 7.4.1401
Problem: Having 'autochdir' set during startup and using diff mode doesn't work. (Axel Bender) Solution: Don't use 'autochdir' while still starting up. (Christian Brabandt) https://github.com/vim/vim/commit/6bd364e08461159ad3c153ffba4def5b896486a1
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r--src/nvim/buffer.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c
index 529d0889bd..6ed5b3136f 100644
--- a/src/nvim/buffer.c
+++ b/src/nvim/buffer.c
@@ -1294,14 +1294,15 @@ void enter_buffer(buf_T *buf)
redraw_later(NOT_VALID);
}
-/*
- * Change to the directory of the current buffer.
- */
+// Change to the directory of the current buffer.
+// Don't do this while still starting up.
void do_autochdir(void)
{
if (p_acd) {
- if (curbuf->b_ffname != NULL && vim_chdirfile(curbuf->b_ffname) == OK) {
- shorten_fnames(TRUE);
+ if (starting == 0
+ && curbuf->b_ffname != NULL
+ && vim_chdirfile(curbuf->b_ffname) == OK) {
+ shorten_fnames(true);
}
}
}