diff options
author | Hinidu <hinidu@gmail.com> | 2014-04-11 23:45:48 +0300 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2014-05-28 13:08:54 -0400 |
commit | 5f2ccb94d2103969aabed9e57f1a0b0b691a3356 (patch) | |
tree | 410241aca166e739728e559ec89fd58b050e6877 /src/nvim/buffer.c | |
parent | f65028e5a0a4d83c741874ae831828a48baacf62 (diff) | |
download | rneovim-5f2ccb94d2103969aabed9e57f1a0b0b691a3356.tar.gz rneovim-5f2ccb94d2103969aabed9e57f1a0b0b691a3356.tar.bz2 rneovim-5f2ccb94d2103969aabed9e57f1a0b0b691a3356.zip |
Remove FEAT_CURSORBIND
Synchronization of cursor in split windows for diff mode
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r-- | src/nvim/buffer.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index ee606d9e80..2f5ae416b3 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -1111,8 +1111,7 @@ do_buffer ( /* Go to the other buffer. */ set_curbuf(buf, action); -#if defined(FEAT_LISTCMDS) \ - && (defined(FEAT_SCROLLBIND) || defined(FEAT_CURSORBIND)) +#ifdef FEAT_LISTCMDS if (action == DOBUF_SPLIT) { RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */ } |