Convert scheme.kak expensive shell scope to awk
This commit is contained in:
parent
8587ecaeb4
commit
a35a1591d0
|
@ -25,88 +25,94 @@ add-highlighter shared/scheme/quoted-form region -recurse "\(" "'\(" "\)" fill v
|
||||||
add-highlighter shared/scheme/code/ regex (#t|#f) 0:value
|
add-highlighter shared/scheme/code/ regex (#t|#f) 0:value
|
||||||
add-highlighter shared/scheme/code/ regex \b[0-9]+\.[0-9]*\b 0:value
|
add-highlighter shared/scheme/code/ regex \b[0-9]+\.[0-9]*\b 0:value
|
||||||
|
|
||||||
evaluate-commands %sh{
|
evaluate-commands %sh{ exec awk -f - <<'EOF'
|
||||||
|
BEGIN {
|
||||||
# Primitive expressions that cannot be derived.
|
# Primitive expressions that cannot be derived.
|
||||||
keywords='define do let let* letrec if cond case and or begin lambda delay delay-force set!'
|
split("define do let let* letrec if cond case and or begin lambda delay delay-force set!", keywords);
|
||||||
|
|
||||||
# Macro expressions.
|
# Macro expressions.
|
||||||
meta="define-syntax let-syntax letrec-syntax syntax-rules syntax-case"
|
split("define-syntax let-syntax letrec-syntax syntax-rules syntax-case", meta);
|
||||||
|
|
||||||
# Basic operators.
|
# Basic operators.
|
||||||
operators='* + - ... / < <= = => > >='
|
split("* + - ... / < <= = => > >=", operators);
|
||||||
|
|
||||||
# Procedures that create a base type and their predicates (for easier type checking)
|
# Procedures that create a base type and their predicates (for easier type checking)
|
||||||
types="list vector bytevector cons string boolean? list? pair?
|
split("list vector bytevector cons string boolean? list? pair? "\
|
||||||
vector? bytevector? string? char? complex? eof-object? input-port?
|
"vector? bytevector? string? char? complex? eof-object? input-port? "\
|
||||||
null? number? output-port? procedure? symbol?"
|
"null? number? output-port? procedure? symbol?", types);
|
||||||
|
|
||||||
# R5RS available procedures
|
# R5RS available procedures
|
||||||
builtins="abs acos angle append apply asin assoc assq assv atan
|
split("abs acos angle append apply asin assoc assq assv atan "\
|
||||||
caaaar caaadr caaar caadar caaddr caadr
|
"caaaar caaadr caaar caadar caaddr caadr "\
|
||||||
caar cadaar cadadr cadar caddar cadddr caddr cadr
|
"caar cadaar cadadr cadar caddar cadddr caddr cadr "\
|
||||||
call-with-current-continuation call-with-input-file
|
"call-with-current-continuation call-with-input-file "\
|
||||||
call-with-output-file call-with-values car cdaaar cdaadr cdaar
|
"call-with-output-file call-with-values car cdaaar cdaadr cdaar "\
|
||||||
cdadar cdaddr cdadr cdar cddaar cddadr cddar cdddar cddddr cdddr
|
"cdadar cdaddr cdadr cdar cddaar cddadr cddar cdddar cddddr cdddr "\
|
||||||
cddr cdr ceiling char->integer char-alphabetic? char-ci<=?
|
"cddr cdr ceiling char->integer char-alphabetic? char-ci<=? "\
|
||||||
char-ci<? char-ci=? char-ci>=? char-ci>? char-downcase
|
"char-ci<? char-ci=? char-ci>=? char-ci>? char-downcase "\
|
||||||
char-lower-case? char-numeric? char-ready? char-upcase
|
"char-lower-case? char-numeric? char-ready? char-upcase "\
|
||||||
char-upper-case? char-whitespace? char<=? char<? char=?
|
"char-upper-case? char-whitespace? char<=? char<? char=? "\
|
||||||
char>=? char>? close-input-port close-output-port cons cos
|
"char>=? char>? close-input-port close-output-port cons cos "\
|
||||||
current-input-port current-output-port denominator display
|
"current-input-port current-output-port denominator display "\
|
||||||
dynamic-wind else eq? equal? eqv? eval even? exact->inexact
|
"dynamic-wind else eq? equal? eqv? eval even? exact->inexact "\
|
||||||
exact? exp expt floor for-each force gcd imag-part inexact->exact
|
"exact? exp expt floor for-each force gcd imag-part inexact->exact "\
|
||||||
inexact? integer->char integer? interaction-environment lcm
|
"inexact? integer->char integer? interaction-environment lcm "\
|
||||||
length list list->string list->vector list-ref list-tail load log
|
"length list list->string list->vector list-ref list-tail load log "\
|
||||||
magnitude make-polar make-rectangular make-string make-vector
|
"magnitude make-polar make-rectangular make-string make-vector "\
|
||||||
map max member memq memv min modulo negative? newline not
|
"map max member memq memv min modulo negative? newline not "\
|
||||||
null-environment number->string numerator odd? open-input-file
|
"null-environment number->string numerator odd? open-input-file "\
|
||||||
open-output-file or peek-char positive? quasiquote quote quotient
|
"open-output-file or peek-char positive? quasiquote quote quotient "\
|
||||||
rational? rationalize read read-char real-part real? remainder
|
"rational? rationalize read read-char real-part real? remainder "\
|
||||||
reverse round scheme-report-environment set-car! set-cdr! sin
|
"reverse round scheme-report-environment set-car! set-cdr! sin "\
|
||||||
sqrt string->list string->number string->symbol string-append
|
"sqrt string->list string->number string->symbol string-append "\
|
||||||
string-ci<=? string-ci<? string-ci=? string-ci>=?
|
"string-ci<=? string-ci<? string-ci=? string-ci>=? "\
|
||||||
string-ci>? string-copy string-fill! string-length string-ref
|
"string-ci>? string-copy string-fill! string-length string-ref "\
|
||||||
string-set! string<=? string<? string=? string>=? string>?
|
"string-set! string<=? string<? string=? string>=? string>? "\
|
||||||
substring symbol->string tan truncate values vector
|
"substring symbol->string tan truncate values vector "\
|
||||||
vector->list vector-fill! vector-length vector-ref vector-set!
|
"vector->list vector-fill! vector-length vector-ref vector-set! "\
|
||||||
with-input-from-file with-output-to-file write write-char zero?"
|
"with-input-from-file with-output-to-file write write-char zero?",
|
||||||
|
builtins);
|
||||||
|
|
||||||
join () { printf "%s" "$1" | tr -s ' \n\t' "$2"; }
|
non_word_chars="[\\s\\(\\)\\[\\]\\{\\};\\|]";
|
||||||
|
|
||||||
printf '%s\n' "hook global WinSetOption filetype=scheme %{
|
normal_identifiers="-!$%&\\*\\+\\./:<=>\\?\\^_~a-zA-Z0-9";
|
||||||
set-option window static_words $(join "$keywords $meta $operators $builtins" ' ' )
|
identifier_chars="[" normal_identifiers "][" normal_identifiers ",#]*";
|
||||||
}"
|
}
|
||||||
|
function add_highlighter(regex, highlight) {
|
||||||
exact_quote () {
|
printf("add-highlighter shared/scheme/code/ regex \"%s\" %s\n", regex, highlight);
|
||||||
for symbol in "$@"
|
}
|
||||||
do
|
function quoted_join(words, quoted, first) {
|
||||||
printf '\\Q%s\\E ' "$symbol"
|
first=1
|
||||||
done
|
for (i in words) {
|
||||||
|
if (!first) { quoted=quoted "|"; }
|
||||||
|
quoted=quoted "\\Q" words[i] "\\E";
|
||||||
|
first=0;
|
||||||
|
}
|
||||||
|
return quoted;
|
||||||
|
}
|
||||||
|
function add_word_highlighter(words, face, regex) {
|
||||||
|
regex = non_word_chars "+(" quoted_join(words) ")" non_word_chars
|
||||||
|
add_highlighter(regex, "1:" face)
|
||||||
|
}
|
||||||
|
function print_words(words) {
|
||||||
|
for (i in words) { printf(" %s", words[i]); }
|
||||||
}
|
}
|
||||||
|
|
||||||
qkeys=$(join "$(exact_quote $keywords)" '|')
|
BEGIN {
|
||||||
qmeta=$(join "$(exact_quote $meta)" '|')
|
printf("hook global WinSetOption filetype=scheme %%{ set-option window static_words ");
|
||||||
qops=$(join "$(exact_quote "$operators")" '|')
|
print_words(keywords); print_words(meta); print_words(operators); print_words(builtins);
|
||||||
qbuiltins=$(join "$(exact_quote $builtins)" '|')
|
printf(" }\n")
|
||||||
qtypes=$(join "$(exact_quote $types)" '|')
|
|
||||||
|
|
||||||
non_word_chars='[\s\(\)\[\]\{\};\|]'
|
add_word_highlighter(keywords, "keyword");
|
||||||
normal_identifiers='-!$%&\*\+\./:<=>\?\^_~a-zA-Z0-9'
|
add_word_highlighter(meta, "meta");
|
||||||
identifier_chars="[${normal_identifiers}][${normal_identifiers},#]*"
|
add_word_highlighter(operators, "operator");
|
||||||
|
add_word_highlighter(builtins, "builtin");
|
||||||
add_highlighter () {
|
add_word_highlighter(types, "type");
|
||||||
printf '%s\n' "add-highlighter shared/scheme/code/ regex \"$1\" $2"
|
add_highlighter(non_word_chars "+('" identifier_chars ")", "1:attribute");
|
||||||
|
add_highlighter("\\(define\\W+\\((" identifier_chars ")", "1:function");
|
||||||
|
add_highlighter("\\(define\\W+(" identifier_chars ")\\W+\\(lambda", "1:function");
|
||||||
}
|
}
|
||||||
|
EOF
|
||||||
add_highlighter "${non_word_chars}+(${qkeys})${non_word_chars}" "1:keyword"
|
|
||||||
add_highlighter "${non_word_chars}+(${qmeta})${non_word_chars}" "1:meta"
|
|
||||||
add_highlighter "${non_word_chars}+(${qops})${non_word_chars}" "1:operator"
|
|
||||||
add_highlighter "${non_word_chars}+(${qbuiltins})${non_word_chars}" "1:builtin"
|
|
||||||
add_highlighter "${non_word_chars}+('${identifier_chars})" "1:attribute"
|
|
||||||
add_highlighter "${non_word_chars}+(${qtypes})${non_word_chars}" "1:type"
|
|
||||||
add_highlighter "\(define\W+\(($identifier_chars)" "1:function"
|
|
||||||
add_highlighter "\(define\W+($identifier_chars)\W+\(lambda" "1:function"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Initialization
|
# Initialization
|
||||||
|
|
Loading…
Reference in New Issue
Block a user