diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-10-16 07:05:13 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-10-16 07:05:13 -0700 |
commit | a039c378390c2311e85174e3179692a453572dc6 (patch) | |
tree | f2a3fbcd4ee7f2a1d2b9468ae9c70ba7dfcc3582 /txr.vim | |
parent | 8eb4688b095bbdadfa05d0b853df662ac653e3d5 (diff) | |
download | txr-a039c378390c2311e85174e3179692a453572dc6.tar.gz txr-a039c378390c2311e85174e3179692a453572dc6.tar.bz2 txr-a039c378390c2311e85174e3179692a453572dc6.zip |
New @(line) and @(chr) directives.
* match.c (line_s): New variable.
(h_chr, v_line): New static functions.
(syms_init): line_s initialized.
(dir_tables_init): Register v_line and h_chr.
* match.h (line_s): Declared.
* txr.1: Document @(line) and @(chr) directives.
* txr.vim: Regenerated.
Diffstat (limited to 'txr.vim')
-rw-r--r-- | txr.vim | 24 |
1 files changed, 12 insertions, 12 deletions
@@ -21,18 +21,18 @@ setlocal iskeyword=a-z,A-Z,48-57,!,$,&,*,+,-,<,=,>,?,\\,_,~,/ syn keyword txr_keyword contained accept all and assert syn keyword txr_keyword contained bind block cases cat -syn keyword txr_keyword contained catch choose close coll -syn keyword txr_keyword contained collect defex deffilter define -syn keyword txr_keyword contained do elif else end -syn keyword txr_keyword contained eof eol fail filter -syn keyword txr_keyword contained finally flatten forget freeform -syn keyword txr_keyword contained fuzz gather if last -syn keyword txr_keyword contained load local maybe merge -syn keyword txr_keyword contained next none or output -syn keyword txr_keyword contained rebind rep repeat require -syn keyword txr_keyword contained set skip some text -syn keyword txr_keyword contained throw trailer try until -syn keyword txr_keyword contained var +syn keyword txr_keyword contained catch choose chr close +syn keyword txr_keyword contained coll collect defex deffilter +syn keyword txr_keyword contained define do elif else +syn keyword txr_keyword contained end eof eol fail +syn keyword txr_keyword contained filter finally flatten forget +syn keyword txr_keyword contained freeform fuzz gather if +syn keyword txr_keyword contained last line load local +syn keyword txr_keyword contained maybe merge next none +syn keyword txr_keyword contained or output rebind rep +syn keyword txr_keyword contained repeat require set skip +syn keyword txr_keyword contained some text throw trailer +syn keyword txr_keyword contained try until var syn keyword txl_keyword contained * *args* *e* *flo-dig* syn keyword txl_keyword contained *flo-epsilon* *flo-max* *flo-min* *full-args* |