Leonardo

Results 9 issues of Leonardo

## Description When having `on_error = RESUME` in my `~/.config/pgcli/config`, executing an sql file that contains multiple queries will still halt on the first error. For example: `test.sql` ```sql SELECT...

This adds the `useModal` option, defaults to `true` for the existing behaviour. With `useModal` set to false, rather than creating a hidden layer behind the contextmenu to capture closing clicks,...

Screenshot with unintended behaviors (*Image(s) Here*): ![image](https://user-images.githubusercontent.com/22801009/153931938-2c59daab-7470-4990-a78b-8b844d9488de.png) If you can reproduce it, write the steps here. If you can't, try to describe what causes the unintended behavior, like pressing a...

bug
REMAKE

When editing code that uses markup literals (like [domkit](https://github.com/HeapsIO/domkit) on the Heaps game engine), the breadcrumbs are not nested properly. For example here the caret is not inside classes `A`...

In this situation ```haxe class Extensions { inline static public function findMin(a:Array, f:T->Float) { var minVal = Math.POSITIVE_INFINITY; var minItem = null; for (item in a) { var v =...

Try haxe: https://try.haxe.org/#15BeB54A ```haxe var pos = Context.currentPos(); var tfields = (macro class { public var bit:Int; }).fields; var t:TypeDefinition = { pos: pos, pack: [], meta: [{name: ":structInit", pos:...

This code: Main.hx ```haxe @:build(Macros.buildMain()) class Main { } ``` Macros.hx ```haxe import haxe.macro.Context; class Macros { public static function buildMain() { var fields = Context.getBuildFields(); var fBody = "var...

In this snippet: ([try haxe](https://try.haxe.org/#e3b1F767)) ```haxe inline function pos(): hl.I64 { return 0; } inline function getAt(ret: hl.I64, pos: Int): hl.I64 { return pos; } inline function flipX(v: hl.I64) {...

At the moment `Null` and `Null` used exclusively in one scope create unnecessary allocations on static platforms. The compiler could inline those away like it does for anonymous structures: ```haxe...