src/pathpicker/screen_flags.py [110:120]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            default=False,
            action="store_true",
            help="""You may want to turn off file
system validation for a particular instance of PathPicker; this flag
disables our internal logic for checking if a regex match is an actual file
on the system. This is particularly useful when using PathPicker for an input
of, say, deleted files in git status that you would like to restore to a given
revision. It enables you to select the deleted files even though they
do not exist on the system anymore.""",
        )
        parser.add_argument(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/pathpicker/screen_flags.py [135:144]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            default=False,
            action="store_true",
            help="""Normally, the command that runs after you've
chosen files to operate on is spawned in an interactive subshell.  This allows you
to use aliases and have access to environment variables defined in your startup
files, but can have strange side-effects when starting and stopping jobs
and redirecting inputs.  Using this flag runs your commands in a non-interactive
subshell, like a normal shell script.""",
        )
        parser.add_argument(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



