Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/dinhani/vscode-copy-on-select
- Owner: dinhani
- License: mit
- Created: 2017-04-07T01:45:14.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-01-18T07:36:32.000Z (about 1 year ago)
- Last Synced: 2024-01-18T11:32:56.923Z (about 1 year ago)
- Topics: vscode-extension
- Language: TypeScript
- Homepage:
- Size: 161 KB
- Stars: 12
- Watchers: 2
- Forks: 4
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
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).