Recursively list .nim files

Run Settings
LanguageNim
Language Version
Run Command
# deep scan a folder for .nim files import os import strutils proc deepWalk(path: string) = for x in walkDir(path): if x.kind == pcDir: deepWalk(x.path) elif x.path.endsWith ".nim": echo x.path deepWalk("/")
Editor Settings
Theme
Key bindings
Full width
Lines