Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add copy-typer plugin #149

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions packages/copy-typer/0.1.0/README.md
Original file line number Diff line number Diff line change
@@ -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.
7 changes: 7 additions & 0 deletions packages/copy-typer/0.1.0/_manifest.yml
Original file line number Diff line number Diff line change
@@ -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"]
6 changes: 6 additions & 0 deletions packages/copy-typer/0.1.0/package.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
matches:
- trigger: ":paste"
replace: "{{clipb}}"
vars:
- name: "clipb"
type: "clipboard"
Loading