ioncodes / idacode

An integration for IDA and VS Code which connects both to easily execute and debug IDAPython scripts.
718 stars 77 forks source link

IDACode does'nt analyze Var type #21

Open orenbenya1 opened 3 years ago

orenbenya1 commented 3 years ago

for example : pfn = ida_funcs.get_fchunk(ea) idacode doesn't analyze that pfn is type of: ida_funcs.func_t, to fix it manually I can change the code to: pfn: ida_funcs.func_t = ida_funcs.get_fchunk(ea) is there any other way to do it automatically and not like this? I need this for the auto-completion

thank you very much :)

ioncodes commented 3 years ago

did you create the .env file?