Add pipeable_glob_1, _many snippets.

This commit is contained in:
voussoir 2021-09-24 16:15:06 -07:00
parent 86910a73ec
commit 8ae84c6f5e
No known key found for this signature in database
GPG key ID: 5F7554F8C26DACCB
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
patterns = pipeable.input(args.pattern, skip_blank=True, strip=True)
files = pathclass.glob_many(patterns, files=True)
]]></content>
<tabTrigger>pipeable_glob_1</tabTrigger>
<scope>source.python</scope>
</snippet>

View file

@ -0,0 +1,8 @@
<snippet>
<content><![CDATA[
patterns = pipeable.input_many(args.patterns, skip_blank=True, strip=True)
files = pathclass.glob_many(patterns, files=True)
]]></content>
<tabTrigger>pipeable_glob_many</tabTrigger>
<scope>source.python</scope>
</snippet>