We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8bb46d commit c6b3772Copy full SHA for c6b3772
.gdbinit
@@ -650,7 +650,8 @@ class Dashboard(gdb.Command):
650
# process all the init files in order
651
for root, dirs, files in itertools.chain.from_iterable(inits_dirs):
652
dirs.sort()
653
- for init in sorted(files):
+ # skipping dotfiles
654
+ for init in sorted(file for file in files if not file.startswith('.')):
655
path = os.path.join(root, init)
656
_, ext = os.path.splitext(path)
657
# either load Python files or GDB
0 commit comments