Skip to content

Commit

Permalink
Remove unnecessary after[]
Browse files Browse the repository at this point in the history
  • Loading branch information
chibicode committed Jun 17, 2018
1 parent bd4e534 commit 65c24f3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 9 deletions.
7 changes: 0 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ Below is an example of a [settings.json](https://code.visualstudio.com/Docs/cust
},
{
"before":["<C-n>"],
"after":[],
"commands": [
{
"command": ":nohl"
Expand Down Expand Up @@ -257,7 +256,6 @@ There's several different mechanisms you can use to define custom remappings. Al
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [":"],
"after": [],
"commands": [
{
"command": "workbench.action.showCommands",
Expand All @@ -274,7 +272,6 @@ There's several different mechanisms you can use to define custom remappings. Al
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["Z", "Z"],
"after": [],
"commands": [
{
"command": ":wq",
Expand All @@ -291,7 +288,6 @@ There's several different mechanisms you can use to define custom remappings. Al
"vim.normalModeKeyBindingsNonRecursive": [
{
"before":["<C-n>"],
"after":[],
"commands": [
{
"command": ":nohl",
Expand All @@ -301,7 +297,6 @@ There's several different mechanisms you can use to define custom remappings. Al
},
{
"before": ["leader", "w"],
"after": [],
"commands": [
{
"command": "workbench.action.files.save",
Expand Down Expand Up @@ -336,7 +331,6 @@ There's several different mechanisms you can use to define custom remappings. Al
```json
"vim.visualModeKeyBindingsNonRecursive": [
{
"after": [],
"before": [
">"
],
Expand All @@ -348,7 +342,6 @@ There's several different mechanisms you can use to define custom remappings. Al
]
},
{
"after": [],
"before": [
"<"
],
Expand Down
2 changes: 0 additions & 2 deletions test/configuration/remapper.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ suite('Remapper', () => {
const normalModeKeyBindings = [
{
before: ['leader', 'w'],
after: [],
commands: [
{
command: 'workbench.action.closeActiveEditor',
Expand All @@ -32,7 +31,6 @@ suite('Remapper', () => {
const visualModeKeyBindings = [
{
before: ['leader', 'c'],
after: [],
commands: [
{
command: 'workbench.action.closeActiveEditor',
Expand Down

0 comments on commit 65c24f3

Please sign in to comment.