summary refs log tree commit diff stats
path: root/nimsuggest/nimsuggest.nimble
Commit message (Collapse)AuthorAgeFilesLines
* fix .deprecated. object typedef crash (#13643)Andy Davidoff2020-03-161-5/+2
| | | | | * fix .deprecated. object typedef crash * fixup a test that i don't understand * disable the test rather than debug ci
* nimsuggest: more precise cursor trackingAraq2017-03-091-0/+11
>17


               













                                                         
discard """
action: compile
"""

import os

# bug #3636

proc fooIt(foo: string): iterator(): (string) =
  iterator temp(): (string) =
    for f in walkDirRec(foo): # No problem with walkFiles
      yield f
  return temp

let it = fooIt(".")
for x in it():
  echo x