octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: default ~/.octaverc template


From: Keith Goodman
Subject: Re: default ~/.octaverc template
Date: Fri, 29 Apr 2005 12:19:35 -0700

Here's a revised proposal for an ~/.octaverc template to be installed
in a users home directory the first time they run Octave if an
~/.octaverc file does not already exist.

## Local startup file for Octave. This file is typically used to
## customize the behavior of Octave.
##
## This file should contain any commands that should be executed each
## time Octave starts. The commands in this file take precedence over
## the commands in the system-wide Octave startup file.


## Remove extra blank space around column number labels. The default
## value is 'format loose'.
##
## format compact;

## Output precision (default is 5)
##
## output_precision = 5;

## Set command-line prompt. Default is PS1 = "\s:\#> ";
## 
## PS1 = "\#> ";
## PS1 = "> ";

## Do not warn if divide by zero
##
## warn_divide_by_zero = 0;

## Suppress verbose help message.
##
## suppress_verbose_help_message = 1;

## Turn off pagination.
##
## more off;

## Do not save all current variables to the file "octave-core" if Octave
## crashes or receives a hangup, terminate or similar signal.
##
## crash_dumps_octave_core = 0;

## What is the maximum number of commands the history file should contain?
## The default value is 1024.
##
## history_size = 2048;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]