Problem: Too many #ifdefs.
Solution: Graduate FEAT_LISTCMDS, no reason to leave out buffer commands.
-*various.txt* For Vim version 8.0. Last change: 2018 Mar 10
+*various.txt* For Vim version 8.0. Last change: 2018 Mar 29
VIM REFERENCE MANUAL by Bram Moolenaar
N *+libcall* |libcall()|
N *+linebreak* |'linebreak'|, |'breakat'| and |'showbreak'|
N *+lispindent* |'lisp'|
-N *+listcmds* Vim commands for the list of buffers |buffer-hidden|
+T *+listcmds* Vim commands for the list of buffers |buffer-hidden|
and argument list |:argdelete|
N *+localmap* Support for mappings local to a buffer |:map-local|
m *+lua* |Lua| interface
#include "vim.h"
-#if defined(FEAT_CMDL_COMPL) || defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL)
static char_u *buflist_match(regmatch_T *rmp, buf_T *buf, int ignore_case);
-# define HAVE_BUFLIST_MATCH
static char_u *fname_match(regmatch_T *rmp, char_u *name, int ignore_case);
-#endif
static void buflist_setfpos(buf_T *buf, win_T *win, linenr_T lnum, colnr_T col, int copy_options);
-static wininfo_T *find_wininfo(buf_T *buf, int skip_diff_buffer);
#ifdef UNIX
static buf_T *buflist_findname_stat(char_u *ffname, stat_T *st);
static int otherfile_buf(buf_T *buf, char_u *ffname, stat_T *stp);
}
}
-#if defined(FEAT_LISTCMDS) || defined(FEAT_TERMINAL) || defined(PROTO)
/*
* Go to another buffer. Handles the result of the ATTENTION dialog.
*/
int dir,
int count)
{
-# if defined(HAS_SWAP_EXISTS_ACTION)
+#if defined(HAS_SWAP_EXISTS_ACTION)
bufref_T old_curbuf;
set_bufref(&old_curbuf, curbuf);
swap_exists_action = SEA_DIALOG;
-# endif
+#endif
(void)do_buffer(*eap->cmd == 's' ? DOBUF_SPLIT : DOBUF_GOTO,
start, dir, count, eap->forceit);
-# if defined(HAS_SWAP_EXISTS_ACTION)
+#if defined(HAS_SWAP_EXISTS_ACTION)
if (swap_exists_action == SEA_QUIT && *eap->cmd == 's')
{
-# if defined(FEAT_EVAL)
+# if defined(FEAT_EVAL)
cleanup_T cs;
/* Reset the error/interrupt/exception state here so that
* aborting() returns FALSE when closing a window. */
enter_cleanup(&cs);
-# endif
+# endif
/* Quitting means closing the split window, nothing else. */
win_close(curwin, TRUE);
swap_exists_action = SEA_NONE;
swap_exists_did_quit = TRUE;
-# if defined(FEAT_EVAL)
+# if defined(FEAT_EVAL)
/* Restore the error/interrupt/exception state if not discarded by a
* new aborting error, interrupt, or uncaught exception. */
leave_cleanup(&cs);
-# endif
+# endif
}
else
handle_swap_exists(&old_curbuf);
-# endif
-}
#endif
+}
#if defined(HAS_SWAP_EXISTS_ACTION) || defined(PROTO)
/*
}
#endif
-#if defined(FEAT_LISTCMDS) || defined(PROTO)
/*
* do_bufdel() - delete or unload buffer(s)
*
return errormsg;
}
-#endif /* FEAT_LISTCMDS */
-
-#if defined(FEAT_LISTCMDS) || defined(FEAT_PYTHON) \
- || defined(FEAT_PYTHON3) || defined(PROTO)
static int empty_curbuf(int close_others, int forceit, int action);
need_mouse_correct = TRUE;
#endif
-#ifdef FEAT_LISTCMDS
/*
* delete buffer buf from memory and/or the list
*/
if (!forceit && bufIsChanged(buf))
{
-# if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
+#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG)
if ((p_confirm || cmdmod.confirm) && p_write)
{
dialog_changed(buf, FALSE);
return FAIL;
}
else
-# endif
+#endif
{
EMSGN(_("E89: No write since last change for buffer %ld (add ! to override)"),
buf->b_fnum);
if (win_split(0, 0) == FAIL)
return FAIL;
}
-#endif
/* go to current buffer - nothing to do */
if (buf == curbuf)
/* Go to the other buffer. */
set_curbuf(buf, action);
-#if defined(FEAT_LISTCMDS)
if (action == DOBUF_SPLIT)
{
RESET_BINDING(curwin); /* reset 'scrollbind' and 'cursorbind' */
}
-#endif
#if defined(FEAT_EVAL)
if (aborting()) /* autocmds may abort script processing */
return OK;
}
-#endif
/*
* Set current buffer to "buf". Executes autocommands and closes current
return NULL;
}
-#if defined(FEAT_LISTCMDS) || defined(FEAT_EVAL) || defined(FEAT_PERL) \
- || defined(PROTO)
/*
* Find file in buffer list by a regexp pattern.
* Return fnum of the found buffer.
EMSG2(_("E94: No matching buffer for %s"), pattern);
return match;
}
-#endif
#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
#endif /* FEAT_CMDL_COMPL */
-#ifdef HAVE_BUFLIST_MATCH
/*
* Check for a match on the file name for buffer "buf" with regprog "prog".
*/
return match;
}
-#endif
/*
* Find a file in the buffer list by buffer number.
return buflist_findfpos(buf)->lnum;
}
-#if defined(FEAT_LISTCMDS) || defined(PROTO)
/*
* List all known file names (for :files and :buffers command).
*/
ui_breakcheck();
}
}
-#endif
/*
* Get file name and line number for file 'fnum'.
vim_free(opened);
}
-# if defined(FEAT_LISTCMDS) || defined(PROTO)
/*
* Open a window for a number of buffers.
*/
}
}
}
-# endif /* FEAT_LISTCMDS */
static int chk_modeline(linenr_T, int);
return p;
}
-#if defined(FEAT_LISTCMDS) || defined(FEAT_SIGNS) || defined(PROTO)
/*
* skiptowhite_esc: Like skiptowhite(), but also skip escaped chars
*/
}
return p;
}
-#endif
/*
* Getdigits: Get a number from a string and skip over it.
#ifdef FEAT_LISP
"lispindent",
#endif
-#ifdef FEAT_LISTCMDS
"listcmds",
-#endif
#ifdef FEAT_LOCALMAP
"localmap",
#endif
fname_case(sfname, 0); /* set correct case for sfname */
#endif
-#ifdef FEAT_LISTCMDS
if ((flags & ECMD_ADDBUF) && (ffname == NULL || *ffname == NUL))
goto theend;
-#endif
if (ffname == NULL)
other_file = TRUE;
*/
if (other_file)
{
-#ifdef FEAT_LISTCMDS
if (!(flags & ECMD_ADDBUF))
-#endif
{
if (!cmdmod.keepalt)
curwin->w_alt_fnum = curbuf->b_fnum;
buf = buflist_findnr(fnum);
else
{
-#ifdef FEAT_LISTCMDS
if (flags & ECMD_ADDBUF)
{
linenr_T tlnum = 1L;
(void)buflist_new(ffname, sfname, tlnum, BLN_LISTED);
goto theend;
}
-#endif
buf = buflist_new(ffname, sfname, 0L,
BLN_CURBUF | ((flags & ECMD_SET_HELP) ? 0 : BLN_LISTED));
}
else /* !other_file */
{
- if (
-#ifdef FEAT_LISTCMDS
- (flags & ECMD_ADDBUF) ||
-#endif
- check_fname() == FAIL)
+ if ((flags & ECMD_ADDBUF) || check_fname() == FAIL)
goto theend;
oldbuf = (flags & ECMD_OLDBUF);
static int do_arglist(char_u *str, int what, int after);
static void alist_check_arg_idx(void);
static int editing_arg_idx(win_T *win);
-#ifdef FEAT_LISTCMDS
static int alist_add_list(int count, char_u **files, int after);
-#endif
#define AL_SET 1
#define AL_ADD 2
#define AL_DEL 3
int exp_count;
char_u **exp_files;
int i;
-#ifdef FEAT_LISTCMDS
char_u *p;
int match;
-#endif
int arg_escaped = TRUE;
/*
if (get_arglist(&new_ga, str, arg_escaped) == FAIL)
return FAIL;
-#ifdef FEAT_LISTCMDS
if (what == AL_DEL)
{
regmatch_T regmatch;
ga_clear(&new_ga);
}
else
-#endif
{
i = expand_wildcards(new_ga.ga_len, (char_u **)new_ga.ga_data,
&exp_count, &exp_files, EW_DIR|EW_FILE|EW_ADDSLASH|EW_NOTFOUND);
return FAIL;
}
-#ifdef FEAT_LISTCMDS
if (what == AL_ADD)
{
(void)alist_add_list(exp_count, exp_files, after);
vim_free(exp_files);
}
else /* what == AL_SET */
-#endif
alist_set(ALIST(curwin), exp_count, exp_files, FALSE, NULL, 0);
}
if (eap->cmdidx != CMD_args)
{
-#if defined(FEAT_LISTCMDS)
alist_unlink(ALIST(curwin));
if (eap->cmdidx == CMD_argglobal)
ALIST(curwin) = &global_alist;
else /* eap->cmdidx == CMD_arglocal */
alist_new();
-#else
- ex_ni(eap);
- return;
-#endif
}
if (!ends_excmd(*eap->arg))
*/
ex_next(eap);
}
- else
-#if defined(FEAT_LISTCMDS)
- if (eap->cmdidx == CMD_args)
-#endif
+ else if (eap->cmdidx == CMD_args)
{
/*
* ":args": list arguments.
}
}
}
-#if defined(FEAT_LISTCMDS)
else if (eap->cmdidx == CMD_arglocal)
{
garray_T *gap = &curwin->w_alist->al_ga;
++gap->ga_len;
}
}
-#endif
}
/*
}
}
-#if defined(FEAT_LISTCMDS) || defined(PROTO)
/*
* ":argedit"
*/
return -1;
}
-#endif /* FEAT_LISTCMDS */
-
#if defined(FEAT_CMDL_COMPL) || defined(PROTO)
/*
* Function given to ExpandGeneric() to obtain the possible arguments of the
}
#endif
+
#ifdef FEAT_EVAL
/*
* ":compiler[!] {name}"
}
#endif
-#if defined(FEAT_LISTCMDS) || defined(PROTO)
/*
* ":checktime [buffer]"
*/
}
no_check_timestamps = save_no_check_timestamps;
}
-#endif
#if (defined(HAVE_LOCALE_H) || defined(X_LOCALE)) \
&& (defined(FEAT_EVAL) || defined(FEAT_MULTI_LANG))
#endif
static void ex_autocmd(exarg_T *eap);
static void ex_doautocmd(exarg_T *eap);
-#ifdef FEAT_LISTCMDS
static void ex_bunload(exarg_T *eap);
static void ex_buffer(exarg_T *eap);
static void ex_bmodified(exarg_T *eap);
static void ex_bprevious(exarg_T *eap);
static void ex_brewind(exarg_T *eap);
static void ex_blast(exarg_T *eap);
-#else
-# define ex_bunload ex_ni
-# define ex_buffer ex_ni
-# define ex_bmodified ex_ni
-# define ex_bnext ex_ni
-# define ex_bprevious ex_ni
-# define ex_brewind ex_ni
-# define ex_blast ex_ni
-# define buflist_list ex_ni
-# define ex_checktime ex_ni
-#endif
-#if !defined(FEAT_LISTCMDS)
-# define ex_buffer_all ex_ni
-#endif
static char_u *getargcmd(char_u **);
static char_u *skip_cmd_arg(char_u *p, int rembs);
static int getargopt(exarg_T *eap);
static void ex_shell(exarg_T *eap);
static void ex_preserve(exarg_T *eap);
static void ex_recover(exarg_T *eap);
-#ifndef FEAT_LISTCMDS
-# define ex_argedit ex_ni
-# define ex_argadd ex_ni
-# define ex_argdelete ex_ni
-# define ex_listdo ex_ni
-#endif
static void ex_mode(exarg_T *eap);
static void ex_wrongmodifier(exarg_T *eap);
static void ex_find(exarg_T *eap);
goto doend;
}
-#ifdef FEAT_LISTCMDS
/*
* Accept buffer name. Cannot be used at the same time with a buffer
* number. Don't do this for a user command.
ea.addr_count = 1;
ea.arg = skipwhite(p);
}
-#endif
/* The :try command saves the emsg_silent flag, reset it here when
* ":silent! try" was used, it should only apply to :try itself. */
set_context_in_sign_cmd(xp, arg);
break;
#endif
-#ifdef FEAT_LISTCMDS
case CMD_bdelete:
case CMD_bwipeout:
case CMD_bunload:
xp->xp_context = EXPAND_BUFFERS;
xp->xp_pattern = arg;
break;
-#endif
#ifdef FEAT_USR_CMDS
case CMD_USER:
case CMD_USER_BUF:
do_modelines(0);
}
-#ifdef FEAT_LISTCMDS
/*
* :[N]bunload[!] [N] [bufname] unload buffer
* :[N]bdelete[!] [N] [bufname] delete buffer from buffer list
if (eap->do_ecmd_cmd != NULL)
do_cmdline_cmd(eap->do_ecmd_cmd);
}
-#endif
int
ends_excmd(int c)
}
}
-#if defined(FEAT_LISTCMDS) || defined(HAVE_DROP_FILE) || defined(PROTO)
/*
* Create a new argument list and use it for the current window.
*/
alist_init(curwin->w_alist);
}
}
-#endif
#if !defined(UNIX) || defined(PROTO)
/*
+ (eap->forceit ? ECMD_FORCEIT : 0)
/* after a split we can use an existing buffer */
+ (old_curwin != NULL ? ECMD_OLDBUF : 0)
-#ifdef FEAT_LISTCMDS
+ (eap->cmdidx == CMD_badd ? ECMD_ADDBUF : 0 )
-#endif
, old_curwin == NULL ? curwin : NULL) == FAIL)
{
/* Editing the file failed. If the window was split, close it. */
* +vertsplit Vertically split windows.
*/
-/*
- * +listcmds Vim commands for the buffer list and the argument
- * list. Without this there is no ":buffer" ":bnext",
- * ":bdel", ":argdelete", etc.
- */
-#ifdef FEAT_NORMAL
-# define FEAT_LISTCMDS
-#endif
-
/*
* +cmdhist Command line history.
*/
#endif
/*
- * The Netbeans feature requires +listcmds and +eval.
+ * The Netbeans feature requires +eval.
*/
-#if (!defined(FEAT_LISTCMDS) || !defined(FEAT_EVAL)) \
- && defined(FEAT_NETBEANS_INTG)
+#if !defined(FEAT_EVAL) && defined(FEAT_NETBEANS_INTG)
# undef FEAT_NETBEANS_INTG
#endif
#else
"-lispindent",
#endif
-#ifdef FEAT_LISTCMDS
"+listcmds",
-#else
- "-listcmds",
-#endif
#ifdef FEAT_LOCALMAP
"+localmap",
#else
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1650,
/**/
1649,
/**/