forked from idapython/src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathidapython.cfg
More file actions
25 lines (19 loc) · 830 Bytes
/
idapython.cfg
File metadata and controls
25 lines (19 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Alert before loading automatic scripts found in current directory
// swig_runtime_dataN, sitecustomize and usercustomize
ALERT_AUTO_SCRIPTS = YES
// Remove current directory from import search path
REMOVE_CWD_SYS_PATH = YES
// Script timeout (in seconds)
// (A value of 0 disables the timeout)
SCRIPT_TIMEOUT = 3
// Should the plugin automatically load a backward-compatibility-providing
// 'idaapi' wrapper module?
AUTOIMPORT_COMPAT_IDAAPI = YES
// Should the plugin automatically load a 6.95 bw-compatibility layer?
AUTOIMPORT_COMPAT_IDA695 = NO
// Is IDAPython namespace-aware?
// If yes, then plugins, loaders & processor modules will each be loaded
// within their own namespace, preventing namespace pollution.
NAMESPACE_AWARE = YES
// Should results be printed by 'sys.displayhook'?
REPL_USE_SYS_DISPLAYHOOK = YES