Skip to content

Commit

Permalink
fix: <C-p> is not work on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
zykowal committed Jan 8, 2025
1 parent 5cdb196 commit e6bb4ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 111 deletions.
11 changes: 0 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,6 @@ A VSCode extension that enhances your coding experience by providing preset shor
- `leader + s + c` - No highlight
- `leader + l` - Next Editor
- `leader + h` - Previous Editor
- `leader + i` - Toggle boolean
- `leader + m + a` - Toggle bookmarks
- `leader + m + l` - Bookmarks list
- `leader + m + L` - All bookmarks list
- `leader + m + c` - Clear bookmarks
- `leader + m + C` - Clear all bookmarks
- `leader + m + r` - Refresh bookmarks
- `[ + m` - Jump Previous bookmark
- `] + m` - Jump Next bookmark

### Normal Mode Special Keys

Expand All @@ -139,8 +130,6 @@ A VSCode extension that enhances your coding experience by providing preset shor
This extension depends on the following VSCode extensions:

- [Vim (vscodevim.vim)](https://marketplace.visualstudio.com/items?itemName=vscodevim.vim)
- [Toggle Boolean (silesky.toggle-boolean)](https://marketplace.visualstudio.com/items?itemName=silesky.toggle-boolean)
- [Bookmarks (alefragnani.bookmarks)](https://marketplace.visualstudio.com/items?itemName=alefragnani.bookmarks)

## Installation

Expand Down
104 changes: 4 additions & 100 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"url": "https://github.com/zykowal"
},
"license": "MIT",
"version": "0.0.1",
"version": "0.0.2",
"engines": {
"vscode": "^1.74.0"
},
Expand All @@ -24,18 +24,13 @@
],
"categories": [
"Keymaps",
"Extension Packs",
"Other"
],
"extensionDependencies": [
"vscodevim.vim",
"silesky.toggle-boolean",
"alefragnani.bookmarks"
"vscodevim.vim"
],
"extensionPack": [
"vscodevim.vim",
"silesky.toggle-boolean",
"alefragnani.bookmarks"
"vscodevim.vim"
],
"pricing": "Free",
"contributes": {
Expand Down Expand Up @@ -327,11 +322,6 @@
"key": "ctrl+c",
"command": "workbench.action.closeActiveEditor",
"when": "vim.mode != 'Insert'"
},
{
"key": "alt+b",
"command": "-extension.toggleBool",
"when": "editorTextFocus"
}
],
"configurationDefaults": {
Expand Down Expand Up @@ -671,15 +661,6 @@
"$"
]
},
{
"before": [
"leader",
"i"
],
"commands": [
"extension.toggleBool"
]
},
{
"before": [
"n"
Expand Down Expand Up @@ -792,84 +773,6 @@
"commands": [
"workbench.actions.view.problems"
]
},
{
"before": [
"leader",
"m",
"a"
],
"commands": [
"bookmarks.toggle"
]
},
{
"before": [
"leader",
"m",
"l"
],
"commands": [
"bookmarks.list"
]
},
{
"before": [
"leader",
"m",
"L"
],
"commands": [
"bookmarks.listFromAllFiles"
]
},
{
"before": [
"leader",
"m",
"c"
],
"commands": [
"bookmarks.clear"
]
},
{
"before": [
"leader",
"m",
"C"
],
"commands": [
"bookmarks.clearFromAllFiles"
]
},
{
"before": [
"leader",
"m",
"r"
],
"commands": [
"bookmarks.refresh"
]
},
{
"before": [
"[",
"m"
],
"commands": [
"bookmarks.jumpToPrevious"
]
},
{
"before": [
"]",
"m"
],
"commands": [
"bookmarks.jumpToNext"
]
}
],
"vim.visualModeKeyBindingsNonRecursive": [
Expand Down Expand Up @@ -940,6 +843,7 @@
"<C-n>": false,
"<C-j>": false,
"<C-k>": false,
"<C-p>": false,
"<C-d>": true
},
"extensions.experimental.affinity": {
Expand Down

0 comments on commit e6bb4ce

Please sign in to comment.