Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alincode/superpasteurl
https://github.com/alincode/superpasteurl
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/alincode/superpasteurl
- Owner: alincode
- Created: 2018-12-13T10:35:23.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-13T15:34:08.000Z (about 6 years ago)
- Last Synced: 2024-11-06T07:26:33.706Z (about 2 months ago)
- Language: JavaScript
- Size: 6.52 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# SuperPasteURL README
SuperPasteURL is a simple extension that generating Markdown style link when pasting URL.
![](usage.gif)
## Features
A Markdown inline-style link will be generated when pasting a URL into the file with corresponding active language.
For example, you copied the below URL:
```
https://code.visualstudio.com
```When pasting with Paste URL, you will get:
```
[Visual Studio Code - Code Editing. Redefined](https://code.visualstudio.com)
```### Usage
For Ubuntu Linux make sure that xclip package is installed, see http://github.com/xavi-/node-copy-paste for details.```
Hit "Control + Alt + P"
```Selection will be used as the title if possible.
You can change the default shortcut to whatever you like by editing the `Code > Preferences > Keyboard Shortcuts (File > Preferences > Keyboard Shortcuts` on Windows):
```
[
{"key": "ctrl+alt+p", "command": "extension.SuperPasteURL"}
]
```### release plugin
```
vsce package
```## Known Issues
Calling out known issues can help limit users opening duplicate issues against your extension.
## Release Notes
Users appreciate release notes as you update your extension.
### 0.0.1
generating Markdown style link
### 0.0.2
Fixed bug
### 0.0.3
improve readme
### For more information
* [Visual Studio Code's Markdown Support](http://code.visualstudio.com/docs/languages/markdown)
* [Markdown Syntax Reference](https://help.github.com/articles/markdown-basics/)