-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor code fixes, remove key bindings
- Loading branch information
1 parent
37759e1
commit f36ac3d
Showing
5 changed files
with
58 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[ | ||
{ | ||
"keys": [ | ||
"ctrl+alt+j" | ||
], | ||
"command": "pretty_json" | ||
}, | ||
{ | ||
"keys": ["ctrl+r"], | ||
"command": "pretty_json_goto_symbol", | ||
"context": [ | ||
{ "key": "selector", "operator": "equal", "operand": "source.json" } | ||
] | ||
} | ||
// { | ||
// "keys": [ | ||
// "ctrl+alt+j" | ||
// ], | ||
// "command": "pretty_json" | ||
// }, | ||
// { | ||
// "keys": ["ctrl+r"], | ||
// "command": "pretty_json_goto_symbol", | ||
// "context": [ | ||
// { "key": "selector", "operator": "equal", "operand": "source.json" } | ||
// ] | ||
// } | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[ | ||
{ | ||
"keys": [ | ||
"super+ctrl+j" | ||
], | ||
"command": "pretty_json" | ||
}, | ||
{ | ||
"keys": ["super+r"], | ||
"command": "pretty_json_goto_symbol", | ||
"context": [ | ||
{ "key": "selector", "operator": "equal", "operand": "source.json" } | ||
] | ||
} | ||
// { | ||
// "keys": [ | ||
// "super+ctrl+j" | ||
// ], | ||
// "command": "pretty_json" | ||
// }, | ||
// { | ||
// "keys": ["super+r"], | ||
// "command": "pretty_json_goto_symbol", | ||
// "context": [ | ||
// { "key": "selector", "operator": "equal", "operand": "source.json" } | ||
// ] | ||
// } | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
[ | ||
{ | ||
"keys": [ | ||
"ctrl+alt+j" | ||
], | ||
"command": "pretty_json" | ||
}, | ||
{ | ||
"keys": [ | ||
"ctrl+alt+m" | ||
], | ||
"command": "un_pretty_json" | ||
}, | ||
{ | ||
"keys": ["ctrl+r"], | ||
"command": "pretty_json_goto_symbol", | ||
"context": [ | ||
{ "key": "selector", "operator": "equal", "operand": "source.json" } | ||
] | ||
} | ||
// { | ||
// "keys": [ | ||
// "ctrl+alt+j" | ||
// ], | ||
// "command": "pretty_json" | ||
// }, | ||
// { | ||
// "keys": [ | ||
// "ctrl+alt+m" | ||
// ], | ||
// "command": "un_pretty_json" | ||
// }, | ||
// { | ||
// "keys": ["ctrl+r"], | ||
// "command": "pretty_json_goto_symbol", | ||
// "context": [ | ||
// { "key": "selector", "operator": "equal", "operand": "source.json" } | ||
// ] | ||
// } | ||
|
||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
f36ac3d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why were keybindings removed? 🤔
f36ac3d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Keybindings should be a user leave setting and it conflicted with a number of other packages.
f36ac3d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A list of commands should be provided, and it took me a long time to guess the commands needed.
f36ac3d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#143
f36ac3d
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree. I will get this fixed