
Terminal
Member-
Content Count
105 -
Joined
-
Last visited
-
Days Won
2
Terminal last won the day on January 6 2020
Terminal had the most liked content!
About Terminal
-
Rank
Member
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Yeah, I just pulled and merge locally so I can have that support. Thanks. I’ll test tomorrow.
-
@Andy RosenThe best approach I can think of is if you offer a v2 that utilizes the lastpass-cli that integrates last pass dumping out as json. Check the GitHub for the PR which supports this. It would make your workflow so much more fluid.
-
@Andy Rosen I am receiving `JSON error: Invalid escape sequence around character 10600. in JSON:` Which at 10600 is this `"/Michelangelo\mic/` The backslash
-
Rounded corners have an issue displaying
Terminal replied to skarchmit's topic in macOS 10.15 Catalina Bugs & Issues
Just wondering if anyone else can confirm this. -
Rounded corners have an issue displaying
Terminal replied to skarchmit's topic in macOS 10.15 Catalina Bugs & Issues
@Andrew See below. Mac Native Rendering Off Mac Native Rendering On -
Terminal reacted to a post in a topic: Add ⌘-D to duplicate Workflow object
-
clipboard history support multi select
Terminal replied to Alan He's topic in Alfred Feature Suggestions
I think this could be accomplished or implement better via a text buffer function. Similar to file buffer. Then you can either paste them all or even run a action on all selected text -
Terminal reacted to a post in a topic: clipboard history support multi select
-
Terminal reacted to a post in a topic: Add a String Buffer (similar to Lacona 2 shelf or Alfred File Buffer)
-
How to save selected text as Alfred snippet?
Terminal replied to nikivi's topic in Alfred Feature Suggestions
@nikivistill need it? Ensure you first set the SNIPPET_PATH variable to where your Alfred syncs those items. https://www.dropbox.com/s/bjoez9e1wsvoboa/Selection to Snippet.alfredworkflow?dl=0 -
JJJJ reacted to a post in a topic: How to save selected text as Alfred snippet?
-
nikivi reacted to a post in a topic: How to save selected text as Alfred snippet?
-
How to save selected text as Alfred snippet?
Terminal replied to nikivi's topic in Alfred Feature Suggestions
This is possible with a more advanced workflow. It would take a initial setup. But once setup should pretty straight forward. Created a POC. If you would like to see it and modify it please let me know. https://streamable.com/vxekr6 -
clipboard history support delete item
Terminal replied to Alan He's topic in Alfred Feature Suggestions
Fn + delete will remove an item -
Terminal reacted to a post in a topic: Disable snippet placeholders with an arbitrary symbol in front of {
-
Try dragging the Alfred 4 app into the automations box
-
Terminal reacted to a post in a topic: Toggle Visibility - Hide / Show any application in a super easy way
-
FWIW, searching Instagram is pretty straight forward nowadays. Can likely get a example going if needed
-
Terminal reacted to a post in a topic: Option for Alfred to appear on every screen
-
Terminal reacted to a post in a topic: Group Workflows by Category
-
@Andrew @Vero Loving this release, especially embedded snippets. Any chance that embedded snippets will include snippet workflow triggers? That would help expand them to be more advanced. Also any hopes in getting snippets to allow regex patterns for snippet workflows? That would allow really advance snippets. Such as `dt.s.` could expand to the current date, or `d.s+7d` would expand to the date in 7 days,. A snippet regex trigger would look like `dt.([smlf])([+-])?(\d+)?([dwmy])?\.` which would allow any of those to trigger the snippet. KM supports this and is what I currently use
-
Reveal folder in finder - select folder
Terminal replied to Versus's topic in macOS 10.15 Catalina Bugs & Issues
FYI, appears fixed in in Big Sur -
Andrew reacted to a post in a topic: Alfred on macOS Big Sur 11.0 beta
-
Alfred on macOS Big Sur 11.0 beta
Terminal replied to krusnof's topic in macOS 11.0 Big Sur Bugs & Issues
@Andrew Just confirming for me at least that it runs fine on Big Sur -
Terminal reacted to a post in a topic: New Date Calculation in Snippets, Please
-
New Date Calculation in Snippets, Please
Terminal replied to DCDawg's topic in Alfred Feature Suggestions
This is possible with a snippet workflow. With this example you can set a workflow variable to control the date format import os import datetime env = os.environ date_format = env.get('date_format', '%Y-%m-%d') d = datetime.date.today() while d.weekday() != 4: d += datetime.timedelta(1) print d.strftime(date_format),