Lines Matching refs:path
31 io: iomenu.IOBinding instance with default path to search.
57 yield from (os.path.join(dirpath, name)
79 globvar: String value of Entry widget for path to search.
99 io: iomenu.IOBinding instance containing file path.
103 path = io.filename or ""
105 path = ""
106 dir, base = os.path.split(path)
107 head, tail = os.path.splitext(base)
110 self.globvar.set(os.path.join(dir, "*" + tail))
113 "Create base entry widgets and add widget for search path."
130 """Grep for search pattern in file path. The default command is bound
140 path = self.globvar.get()
141 if not path:
148 self.grep_it(prog, path)
152 def grep_it(self, prog, path):
153 """Search for prog within the lines of the files in path.
155 For the each file in the path directory, open the file and
162 path: String containing the search path.
164 folder, filepat = os.path.split(path)
170 print(f"Searching {pat!r} in {path} ...")