| author | wenzelm | 
| Sat, 06 Jun 2009 19:58:10 +0200 | |
| changeset 31471 | e3987b32e401 | 
| parent 28504 | 7ad7d7d6df47 | 
| child 33684 | 29d8aaeb56e5 | 
| permissions | -rwxr-xr-x | 
| 21301 | 1  | 
#!/usr/bin/env bash  | 
2  | 
#  | 
|
3  | 
# $Id$  | 
|
4  | 
# Author: Makarius  | 
|
5  | 
#  | 
|
6  | 
# DESCRIPTION: Update standard keyword files.  | 
|
7  | 
||
| 
28504
 
7ad7d7d6df47
simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
 
wenzelm 
parents: 
28481 
diff
changeset
 | 
8  | 
ISABELLE_HOME="$(isabelle getenv -b ISABELLE_HOME)"  | 
| 
 
7ad7d7d6df47
simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
 
wenzelm 
parents: 
28481 
diff
changeset
 | 
9  | 
LOG="$(isabelle getenv -b ISABELLE_OUTPUT)"/log  | 
| 23694 | 10  | 
|
| 24884 | 11  | 
|
12  | 
## Emacs ProofGeneral  | 
|
13  | 
||
14  | 
cd "$ISABELLE_HOME/etc"  | 
|
15  | 
||
| 
28504
 
7ad7d7d6df47
simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
 
wenzelm 
parents: 
28481 
diff
changeset
 | 
16  | 
isabelle keywords -t emacs \  | 
| 28481 | 17  | 
"$LOG/Pure.gz" "$LOG/Pure-ProofGeneral.gz" "$LOG/HOL.gz" "$LOG/HOLCF.gz" \  | 
| 25175 | 18  | 
"$LOG/IOA.gz" "$LOG/HOL-Nominal.gz" "$LOG/HOL-Statespace.gz"  | 
| 
24878
 
7ed3077528b6
use isatool keywords -- generate from logs instead of session images;
 
wenzelm 
parents: 
23694 
diff
changeset
 | 
19  | 
|
| 
28504
 
7ad7d7d6df47
simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
 
wenzelm 
parents: 
28481 
diff
changeset
 | 
20  | 
isabelle keywords -t emacs -k ZF \  | 
| 24884 | 21  | 
"$LOG/Pure.gz" "$LOG/Pure-ProofGeneral.gz" "$LOG/FOL.gz" "$LOG/ZF.gz"  | 
22  | 
||
23  | 
||
24  | 
## jEdit  | 
|
25  | 
||
26  | 
cd "$ISABELLE_HOME/lib/jedit"  | 
|
27  | 
||
| 
28504
 
7ad7d7d6df47
simplified main Isabelle executables: removed Isabelle and isabelle (replaced by isabelle-process), renamed isatool to isabelle;
 
wenzelm 
parents: 
28481 
diff
changeset
 | 
28  | 
isabelle keywords -t jedit \  | 
| 28481 | 29  | 
"$LOG/Pure.gz" "$LOG/HOL.gz" "$LOG/HOLCF.gz" "$LOG/IOA.gz" "$LOG/HOL-Nominal.gz" \  | 
30  | 
"$LOG/HOL-Statespace.gz" "$LOG/FOL.gz" "$LOG/ZF.gz"  |