Advertisement
Guest User

Untitled

a guest
Dec 5th, 2018
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # For complete documentation of this file, please see Geany's main documentation
  2. # R5RS
  3. [styling=Lisp]
  4.  
  5. [keywords]
  6. # all items must be in one line
  7. keywords=+ - * / = < > <= >= => abs acos angle append apply asin assoc assoc assq assv atan boolean? caar cadr call-with-current-continuation call/cc call-with-input-file call-with-output-file call-with-values car cdr caar cadr cdar cddr caaar caadr cadar caddr cdaar cdadr cddar cdddr caaaar caaadr caadar caaddr cadaar cadadr caddar cadddr cdaaar cdaadr cdadar cdaddr cddaar cddadr cdddar cddddr ceiling char->integer char-alphabetic? char-ci<=? char-ci<? char-ci=? char-ci>=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char<? char=? char>=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port delay denominator display dynamic-wind eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? log magnitude make-polar make-rectangular make-string make-vector map max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char input-port? output-port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci<? string-ci=? string-ci>=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string<? string=? string>=? string>? string? substring symbol->string symbol? transcript-off transcript-on truncate unquote unquote-splicing values vector vector->list vector-fill! vector-length vector-ref vector-set! vector? with-input-from-file with-output-to-file write write-char zero?
  8. special_keywords=and begin case cond define define-syntax do else for-each if lambda let let* let-syntax letrec letrec-syntax load or  set! set-car! set-cdr! syntax-rules
  9.  
  10. [lexer_properties=Lisp]
  11. lexer.scheme.scriptfu=1
  12.  
  13. [settings]
  14. # default extension used when saving files
  15. extension=scm
  16. lexer_filetype=Lisp
  17.  
  18. # single comments, like # in this file
  19. comment_single=;
  20. # multiline comments
  21. comment_open=#|
  22. comment_close=|#
  23.  
  24. # set to false if a comment character/string should start at column 0 of a line, true uses any
  25. # indentation of the line, e.g. setting to true causes the following on pressing CTRL+d
  26.     #command_example();
  27. # setting to false would generate this
  28. #   command_example();
  29. # This setting works only for single line comments
  30. comment_use_indent=true
  31.  
  32. # context action command (please see Geany's main documentation for details)
  33. context_action_cmd=
  34.  
  35. [indentation]
  36. #width=4
  37. # 0 is spaces, 1 is tabs, 2 is tab & spaces
  38. #type=1
  39.  
  40. [build_settings]
  41. # %f will be replaced by the complete filename
  42. # %e will be replaced by the filename without extension
  43. # (use only one of it at one time)
  44. compiler=
  45. run_cmd=gsi -f "%f"
  46. #Windows:
  47. #run_cmd=c:\tools\pscheme\pscheme.exe /r "%f"
  48. #run_cmd=c:\tools\gambit\gsi.exe -f "%f"
  49. #run_cmd=c:\tools\plt\mzscheme.exe -r "%f"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement