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

« back to all changes in this revision

Viewing changes to src/nvim/buffer_defs.h

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2016-02-20 22:41:32 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: package-import@ubuntu.com-20160220224132-e24n8lh3yo5ylt23
Tags: upstream-0.1.2
ImportĀ upstreamĀ versionĀ 0.1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
612
612
  char_u      *b_p_cfu;         /* 'completefunc' */
613
613
  char_u      *b_p_ofu;         /* 'omnifunc' */
614
614
  int b_p_eol;                  /* 'endofline' */
 
615
  int b_p_fixeol;               /* 'fixendofline' */
615
616
  int b_p_et;                   /* 'expandtab' */
616
617
  int b_p_et_nobin;             /* b_p_et saved for binary mode */
617
618
  char_u      *b_p_fenc;        /* 'fileencoding' */
750
751
  Terminal *terminal;           // Terminal instance associated with the buffer
751
752
 
752
753
  dict_T *additional_data;      // Additional data from shada file if any.
 
754
 
 
755
  int b_mapped_ctrl_c;          // modes where CTRL-C is mapped
753
756
};
754
757
 
755
758
/*