view j/system/config/base.cfg @ 0:e0bbaa717f41 draft default tip

lol J
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Mon, 25 Nov 2013 11:56:30 -0500
parents
children
line wrap: on
line source

NB. base config
NB.
NB. interpreter config:
NB. BoxForm 0=linedraw 1=ascii (9!:7)
NB. BoxPos boxed output positioning (9!:17)
NB.
NB. DisplayForm output display form (9!:3)
NB.   The representation(s) to used for default displays of non-nouns.
NB.   1 atomic, 2 boxed, 4 tree, 5 linear, 6 paren.
NB.
NB. MemoryLimit memory limit (9!:21)
NB. Output output definition (9!:37)
NB.
NB. recent lists:
NB. RecentMax max entries in lists
NB.
NB. script formatting:
NB. Format is a numeric list:
NB.   0   0=no format, 1=do format
NB.   1   soft tab width (0=hard tab)
NB.   2   if remove multiple spaces in code
NB.   3   if indent explicit definition
NB.   4   if indent select
NB.
NB. Tags boxed list of tags files
NB.
NB. UserDict: boxed list of user dictionary for codecompletion
NB.   each dictionary contains one name per line as proposals for codecompletion
NB.   when running gtkide, gtkdocdict will be handled automatically and need not be included here
NB.   eg. '~/french.txt';'~/russian.txt'
NB.
NB. external programs:
NB. Browser web browser, used in Help
NB. Browser_nox browser (without X), used in Help
NB. EPSReader read encapsulated postscript files
NB. PDFReader read Adobe pdf files
NB. XDiff external differencing program
NB. Editor external editor program, %f=file name  %l=line number
NB. Editor_nox external editor program (without X), used in Linux only

BoxPos=: 0 0
DirTreeX=: 'release'
DisplayForm=: 5
Format=: 1 2 1 0 0
MemoryLimit=: _
Output=: 0 256 0 222
RecentMax=: 15
Tags=: '~Projects/tags';'~install/tags';'~addons/api/gtkinclude/tags'
UserDict=: ''

NB. =========================================================
NB. host dependent configs:
3 : 0''
select. UNAME
case. 'Darwin' do.
  BoxForm=: 0
  Browser=: ''
  Browser_nox=: ''
  EPSReader=: ''
  PDFReader=: ''
  XDiff=: ''
  Editor=: ''
  Editor_nox=: ''
case. 'Linux' do.
  BoxForm=: 0
  Browser=: ''
  Browser_nox=: '/usr/bin/w3m'
  EPSReader=: '/usr/bin/evince'
  PDFReader=: '/usr/bin/evince'
  XDiff=: '/usr/bin/meld'
  Editor=: 'geany +%l %f'
  Editor_nox=: 'vi -c%l %f'
case. 'Win' do.
  BoxForm=: 1
  Browser=: ''
  Browser_nox=: ''
  EPSReader=: 'c:/program files/ghostgum/gsview/gsview32.exe -e'
  PDFReader=: 'c:/program files/ghostgum/gsview/gsview32.exe -e'
  XDiff=: 'c:/program files/winmerge/winmergeu.exe'
  Editor=: 'notepad %f'
  Editor_nox=: ''
end.
)