fix: simplify readme removing empty args from example remappings

This commit is contained in:
Jason Poon 2018-06-19 03:01:22 -07:00
parent b230831b58
commit 82e8b7a8dd

View File

@ -259,7 +259,6 @@ There's several different mechanisms you can use to define custom remappings. Al
"commands": [ "commands": [
{ {
"command": "workbench.action.showCommands", "command": "workbench.action.showCommands",
"args": []
} }
] ]
} }
@ -274,8 +273,7 @@ There's several different mechanisms you can use to define custom remappings. Al
"before": ["Z", "Z"], "before": ["Z", "Z"],
"commands": [ "commands": [
{ {
"command": ":wq", "command": ":wq"
"args": []
}, },
] ]
} }
@ -291,7 +289,6 @@ There's several different mechanisms you can use to define custom remappings. Al
"commands": [ "commands": [
{ {
"command": ":nohl", "command": ":nohl",
"args": []
} }
] ]
}, },
@ -300,7 +297,6 @@ There's several different mechanisms you can use to define custom remappings. Al
"commands": [ "commands": [
{ {
"command": "workbench.action.files.save", "command": "workbench.action.files.save",
"args": []
} }
] ]
} }
@ -336,7 +332,6 @@ There's several different mechanisms you can use to define custom remappings. Al
], ],
"commands": [ "commands": [
{ {
"args": [],
"command": "editor.action.indentLines" "command": "editor.action.indentLines"
} }
] ]
@ -347,7 +342,6 @@ There's several different mechanisms you can use to define custom remappings. Al
], ],
"commands": [ "commands": [
{ {
"args": [],
"command": "editor.action.outdentLines" "command": "editor.action.outdentLines"
} }
] ]