swap return valuesdiscard """
output: 42
"""
import asyncdispatch
template foo() =
proc temp(): Future[int] {.async.} = return 42
proc tempVoid(): Future[void] {.async.} = echo await temp()
foo()
waitFor tempVoid()
* | bugfix: check after cursor on same line when searching upwards | Kartik K. Agaram | 2022-08-11 | 2 | -1/+28 |
* | search: transparently handle drawings everywhere | Kartik K. Agaram | 2022-08-11 | 1 | -22/+18 |
* | bugfix: search upwards | Kartik K. Agaram | 2022-08-11 | 2 | -1/+20 |
* | bugfix: check before cursor on same line | Kartik K. Agaram | 2022-08-11 | 2 | -1/+31 |
* | bugfix: handle drawings when updating screen top | Kartik K. Agaram | 2022-08-11 | 1 | -0/+1 |
* | rename | Kartik K. Agaram | 2022-08-11 | 1 | -24/+24 |
* | bugfix: pagedown was sometimes bouncing up | Kartik K. Agaram | 2022-08-10 | 2 | -1/+18 |
* | bugfix: backspace from start of final line | Kartik K. Agaram | 2022-08-10 | 2 | -1/+21 |
* | unnecessary args | Kartik K. Agaram | 2022-08-10 | 1 | -1/+1 |
* | hardcode some assumptions about how this app uses love | Kartik K. Agaram | 2022-08-06 | 1 | -18/+11 |
* | bugfix: imprecision in drawing | Kartik K. Agaram | 2022-08-03 | 2 | -0/+4 |
* | round one coordinate | Kartik K. Agaram | 2022-07-30 | 1 | -1/+1 |
* | round coordinates to integers in a few places | Kartik K. Agaram | 2022-07-29 | 1 | -7/+11 |
* | click to the left of a line | Kartik K. Agaram | 2022-07-29 | 4 | -4/+28 |
* | copying to clipboard can never scroll | Kartik K. Agaram | 2022-07-27 | 1 | -1/+0 |
* | line.y -> line_cache.starty in a few more places | Kartik K. Agaram | 2022-07-27 | 3 | -14/+14 |
* | have file API operate on state object | Kartik K. Agaram | 2022-07-25 | 4 | -21/+20 |
* | update cursor in search box | Kartik K. Agaram | 2022-07-25 | 1 | -3/+1 |
* | bugfix: alt-tab shouldn't emit keypress events | Kartik K. Agaram | 2022-07-25 | 1 | -1/+20 |
* | move | Kartik K. Agaram | 2022-07-25 | 1 | -2/+3 |
* | simplify hysteresis logic | Kartik K. Agaram | 2022-07-25 | 1 | -8/+3 |
* | bugfix: skip over drawings when searching | Kartik K. Agaram | 2022-07-25 | 2 | -15/+17 |
* | extract method | Kartik K. Agaram | 2022-07-23 | 2 | -14/+13 |
* | bugfix: online help | Kartik K. Agaram | 2022-07-22 | 2 | -8/+12 |
* | bugfix: search | Kartik K. Agaram | 2022-07-21 | 2 | -1/+34 |
* | move drawing.starty into line cache | Kartik K. Agaram | 2022-07-20 | 3 | -60/+71 |
* | use line cache for drawings as well | Kartik K. Agaram | 2022-07-20 | 3 | -31/+31 |
* | bugfix: where cursor is drawn | Kartik K. Agaram | 2022-07-20 | 3 | -14/+25 |
* | reorg manual tests doc | Kartik K. Agaram | 2022-07-20 | 1 | -9/+7 |
* | . | Kartik K. Agaram | 2022-07-20 | 1 | -0/+2 |