~ubuntu-branches/debian/sid/neovim/sid

« back to all changes in this revision

Viewing changes to src/nvim/globals.h

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2016-04-18 21:42:19 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20160418214219-1e6d4o1fwqarzk46
Tags: 0.1.3-1
* New upstream release.  (Closes: #820562)
* debian/control:
  + Remove unnecessary luarocks Build-Depends
  + Add libkvm-dev Build-Depends for kfreebsd-*
  + Add python(3)-neovim to Recommends.  (Closes: #812737)
  + Declare compiance with policy 3.9.8, no changes needed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
# define VIMRC_FILE     ".nvimrc"
101
101
#endif
102
102
 
 
103
typedef enum {
 
104
  kNone  = -1,
 
105
  kFalse = 0,
 
106
  kTrue  = 1,
 
107
} TriState;
 
108
 
103
109
/* Values for "starting" */
104
110
#define NO_SCREEN       2       /* no screen updating yet */
105
111
#define NO_BUFFERS      1       /* not all buffers loaded yet */
208
214
 * stop looking for matches. */
209
215
EXTERN int compl_interrupted INIT(= FALSE);
210
216
 
 
217
// Set when doing something for completion that may call edit() recursively,
 
218
// which is not allowed. Also used to disable folding during completion
 
219
EXTERN int compl_busy INIT(= false);
 
220
 
211
221
/* List of flags for method of completion. */
212
222
EXTERN int compl_cont_status INIT(= 0);
213
223
# define CONT_ADDING    1       /* "normal" or "adding" expansion */
912
922
EXTERN int KeyStuffed;                   // TRUE if current char from stuffbuf
913
923
EXTERN int maptick INIT(= 0);            // tick for each non-mapped char
914
924
 
915
 
EXTERN char_u chartab[256];             /* table used in charset.c; See
916
 
                                           init_chartab() for explanation */
 
925
EXTERN uint8_t chartab[256];             // table used in charset.c; See
 
926
                                         // init_chartab() for explanation
917
927
 
918
928
EXTERN int must_redraw INIT(= 0);           /* type of redraw necessary */
919
929
EXTERN int skip_redraw INIT(= FALSE);       /* skip redraw once */