this might explain the bug

I think I was just typing with the the status bar outside the display
when it seemed to work. Easy to forget to hit '/' at the start.
Particularly if it seems to work fine.
This commit is contained in:
Kartik K. Agaram 2021-08-13 20:57:27 -07:00
parent 8773d07278
commit 7465f6867b
1 changed files with 1 additions and 5 deletions

View File

@ -229,10 +229,6 @@ fn render-search-input screen: (addr screen), _env: (addr environment) {
var search-terms-ah/eax: (addr handle gap-buffer) <- get env, search-terms
var search-terms/eax: (addr gap-buffer) <- lookup *search-terms-ah
rewind-gap-buffer search-terms
{
var len/eax: int <- gap-buffer-length search-terms
draw-int32-decimal-wrapping-right-then-down-from-cursor-over-full-screen screen, len, 4/fg 0/bg
}
var x/eax: int <- render-gap-buffer screen, search-terms, 0x2a/x 1/y, 1/render-cursor, 0xf/fg 0/bg
{
compare x, 0x4a/end-search
@ -638,7 +634,7 @@ fn update-environment _env: (addr environment), key: byte, users: (addr array us
{
var cursor-in-search?/eax: (addr boolean) <- get env, cursor-in-search?
compare *cursor-in-search?, 0/false
break-if-!=
break-if-=
update-search env, key, users, channels, items
return
}