Skip to content

Commit d252c73

Browse files
author
Giovanni D'Andrea
committed
fix: changed shortcut to ctrl shift C
1 parent 8800e6d commit d252c73

4 files changed

Lines changed: 7 additions & 31 deletions

File tree

codeishot_extension/README.md

Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
<div align="center">
2-
<img src="./assets/logo.png" alt="codeishot logo" width="100">
3-
<br>
4-
</div>
5-
61
# Codeishot VSCode Extension
72

83
## Overview
@@ -28,23 +23,12 @@ To use Codeishot:
2823

2924
1. Open a file in VSCode.
3025
2. Select the code snippet you want to share.
31-
3. Execute the `Codeishot: Share snippet` command (or use `Shift + c` shortcut).
26+
3. Execute the `Share on Codeishot` command (or use `Ctrl + Shift + c` shortcut).
3227
4. The URL of the posted snippet is automatically copied to your clipboard.
3328
5. Optionally, click on the pop-up message to open the snippet URL in a browser.
3429

3530
![palette](./assets/cmd_palette.png)
3631

37-
## Configuration
38-
39-
- **Base URL**: Set to `https://codeishot.com` by default. Change it in the code if you're using a different server.
40-
- **API Endpoint**: The extension posts to `https://api.codeishot.com`.
41-
42-
## Dependencies
43-
44-
- `axios`: Used for HTTP requests.
45-
- `vscode`: VSCode extension API.
46-
- `path`: For handling file paths.
47-
4832
## Contributing
4933

5034
Contributions to Codeishot are welcome. Please read our contribution guidelines before submitting a pull request.
@@ -53,18 +37,10 @@ Contributions to Codeishot are welcome. Please read our contribution guidelines
5337

5438
This project is licensed under MIT License. See the LICENSE file for details.
5539

56-
## Acknowledgments
57-
58-
Special thanks to everyone who contributed to the development and testing of this extension.
59-
6040
## Disclaimer
6141

6242
This extension is developed as an open-source project. It's not officially affiliated with Visual Studio Code or any other products used or referenced.
6343

64-
## Contact
65-
66-
For support or queries, reach out to one of the maintainers.
67-
6844
---
6945

70-
Codeishot © [2023] by [Codeishot]
46+
Codeishot © [2024] by [Codeishot]
438 KB
Binary file not shown.

codeishot_extension/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

codeishot_extension/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"publisher": "codeishot",
55
"description": "Share you code in one click",
66
"icon": "./assets/logo.png",
7-
"version": "0.1.0",
7+
"version": "0.4.0",
88
"repository": {
99
"type": "git",
1010
"url": "https://github.com/Exifly/codeishot_vscode_ext"
@@ -34,8 +34,8 @@
3434
"keybindings": [
3535
{
3636
"command": "extension.postSnippet",
37-
"key": "alt+shift+c",
38-
"mac": "option+shift+c",
37+
"key": "ctrl+shift+c",
38+
"mac": "ctrl+shift+c",
3939
"when": "editorTextFocus"
4040
}
4141
]

0 commit comments

Comments
 (0)