From 50429aee6edf6f2bfd2d74911179445ee66282a2 Mon Sep 17 00:00:00 2001 From: Hinidu Date: Sat, 12 Apr 2014 00:05:36 +0300 Subject: Remove FEAT_LISTCMDS Vim commands for the buffer list and the argument list: ":buffer", ":bnext", ":bdel", ":argdelete", etc. --- src/nvim/buffer.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src') diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index 2f5ae416b3..d3dcb375b2 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -1111,11 +1111,9 @@ do_buffer ( /* Go to the other buffer. */ set_curbuf(buf, action); -#ifdef FEAT_LISTCMDS if (action == DOBUF_SPLIT) { RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */ } -#endif if (aborting()) /* autocmds may abort script processing */ return FAIL; -- cgit