You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
New -m/--markdown option for outputting results as Markdown with each file in a fenced code block. #42
Support for reading a list of files from standard input. Thanks, Ankit Shankar. #44
Here's how to process just files modified within the last day:
find . -mtime -1 | files-to-prompt
You can also use the -0/--null flag to accept lists of file paths separated by null delimiters, which is useful for handling file names with spaces in them:
New -n/--line-numbers flag for including line numbers in the output. Thanks, Dan Clayton. #38
Fix for utf-8 handling on Windows. Thanks, David Jarman. #36
--ignore patterns are now matched against directory names as well as file names, unless you pass the new --ignore-files-only flag. Thanks, Nick Powell. #30
New -e/--extension <ext> option that filters for files with one or more specified extension, for example files-to-prompt . -e md -e py to find all Markdown and Python in the current directory. #28