File: ab_rexx.fte

package info (click to toggle)
fte 0.50.2b6-20110708-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 3,768 kB
  • sloc: cpp: 47,985; ansic: 2,795; sh: 112; makefile: 71; perl: 29
file content (74 lines) | stat: -rw-r--r-- 1,551 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# FTE Abbrevs for REXX mode
# by Michael DeBusk
# debu4335@eclipsetel.com
# Revision March 19, 2001

eventmap REXX {
    # Header Comment
    # Note: If the environment variable USER is set,
    # This macro will insert the contents after the
    # word "Author:" and leave the cursor after
    # "Purpose:". If it is not set, the macro will
    # fail after "Author:".
    abbrev 'headx' {
        KillWordPrev;
        REXX_Heading;
        Fail; # do not insert typed character
    }

    abbrev 'utilx' {
        KillWordPrev;
        REXX_RexxUtil;
        Fail; # do not insert typed character
    }

%if(OS_OS2)
    abbrev 'sockx' {
        KillWordPrev;
        REXX_RxSock;
        Fail; # do not insert typed character
    }

    abbrev 'ftpx' {
        KillWordPrev;
        REXX_RxFTP;
        Fail; # do not insert typed character
    }
%endif

    abbrev 'dox' {
        KillWordPrev;
        REXX_Do;
        Fail; # do not insert typed character
    }

    abbrev 'dux' {
        KillWordPrev;
        REXX_DoUntil;
        Fail; # do not insert typed character
    }

    abbrev 'dwx' {
        KillWordPrev;
        REXX_DoWhile;
        Fail; # do not insert typed character
    }

    abbrev 'dfx' {
        KillWordPrev;
        REXX_DoForever;
        Fail; # do not insert typed character
    }

    abbrev 'ifx' {
        KillWordPrev;
        REXX_If;
        Fail; # do not insert typed character
    }
    
    abbrev 'selx' {
        KillWordPrev;
        REXX_Select;
        Fail; # do not insert typed character
    }
}