diff --git a/README.md b/README.md index 9cb4cfc..b3c8196 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,12 @@ This is a **VSCode extension** inspired by the [Vim](https://www.vim.org/) plugi ## Configuration 🛠️ -Add this command to your keymappings: +You have to add a custom keybind for this extension to work in your `keybindings.json` file: + +1. Open **Command Palette**. +2. On Windows and Linux, press `Ctrl + Shift + P`. On macOS, press `Cmd + Shift + P`. +3. Search for `Open Keyboard Shortcuts (JSON)` and select it from the list. This command takes you directly to the `keybindings.json` file where all keyboard shortcuts customizations will be defined. +4. You can now add your keybinding for this extension to work. If you're adding the customization for the first time, you might see an empty array `[]`. Add the following: ```jsonc { @@ -25,7 +30,7 @@ Add this command to your keymappings: } ``` -You can customize the color and the duration of the highlight with these entries in your `settings.json`: +Also, you can customize the color and the duration of the highlight with these entries in your `settings.json`: ```jsonc { diff --git a/package-lock.json b/package-lock.json index 0cfb37e..a31b9bd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "highlight-on-copy", - "version": "1.0.1", + "version": "1.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "highlight-on-copy", - "version": "1.0.1", + "version": "1.0.2", "devDependencies": { "@types/mocha": "^10.0.6", "@types/node": "18.x", diff --git a/package.json b/package.json index 7f9398d..bffd877 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Highlight on Copy", "publisher": "mguellsegarra", "description": "Briefly flash and highlight selected copied text", - "version": "1.0.1", + "version": "1.0.2", "icon": "icon.png", "engines": { "vscode": "^1.88.0"