Gauthier POGAM--LE MONTAGNER
Gauthier POGAM--LE MONTAGNER
On a easier way, you can download IntelliJ IDEA Ultimate Edition EAP and install Ruby/Python/... plugins. Then, you just have to set the values. Otherwise, to get multi-IDE support, you...
Thank you for the quick implem ! I tested it and got the following error : > Blocage d’une requête multiorigines (Cross-Origin Request) : la politique « Same Origin »...
I installed it, made sure the extension use is enabled in settings, disabled the verification, but the issue still occurs.
I'm looking for that too. But not only for Haskell related ligatures (a big part of Hasklig ligatures are Haskell specifics), but for more general programming ligatures as available in...
For editors in Java (like IntelliJ), the OpenJDK have a bug who prevents from rendering ligatures. An issue on the JetBrains bug tracker (https://youtrack.jetbrains.com/issue/IDEA-127539) have been opened to support ligatures...
I'm looking for classic ligatures first, who are present in a majority of languages : `==`, `===`, `!=`, `!==`, `>=`, ``, `++`, `--`, `&&`, `||`, `..`, `...`, ``, `+=`, `-=`,...
I also miss the possibility to do an include in an Union, especially when building datatypes where a value must be either another datatype or nil. Either this could be...
May I ask how would you do this so currency can be null or the type Currency? ```yaml #%RAML 1.0 DataType type: object additionalProperties: false properties: id: integer entityId: integer...
After your suggestions, I played a bit with my RAML definitions and used both suggestions. Here are my thoughts: - Declaring the type as a library (your first example) has...
This is the definition of a `Students` property: ```YAML Students: type: array items: type: object properties: Name: type: string ``` If this solve your issue, you can close this Github...