diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-09-21 06:23:56 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-09-21 06:23:56 +0000 |
commit | e8e01073071369d33ab4cf61be05bebe5a65566e (patch) | |
tree | 2c29b23bfb933e0fa40619f7d1fae430ff2c247e /usr.bin/vim/option.h | |
parent | 584e4bbf452da2934dbaf4b9dc09bd131a1d4cd7 (diff) |
update to vim 4.4beta
Diffstat (limited to 'usr.bin/vim/option.h')
-rw-r--r-- | usr.bin/vim/option.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/vim/option.h b/usr.bin/vim/option.h index 37b1e5de6b2..47d7578da73 100644 --- a/usr.bin/vim/option.h +++ b/usr.bin/vim/option.h @@ -1,4 +1,4 @@ -/* $OpenBSD: option.h,v 1.1 1996/09/07 21:40:27 downsj Exp $ */ +/* $OpenBSD: option.h,v 1.2 1996/09/21 06:23:15 downsj Exp $ */ /* vi:set ts=4 sw=4: * * VIM - Vi IMproved by Bram Moolenaar @@ -199,7 +199,9 @@ EXTERN long p_so; /* scroll offset */ EXTERN char_u *p_sections; /* sections */ EXTERN int p_secure; /* do .exrc and .vimrc in secure mode */ EXTERN char_u *p_sh; /* name of shell to use */ +EXTERN char_u *p_shcf; /* flag to shell to execute one command */ EXTERN char_u *p_sp; /* string for output of make */ +EXTERN char_u *p_shq; /* quote character(s) for shell */ EXTERN char_u *p_srr; /* string for output of filter */ EXTERN long p_st; /* type of shell */ EXTERN int p_sr; /* shift round off (for < and >) */ @@ -224,6 +226,7 @@ EXTERN int p_to; /* tilde is an operator */ EXTERN int p_timeout; /* mappings entered within one second */ EXTERN long p_tm; /* timeoutlen (msec) */ EXTERN int p_title; /* set window title if possible */ +EXTERN long p_titlelen; /* length of window title in % of Columns */ EXTERN int p_ttimeout; /* key codes entered within one second */ EXTERN long p_ttm; /* key code timeoutlen (msec) */ EXTERN int p_tbi; /* 'ttybuiltin' use builtin termcap first */ |