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

« back to all changes in this revision

Viewing changes to src/nvim/pos.h

  • Committer: Package Import Robot
  • Author(s): James McCoy
  • Date: 2016-04-18 21:42:19 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: package-import@ubuntu.com-20160418214219-6lf1w0zadujghas7
Tags: upstream-0.1.3
ImportĀ upstreamĀ versionĀ 0.1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#define NVIM_POS_H
3
3
 
4
4
typedef long linenr_T;         // line number type
5
 
typedef int colnr_T;           // column number type
 
5
 
 
6
/// Column number type
 
7
typedef int colnr_T;
 
8
/// Format used to print values which have colnr_T type
 
9
#define PRIdCOLNR "d"
6
10
 
7
11
#define MAXLNUM 0x7fffffff     // maximum (invalid) line number
8
12
#define MAXCOL  0x7fffffff     // maximum column number, 31 bits