summaryrefslogtreecommitdiff
path: root/motus/js
ModeNameSize
-rw-r--r--dune284logplain
-rw-r--r--fieldList.ml5370logplain
-rw-r--r--initialize.ml2468logplain
-rw-r--r--motus.ml5593logplain
-rw-r--r--next.ml1095logplain
-rw-r--r--reload.ml896logplain
-rw-r--r--state.ml1653logplain
-rw-r--r--updateProposition.ml597logplain
c */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#!/bin/sh

echo "Installation du layout bépo pour le clavier typematrix"
install -m 644 keyboards/etc/X11/xorg.conf.d/typematrix.conf /etc/X11/xorg.conf.d
install -m 644 keyboards/etc/X11/xorg.conf.d/sofle.conf /etc/X11/xorg.conf.d

echo "Driver udev pour flipperzero"
install -m 644 flipperzero/etc/udev/rules.d/42-flipperzero.rules /etc/udev/rules.d 
Model = struct
(** Get the child node at the given index, if it exists. *)
method eq:
- 'this t -> bool meth
+ 'this t -> bool t meth
(** Compare this element to another one. *)
method cut:
@@ -309,7 +328,7 @@ module Model = struct
mark t js_array t readonly_prop
method sameMarkupd:
- node t -> bool meth
+ node t -> bool t meth
method text:
Jstr.t opt prop
@@ -359,39 +378,97 @@ module Transform = struct
method step:
step t -> 'this t meth
+ method addMark:
+ from:int -> to_:int -> Model.mark t -> 'this t meth
+
+ method delete:
+ from:int -> to_:int -> 'this t meth
+
method insert:
- int -> Model.node t -> 'this t meth
+ pos:int -> Model.node t -> 'this t meth
method replaceRangeWith:
- int -> int -> Model.node t -> 'this t meth
+ from:int -> to_:int -> Model.node t -> 'this t meth
method setBlockType:
- int -> int -> Model.node_type t -> < .. > t -> 'this t meth
+ from:int -> to_:int -> Model.node_type t -> < .. > t -> 'this t meth
end
end
-(**