https://github.com/dinhani/vscode-copy-on-select
[vscode-ext] copy text by selecting them like terminal apps
https://github.com/dinhani/vscode-copy-on-select
vscode-extension
Last synced: 3 months ago
JSON representation
[vscode-ext] copy text by selecting them like terminal apps
- Host: GitHub
- URL: https://github.com/dinhani/vscode-copy-on-select
- Owner: dinhani
- License: mit
- Created: 2017-04-07T01:45:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-01-18T07:36:32.000Z (over 1 year ago)
- Last Synced: 2025-03-26T05:51:14.582Z (4 months ago)
- Topics: vscode-extension
- Language: TypeScript
- Homepage:
- Size: 161 KB
- Stars: 15
- Watchers: 3
- Forks: 4
- Open Issues: 8
-
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.
[](https://marketplace.visualstudio.com/items?itemName=dinhani.copy-on-select&ssr=false)
[](https://marketplace.visualstudio.com/items?itemName=dinhani.copy-on-select&ssr=false#review-details)
[](https://marketplace.visualstudio.com/items?itemName=dinhani.copy-on-select&ssr=false#version-history)## Example

*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).