forked from aniani/vim
updated for version 7.0063
This commit is contained in:
parent
dbc08a3459
commit
fc73515f7b
@ -381,31 +381,31 @@ os_win32.txt:
|
||||
touch os_win32.txt
|
||||
|
||||
vim-it.UTF-8.1: vim-it.1
|
||||
iconv -f latin1 -t utf-8 $< >$@
|
||||
iconv -f latin1 -t utf-8 $> >$@
|
||||
|
||||
evim-it.UTF-8.1: evim-it.1
|
||||
iconv -f latin1 -t utf-8 $< >$@
|
||||
iconv -f latin1 -t utf-8 $> >$@
|
||||
|
||||
vimdiff-it.UTF-8.1: vimdiff-it.1
|
||||
iconv -f latin1 -t utf-8 $< >$@
|
||||
iconv -f latin1 -t utf-8 $> >$@
|
||||
|
||||
vimtutor-it.UTF-8.1: vimtutor-it.1
|
||||
iconv -f latin1 -t utf-8 $< >$@
|
||||
iconv -f latin1 -t utf-8 $> >$@
|
||||
|
||||
xxd-it.UTF-8.1: xxd-it.1
|
||||
iconv -f latin1 -t utf-8 $< >$@
|
||||
iconv -f latin1 -t utf-8 $> >$@
|
||||
|
||||
vim-ru.UTF-8.1: vim-ru.1
|
||||
iconv -f KOI8-R -t utf-8 $< >$@
|
||||
iconv -f KOI8-R -t utf-8 $> >$@
|
||||
|
||||
evim-ru.UTF-8.1: evim-ru.1
|
||||
iconv -f KOI8-R -t utf-8 $< >$@
|
||||
iconv -f KOI8-R -t utf-8 $> >$@
|
||||
|
||||
vimdiff-ru.UTF-8.1: vimdiff-ru.1
|
||||
iconv -f KOI8-R -t utf-8 $< >$@
|
||||
iconv -f KOI8-R -t utf-8 $> >$@
|
||||
|
||||
vimtutor-ru.UTF-8.1: vimtutor-ru.1
|
||||
iconv -f KOI8-R -t utf-8 $< >$@
|
||||
iconv -f KOI8-R -t utf-8 $> >$@
|
||||
|
||||
xxd-ru.UTF-8.1: xxd-ru.1
|
||||
iconv -f KOI8-R -t utf-8 $< >$@
|
||||
iconv -f KOI8-R -t utf-8 $> >$@
|
||||
|
@ -465,7 +465,7 @@ Type ":help" in
|
||||
to get started.
|
||||
Type ":help subject" to get help on a specific subject.
|
||||
For example: ":help ZZ" to get help for the "ZZ" command.
|
||||
Use <Tab> and CTRL-D to complete subjects (":help cmdline\-completion").
|
||||
Use <Tab> and CTRL\-D to complete subjects (":help cmdline\-completion").
|
||||
Tags are present to jump from one place to another (sort of hypertext links,
|
||||
see ":help").
|
||||
All documentation files can be viewed in this way, for example
|
||||
|
@ -564,6 +564,7 @@ vimobj = \
|
||||
$(OBJDIR)\regexp.obj \
|
||||
$(OBJDIR)\screen.obj \
|
||||
$(OBJDIR)\search.obj \
|
||||
$(OBJDIR)\spell.obj \
|
||||
$(OBJDIR)\syntax.obj \
|
||||
$(OBJDIR)\tag.obj \
|
||||
$(OBJDIR)\term.obj \
|
||||
|
@ -1,6 +1,6 @@
|
||||
#
|
||||
# Makefile for VIM on Win32, using Cygnus gcc
|
||||
# Last updated by Dan Sharp. Last Change: 2005 Jan 29
|
||||
# Last updated by Dan Sharp. Last Change: 2005 Mar 21
|
||||
#
|
||||
# Also read INSTALLpc.txt!
|
||||
#
|
||||
@ -424,6 +424,7 @@ OBJ = \
|
||||
$(OUTDIR)/regexp.o \
|
||||
$(OUTDIR)/screen.o \
|
||||
$(OUTDIR)/search.o \
|
||||
$(OUTDIR)/spell.o \
|
||||
$(OUTDIR)/syntax.o \
|
||||
$(OUTDIR)/tag.o \
|
||||
$(OUTDIR)/term.o \
|
||||
|
@ -3874,6 +3874,7 @@ check_scrollbind(topline_diff, leftcol_diff)
|
||||
nv_ignore(cap)
|
||||
cmdarg_T *cap;
|
||||
{
|
||||
cap->retval |= CA_COMMAND_BUSY; /* don't call edit() now */
|
||||
}
|
||||
|
||||
/*
|
||||
@ -8675,6 +8676,7 @@ nv_cursorhold(cap)
|
||||
{
|
||||
apply_autocmds(EVENT_CURSORHOLD, NULL, NULL, FALSE, curbuf);
|
||||
did_cursorhold = TRUE;
|
||||
cap->retval |= CA_COMMAND_BUSY; /* don't call edit() now */
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -20,6 +20,8 @@ int vim_isIDc __ARGS((int c));
|
||||
int vim_iswordc __ARGS((int c));
|
||||
int vim_iswordp __ARGS((char_u *p));
|
||||
int vim_iswordc_buf __ARGS((char_u *p, buf_T *buf));
|
||||
void init_spell_chartab __ARGS((void));
|
||||
int spell_iswordc __ARGS((char_u *p));
|
||||
int vim_isfilec __ARGS((int c));
|
||||
int vim_isprintc __ARGS((int c));
|
||||
int vim_isprintc_strict __ARGS((int c));
|
||||
|
949
src/spell.c
949
src/spell.c
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user