Rodrigo Fernandes
Rodrigo Fernandes
👋 @Ps7ch3 this option is not exactly for this case. It just works when you have a diff but it has no chunks. In your case you have no diff,...
Maybe just have a `diff2html-ui` project that wraps this in a electro UI. But I mostly use it in the terminal so I never got the need for this.
I don't remember exactly who, but someone gave this idea to me. It would be to have a some GUI to use the tool. It could just provide the visualization...
I have no time to put on this, but if you are interested in working on a PR, feel free to ask for any guidance and I will help.
I am not sure this can be done with a single file change. The code starts in [diff2html.ts](https://github.com/rtfpessoa/diff2html/blob/master/src/diff2html.ts). You need to add the css in [diff2html.css](https://github.com/rtfpessoa/diff2html/blob/master/src/ui/css/diff2html.css) and then somehow apply...
Closing for inactivity.
Closing for inactivity.
Currently what the tool does it replace windows new lines (\r\n) for unix new lines `\n` and then I just split by `\n`. What would you really like to see?
Should be this: ``` val schema = graph.getRawDatabase.getMetadata.getSchema val vClass = schema.getClass("V") val fooClass = schema.createClass(s"V_Foo", vClass) createClassProperty(fooClass, "field1") // int createClassProperty(fooClass, "field2") // string private def createClassProperty[T](iClass: OClass, key:...
btw a colleague just found that this problem only happens with index type `UNIQUE_HASH_INDEX`, `NOTUNIQUE_HASH_INDEX` if you use for example `UNIQUE`, `NOTUNIQUE` it works fine.