summary refs log tree commit diff stats
path: root/TODO
Commit message (Expand)AuthorAgeFilesLines
* TODO: added #78hut2010-03-311-0/+1
* TODO: closed #45, it was implemented alreadyhut2010-03-311-1/+1
* closed issue #76 (was implemented in f5e9c01e)hut2010-03-291<
; open a viewport, print coordinates of mouse clicks
; currently need to ctrl-c to exit after closing the viewport
(function main [
  (window-on (("practice" literal)) 300:literal 300:literal)
  { begin
    (pos:integer-integer-pair click?:boolean <- mouse-position)
    (loop-unless click?:boolean)
    (x:integer <- get pos:integer-integer-pair 0:offset)
    (y:integer <- get pos:integer-integer-pair 1:offset)
;?     ($print (("AAA " literal)))
;?     ($print x:integer)
;?     ($print ((", " literal)))
;?     ($print y:integer)
;?     ($print (("\n" literal)))
    (print-integer nil:literal/terminal x:integer)
    (print-character nil:literal/terminal ((#\, literal)))
    (print-character nil:literal/terminal ((#\space literal)))
    (print-integer nil:literal/terminal y:integer)
    (print-character nil:literal/terminal ((#\newline literal)))
    (loop)
  }
  (window-off)
])
>hut2010-01-191-0/+2 * browsercolumn: preview more filetypeshut2010-01-191-1/+1 * implemented #48: abbreviate commandshut2010-01-191-1/+1 * done #32hut2010-01-191-1/+1 * TODO: added stuffhut2010-01-191-0/+2 * settings: allow to toggle flushinputhut2010-01-191-1/+1 * done #35: display disk usage of files in current directoryhut2010-01-191-1/+1 * done #34: display free disk spacehut2010-01-191-1/+1 * titlebar: red hostname if logged in with roothut2010-01-191-0/+1 * fixed #43: bookmark ` = 'hut2010-01-181-1/+2