Skip to content

Commit

Permalink
Fix statusBarColors linting in vscode user settings. (VSCodeVim#3767)
Browse files Browse the repository at this point in the history
  • Loading branch information
alzabone authored and jpoon committed May 14, 2019
1 parent d7e638f commit 8e57602
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -583,32 +583,32 @@
"default": false
},
"vim.statusBarColors.normal": {
"type": "string",
"type": ["string", "array"],
"description": "Status bar color when in Normal mode",
"default": "#005f5f"
},
"vim.statusBarColors.insert": {
"type": "string",
"type": ["string", "array"],
"description": "Status bar color when in Insert mode",
"default": "#5f0000"
},
"vim.statusBarColors.visual": {
"type": "string",
"type": ["string", "array"],
"description": "Status bar color when in Visual mode",
"default": "#5f00af"
},
"vim.statusBarColors.visualline": {
"type": "string",
"type": ["string", "array"],
"description": "Status bar color when in VisualLine mode",
"default": "#005f5f"
},
"vim.statusBarColors.visualblock": {
"type": "string",
"type": ["string", "array"],
"description": "Status bar color when in VisualBlock mode",
"default": "#86592d"
},
"vim.statusBarColors.replace": {
"type": "string",
"type": ["string", "array"],
"description": "Status bar color when in Replace mode",
"default": "#00000"
},
Expand Down

0 comments on commit 8e57602

Please sign in to comment.