! The ini file is used to customize EVEX.  It is read automatically whenever
! EVEX starts up if it is in [user.com] where "user" is the users' name.
! The file should contain VAXTPU procedures and define_key and other executable
! statements.
! Use of an ini file is optional.
! This is a sample ini file.

! Key for alternate LaTeX keyboard
!define_key ("eve_alternate_key('')", key_name(ctrl_d_key),
!	"alternate_key"); ! VT100, MAC

! Key to turn off range selected for RUN of LaTeX buffer
!define_key("evx$x_latex_range:=0;", key_name("o",shift_key),
!	"latex_range_off");

! Key to shift select range to indent column in Fortran buffer
!define_key("eve_modify('s','i')", key_name(f18), "modify");

!Keys for ASCII and buffer/file procedures
!define_key('eve_ascii_character("")', key_name("a",shift_key),
!	"ascii_character");
!define_key('eve_list_files', key_name("f",shift_key),
!	"list_files");
!define_key('eve_gfile', key_name("g",shift_key),
!	"gfile");
!define_key('eve_list_buffers', key_name("b",shift_key),
!	"list_buffers");

!Keys to type SEARCH non-printing characters on non-VT2XX terminals
!define_key('copy_text(ascii(171))', key_name("<",shift_key),
!	"wild_beginning_of_line");
!define_key('copy_text(ascii(187))', key_name(">",shift_key),
!	"wild_end_of_line");
!define_key('copy_text(ascii(163))', key_name("l",shift_key),
!	"wild_literal");
!define_key('copy_text(ascii(168))', key_name("v",shift_key),
!	"wild_fortran_variable");
!define_key('copy_text(ascii(167))', key_name("w",shift_key),
!	"wild_word");
!define_key('copy_text(ascii(182))', key_name("p",shift_key),
!	"wild_pattern");

! Uncomment and modify these lines to customize Fortran mode
!evx$x_first_column := 7;	!Leftmost indent column
!evx$x_indent_column :=
!	evx$x_first_column;	!Initial indent column
!evx$x_tab_space := 2;		!Tab spacing
!evx$x_cont_char := "*";		!Continuation character
!evx$x_comment_char := "c";	!Comment character

