Merge branch 'emacs' of http://git.hacks-galore.org/jao/factor
commit
6aa3b7cd3d
|
@ -225,7 +225,7 @@ M: x-clipboard paste-clipboard
|
||||||
utf8 encode dup length XChangeProperty drop ;
|
utf8 encode dup length XChangeProperty drop ;
|
||||||
|
|
||||||
: set-class ( dpy window -- )
|
: set-class ( dpy window -- )
|
||||||
XA_WM_CLASS XA_STRING 8 PropModeReplace "Factor"
|
XA_WM_CLASS XA_UTF8_STRING 8 PropModeReplace "Factor"
|
||||||
utf8 encode dup length XChangeProperty drop ;
|
utf8 encode dup length XChangeProperty drop ;
|
||||||
|
|
||||||
M: x11-ui-backend set-title ( string world -- )
|
M: x11-ui-backend set-title ( string world -- )
|
||||||
|
|
|
@ -262,7 +262,8 @@
|
||||||
("\\_<C-ENUM:\\( \\|\n\\)" (1 "<b"))
|
("\\_<C-ENUM:\\( \\|\n\\)" (1 "<b"))
|
||||||
("\\_<TUPLE: +\\w+? +< +\\w+? *\\( \\|\n\\)\\([^;]\\|$\\)" (1 "<b"))
|
("\\_<TUPLE: +\\w+? +< +\\w+? *\\( \\|\n\\)\\([^;]\\|$\\)" (1 "<b"))
|
||||||
("\\_<TUPLE: +\\w+? *\\( \\|\n\\)\\([^;<\n]\\|\\_>\\)" (1 "<b"))
|
("\\_<TUPLE: +\\w+? *\\( \\|\n\\)\\([^;<\n]\\|\\_>\\)" (1 "<b"))
|
||||||
("\\_<\\(SYMBOLS\\|VARS\\|SINGLETONS\\): *?\\( \\|\n\\)\\([^;\n]\\|\\_>\\)" (2 "<b"))
|
("\\_<\\(SYMBOLS\\|VARS\\|SINGLETONS\\): *?\\( \\|\n\\)\\([^;\n]\\|\\_>\\)"
|
||||||
|
(2 "<b"))
|
||||||
("\\(\n\\| \\);\\_>" (1 ">b"))
|
("\\(\n\\| \\);\\_>" (1 ">b"))
|
||||||
;; Let and lambda:
|
;; Let and lambda:
|
||||||
("\\_<\\(!(\\) .* \\()\\)" (1 "<") (2 ">"))
|
("\\_<\\(!(\\) .* \\()\\)" (1 "<") (2 ">"))
|
||||||
|
@ -275,6 +276,7 @@
|
||||||
("\\_<\\(}\\)\\_>" (1 "){"))
|
("\\_<\\(}\\)\\_>" (1 "){"))
|
||||||
;; Parenthesis:
|
;; Parenthesis:
|
||||||
("\\_<\\((\\)\\_>" (1 "()"))
|
("\\_<\\((\\)\\_>" (1 "()"))
|
||||||
|
("\\_<call\\((\\)\\_>" (1 "()"))
|
||||||
("\\_<\\()\\)\\_>" (1 ")("))
|
("\\_<\\()\\)\\_>" (1 ")("))
|
||||||
("\\_<(\\((\\)\\_>" (1 "()"))
|
("\\_<(\\((\\)\\_>" (1 "()"))
|
||||||
("\\_<\\()\\))\\_>" (1 ")("))
|
("\\_<\\()\\))\\_>" (1 ")("))
|
||||||
|
|
Loading…
Reference in New Issue