about summary refs log tree commit diff stats
Commit message (Expand)AuthorAgeFilesLines
...
| * simplify cursor-on-screen checkKartik K. Agaram2022-08-172-11/+9
* | Merge lines.loveKartik K. Agaram2022-08-173-8/+8
|\|
| * swap return values
discard """
  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 upwardsKartik K. Agaram2022-08-112-1/+28
* search: transparently handle drawings everywhereKartik K. Agaram2022-08-111-22/+18
* bugfix: search upwardsKartik K. Agaram2022-08-112-1/+20
* bugfix: check before cursor on same lineKartik K. Agaram2022-08-112-1/+31
* bugfix: handle drawings when updating screen topKartik K. Agaram2022-08-111-0/+1
* renameKartik K. Agaram2022-08-111-24/+24
* bugfix: pagedown was sometimes bouncing upKartik K. Agaram2022-08-102-1/+18
* bugfix: backspace from start of final lineKartik K. Agaram2022-08-102-1/+21
* unnecessary argsKartik K. Agaram2022-08-101-1/+1
* hardcode some assumptions about how this app uses loveKartik K. Agaram2022-08-061-18/+11
* bugfix: imprecision in drawingKartik K. Agaram2022-08-032-0/+4
* round one coordinateKartik K. Agaram2022-07-301-1/+1
* round coordinates to integers in a few placesKartik K. Agaram2022-07-291-7/+11
* click to the left of a lineKartik K. Agaram2022-07-294-4/+28
* copying to clipboard can never scrollKartik K. Agaram2022-07-271-1/+0
* line.y -> line_cache.starty in a few more placesKartik K. Agaram2022-07-273-14/+14
* have file API operate on state objectKartik K. Agaram2022-07-254-21/+20
* update cursor in search boxKartik K. Agaram2022-07-251-3/+1
* bugfix: alt-tab shouldn't emit keypress eventsKartik K. Agaram2022-07-251-1/+20
* moveKartik K. Agaram2022-07-251-2/+3
* simplify hysteresis logicKartik K. Agaram2022-07-251-8/+3
* bugfix: skip over drawings when searchingKartik K. Agaram2022-07-252-15/+17
* extract methodKartik K. Agaram2022-07-232-14/+13
* bugfix: online helpKartik K. Agaram2022-07-222-8/+12
* bugfix: searchKartik K. Agaram2022-07-212-1/+34
* move drawing.starty into line cacheKartik K. Agaram2022-07-203-60/+71
* use line cache for drawings as wellKartik K. Agaram2022-07-203-31/+31
* bugfix: where cursor is drawnKartik K. Agaram2022-07-203-14/+25
* reorg manual tests docKartik K. Agaram2022-07-201-9/+7
* .Kartik K. Agaram2022-07-201-0/+2