<d_bot>
<Continuation Calculus> and now, I am trying to use a parametric `'a t` type instead, and I get `Error: invalid package type: parametrized types are not supported` 😦
<d_bot>
<Continuation Calculus> I guess i'll have to find some other hack to do this, if anyone has any in mind
jlrnick has joined #ocaml
zebrag has quit [Quit: Konversation terminated!]
bartholin has joined #ocaml
jlrnick has quit [Ping timeout: 248 seconds]
mro has joined #ocaml
chrisz has quit [Ping timeout: 240 seconds]
chrisz has joined #ocaml
mro has quit [Remote host closed the connection]
dextaa has quit [Remote host closed the connection]
dextaa has joined #ocaml
Anarchos has joined #ocaml
spip has quit [Ping timeout: 246 seconds]
spip has joined #ocaml
Serpent7776 has joined #ocaml
ahmed_ has joined #ocaml
<reynir>
wow, ocp-indent failed to indent lines in my file, and the cause was a tab character used for indentation many lines above
dextaa has quit [Remote host closed the connection]
dextaa has joined #ocaml
dextaa has quit [Remote host closed the connection]
dextaa has joined #ocaml
jlrnick has joined #ocaml
dextaa has quit [Remote host closed the connection]
dextaa has joined #ocaml
jlrnick has quit [Ping timeout: 248 seconds]
ralu has quit [Ping timeout: 248 seconds]
kaph_ has quit [Ping timeout: 272 seconds]
kaph_ has joined #ocaml
kaph_ has quit [Ping timeout: 268 seconds]
ahmed__ has joined #ocaml
ahmed_ has quit [Ping timeout: 248 seconds]
<d_bot>
<Le condor du plateau> how can I generate `t_of_sexp` and `sexp_of_t` functions for a non-abstract `t` type from an external library with the ppx sexp_conv ?
Haudegen has joined #ocaml
TheRuralJuror has joined #ocaml
<d_bot>
<Alistair> Use ppx import which will import the type definition and add a deriving sexp at the end of the import
<d_bot>
<Le condor du plateau> so it adds a dependency?
<d_bot>
<Le condor du plateau> `
<d_bot>
<Le condor du plateau> include struct
<d_bot>
<Le condor du plateau> open Sexplib
<d_bot>
<Le condor du plateau>
<d_bot>
<Le condor du plateau> type style = LTerm_style.t = {
<d_bot>
<Le condor du plateau> bold : bool option;
<d_bot>
<Le condor du plateau> underline : bool option;
<d_bot>
<Le condor du plateau> blink : bool option;
<d_bot>
<Le condor du plateau> reverse : bool option;
<d_bot>
<Le condor du plateau> foreground : LTerm_style.color option;
<d_bot>
<Le condor du plateau> background : LTerm_style.color option;