# speaktcleditrc version 1.0: 
	# A speaking text editor. Based on
	# tcledit: a linux console based editor in pure tcl
	# 2001-05-30 Original code by Steve Redler IV
	# 2006-06-23 Modified by Adly Abdulah
	# 2007-10-21 Modified for speach by Joe Kamphaus 

# This file is part of the Linux Speaks to the Blind Project
# speaking text editor
# Copyright (C) 2007 by Joe Kamphaus
# More information can be found at www.joekamphaus.net


# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.






# .speaktcleditrc
# Setup starting preferences for the speaktcledit console editor
# .speaktcleditrc must be written in the tcl language syntax
# because it is parsed using the "source" command.


######################################
# Text to speech engine
######################################
# To use cepstral un-comment:
# set tts cepstral

# To use festival un-comment: (or not as this is the default)
# set tts festival
 
# To use flite tts un-comment
# set tts flite

# Other tts commands may work here but none have been tested.

######################################

# To turn off speeking status prompts un-comment
# set say_status 0

######################################

# To turn off confirmation of file saving un-comment
# set confirm = 0

######################################
# To turn off speech when speaktcledit starts set this to 0
  set defSpeakFlag 1
  
  
######################################
  # Define default edit speak mode
  # Modes are:
  # 0 : Edit mode off.
  # 1 : speak one word at a time as you type
  # 2 : speak one character at a time as you type.
  
  set defSpeakMode 1

######################################

# To turn on the Auto Spell Check Feature upon startup un-comment
# set auto_spell_check 1

######################################

# To change the print command:
# To use lpr un-comment
# set print_command {lpr}

# The default uses a2ps because it formats text so nicely
# set print_command {a2ps -q}