diff --git a/packages/copy-typer/0.1.0/README.md b/packages/copy-typer/0.1.0/README.md new file mode 100644 index 0000000..aa1a3d4 --- /dev/null +++ b/packages/copy-typer/0.1.0/README.md @@ -0,0 +1,7 @@ +# Copy Typer + +**Copy Typer** is a simple [Espanso](https://espanso.org/) package that types out the content currently in your clipboard when you use the `:paste` trigger. This is especially useful in environments where the usual `Ctrl + V` paste functionality is not available, such as Linux terminals in browsers. + +## Usage + +- Type `:paste` in your terminal or any text input to insert the content of your clipboard. diff --git a/packages/copy-typer/0.1.0/_manifest.yml b/packages/copy-typer/0.1.0/_manifest.yml new file mode 100644 index 0000000..852a80b --- /dev/null +++ b/packages/copy-typer/0.1.0/_manifest.yml @@ -0,0 +1,7 @@ +name: "copy-typer" +title: "Copy typer" +description: This setup is perfect for situations where Ctrl + V isn't an option, like in Linux terminals within a browser +homepage: "https://github.com/Neoniq/hub" +version: 0.1.0 +author: Neoniq +tags: ["Utility", "Shell"] diff --git a/packages/copy-typer/0.1.0/package.yml b/packages/copy-typer/0.1.0/package.yml new file mode 100644 index 0000000..41f0f0b --- /dev/null +++ b/packages/copy-typer/0.1.0/package.yml @@ -0,0 +1,6 @@ +matches: + - trigger: ":paste" + replace: "{{clipb}}" + vars: + - name: "clipb" + type: "clipboard"