From 2e1217da4617c832afcd7ca90c88b06c200dc23b Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Wed, 9 Nov 2016 12:08:49 +0100 Subject: 'inccommand': buftype=nofile, restore cursor/view - Use a standard scratch buffer instead of a new 'buftype', functions like curbufIsChanged() already have special handling for scratch bufs. - Cleanup some stuff from the previous merge. - Add support for :smagic, :snomagic. Closes #5578 --- src/nvim/ex_cmds.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/nvim/ex_cmds.h') diff --git a/src/nvim/ex_cmds.h b/src/nvim/ex_cmds.h index ccb2202edb..243b11255e 100644 --- a/src/nvim/ex_cmds.h +++ b/src/nvim/ex_cmds.h @@ -14,7 +14,6 @@ #define ECMD_OLDBUF 0x04 // use existing buffer if it exists #define ECMD_FORCEIT 0x08 // ! used in Ex command #define ECMD_ADDBUF 0x10 // don't edit, just add to buffer list -#define ECMD_RESERVED_BUFNR 0x20 // bufnr argument is reserved bufnr /* for lnum argument in do_ecmd() */ -- cgit