Find in files in folder error
Find in files in folder error
I'm getting an error popping up about setting the In Folder, but I've already set it. I can get it to work if I select Project Folder but otherwise the error appears.
quick fix from me:
open file ~/.config/cudatext/py/cuda_find_in_files/cd_fif_api.py
find there
and replace this function to this block to use ";" as separator for dir names
open file ~/.config/cudatext/py/cuda_find_in_files/cd_fif_api.py
find there
Code: Select all
def prep_quoted_folders(mask:str)->list:
Code: Select all
def prep_quoted_folders(mask:str)->list:
mask = mask.strip()
flds = mask.split(';')
if '"' in mask:
flds = [f.strip('"') for f in flds if f]
return flds
#def prep_quoted_folders