We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, thanks for making this! No coffeescript dependency is what I was searching for. But it doesn't work as expected. For example:
'global': 'cmd-shift-y': 'application:toggle-main-window' 'body': 'cmd-shift-s': 'core:sync-db' '.CodeMirror textarea': 'alt-shift-F': 'native!'
Yields actually:
{ "global": { "cmd-shift-y": "application:toggle-main-window", "body": { "cmd-shift-s": "core:sync-db", ".CodeMirror textarea": { "alt-shift-F": "native!" } } } }
Expected:
{ "global": { "cmd-shift-y": "application:toggle-main-window" }, "body": { "cmd-shift-s": "core:sync-db", }, ".CodeMirror textarea": { "alt-shift-F": "native!" } }
Could you look into it? Thanks in advance!
The text was updated successfully, but these errors were encountered:
Indentation rules are kind of unimplemented yet:
cson2json/src/parser/cson.pegjs
Line 2 in 6cfbea1
They seemed pretty tricky to implement and I actually didn't need this, so I didn't implement them.
PR welcome though.
Sorry, something went wrong.
This should be rewritten with reghex, which should be pretty fun to do and would make the library smaller and faster.
Cool😍
string
scope
undefined
No branches or pull requests
Hi, thanks for making this! No coffeescript dependency is what I was searching for.
But it doesn't work as expected. For example:
Yields actually:
Expected:
Could you look into it? Thanks in advance!
The text was updated successfully, but these errors were encountered: