Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dinhani/vscode-copy-on-select

Visual Studio Code extension that copy text just by selecting it like some terminals
https://github.com/dinhani/vscode-copy-on-select

vscode-extension

Last synced: 2 months ago
JSON representation

Visual Studio Code extension that copy text just by selecting it like some terminals

Awesome Lists containing this project

README

        

# Copy On Select

This extension automatically copies to the clipboard the selected text in the editor when you select it without having to hit CTRL+C.

[![Installs](https://img.shields.io/visual-studio-marketplace/i/dinhani.copy-on-select?style=flat-square)](https://marketplace.visualstudio.com/items?itemName=dinhani.copy-on-select&ssr=false)
[![Rating](https://img.shields.io/visual-studio-marketplace/r/dinhani.copy-on-select?style=flat-square)](https://marketplace.visualstudio.com/items?itemName=dinhani.copy-on-select&ssr=false#review-details)
[![Version](https://img.shields.io/visual-studio-marketplace/v/dinhani.copy-on-select?style=flat-square)](https://marketplace.visualstudio.com/items?itemName=dinhani.copy-on-select&ssr=false#version-history)

## Example

![Copy On Select example](https://raw.githubusercontent.com/dinhani/vscode-copy-on-select/master/images/vscode-copy-on-select.gif)
*Selected text is automatically copied to clipboard when selected with mouse, then with keyboard.*

## Configuration

```javascript
// Should copy the selected text when it was selected using the keyboard?
"copyOnSelect.copyOnKeyboardSelection": false

// Should copy the selected text when it was selected using the mouse?
"copyOnSelect.copyOnMouseSelection": true

// Should trim the start of the copied text?
"copyOnSelect.trimStart": false

// Should trim the end of the copied text?
"copyOnSelect.trimEnd": true
```

## Feedback

Request features and report bugs using [GitHub](https://github.com/dinhani/vscode-copy-on-select).