comparison src/beval.h @ 14175:2ad722003b36 v8.1.0105

patch 8.1.0105: all tab stops are the same commit https://github.com/vim/vim/commit/04958cbaf25eea27eceedaa987adfb354ad5f7fd Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 23 19:23:02 2018 +0200 patch 8.1.0105: all tab stops are the same Problem: All tab stops are the same. Solution: Add the variable tabstop feature. (Christian Brabandt, closes #2711)
author Christian Brabandt <cb@256bit.org>
date Sat, 23 Jun 2018 19:30:07 +0200
parents 0ebade0c0ab2
children e3dfd25b0679
comparison
equal deleted inserted replaced
14174:d36eedd19166 14175:2ad722003b36
69 # endif 69 # endif
70 void (*msgCB)(struct BalloonEvalStruct *, int); 70 void (*msgCB)(struct BalloonEvalStruct *, int);
71 void *clientData; /* For callback */ 71 void *clientData; /* For callback */
72 #endif 72 #endif
73 73
74 int ts; /* tabstop setting for this buffer */ 74 int ts; // tabstop setting for this buffer
75 #ifdef FEAT_VARTABS
76 int *vts; // vartabstop setting for this buffer
77 #endif
75 char_u *msg; 78 char_u *msg;
76 } BalloonEval; 79 } BalloonEval;
77 80
78 #define EVAL_OFFSET_X 15 /* displacement of beval topleft corner from pointer */ 81 #define EVAL_OFFSET_X 15 /* displacement of beval topleft corner from pointer */
79 #define EVAL_OFFSET_Y 10 82 #define EVAL_OFFSET_Y 10