This Snippets plugin let you save key/value snippets and copy to clipboard copy it from Flow Launcher.
- Install this plugin via
pm install Snippets
- The default action keyword is
sp
by default and it's recommended to replace it into*
so that all the keys of snippets can be triggered directly. - Examples:
- Save
<key>:<value>
for Single Line: open FlowLauncher to typesp <test-key>:<test-value>
, click orEnter
the shown optionSave Code Snippets
to save thekey=test-key
andvalue=test-value
into the local sqlite3 db. - Save From Clipbaord for Multiple Line: Copy your selected snippets and then open FlowLauncher to type
sp <clipboard-snippet-key>
, Askey=clipboard-snippet-key
is not saved yet and there are snippets from clipboard, click orEnter
the shown optionSave from clipboard
to save thekey=clipboard-snippet-key
andvalue=clipboard-snippets
into the local sqlite3 db. - Get Snippets By Key:
sp <test-key>
: Search for thekey=test-key
and click the item orEnter
to copy the snippets value into clipboard. - Delete Snippets By Key:
sp <test-key>
: Search for thekey=test-key
, it would show the save item, pressShift + Enter
to see the context menu on selected item, click the item orEnter
to delet the snippets
Disclaimer: The key/value would be stored on **local only ** via sqlite3 db file
./snippets.db
under%FlowLauncherSettingsFolder%/Flow.Launcher.Snippets/