mirror of
https://github.com/neovim/neovim.git
synced 2025-09-19 17:58:18 +00:00
Remove FEAT_EX_EXTRA
Vim's extra Ex commands: :center, :left, :normal, :retab and :right
This commit is contained in:
@@ -107,7 +107,6 @@
|
||||
#define FEAT_CONCEAL
|
||||
#define FEAT_CSCOPE
|
||||
#define FEAT_DIGRAPHS
|
||||
#define FEAT_EX_EXTRA
|
||||
#define FEAT_FIND_ID
|
||||
#define FEAT_FKMAP
|
||||
#define FEAT_FLOAT
|
||||
|
@@ -748,19 +748,11 @@ int vim_strnsize(char_u *s, int len)
|
||||
return ptr2cells(p); \
|
||||
}
|
||||
|
||||
#if defined(FEAT_VREPLACE) \
|
||||
|| defined(FEAT_EX_EXTRA) \
|
||||
|| defined(FEAT_GUI) \
|
||||
|| defined(FEAT_VIRTUALEDIT) \
|
||||
|| defined(PROTO)
|
||||
int chartabsize(char_u *p, colnr_T col)
|
||||
{
|
||||
RET_WIN_BUF_CHARTABSIZE(curwin, curbuf, p, col)
|
||||
}
|
||||
|
||||
#endif /* if defined(FEAT_VREPLACE) || defined(FEAT_EX_EXTRA) ||
|
||||
defined(FEAT_GUI) || defined(FEAT_VIRTUALEDIT) || defined(PROTO) */
|
||||
|
||||
static int win_chartabsize(win_T *wp, char_u *p, colnr_T col)
|
||||
{
|
||||
RET_WIN_BUF_CHARTABSIZE(wp, wp->w_buffer, p, col)
|
||||
|
Reference in New Issue
Block a user