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": [
{
"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"],
"commands": [
{
"command": ":wq",
"args": []
"command": ":wq"
},
]
}
@ -291,7 +289,6 @@ There's several different mechanisms you can use to define custom remappings. Al
"commands": [
{
"command": ":nohl",
"args": []
}
]
},
@ -300,7 +297,6 @@ There's several different mechanisms you can use to define custom remappings. Al
"commands": [
{
"command": "workbench.action.files.save",
"args": []
}
]
}
@ -336,7 +332,6 @@ There's several different mechanisms you can use to define custom remappings. Al
],
"commands": [
{
"args": [],
"command": "editor.action.indentLines"
}
]
@ -347,7 +342,6 @@ There's several different mechanisms you can use to define custom remappings. Al
],
"commands": [
{
"args": [],
"command": "editor.action.outdentLines"
}
]