LogMagic
Javascript console.log statements at the tip of your fingers
Details
Installs
- Total 2K
- Win 855
- Mac 648
- Linux 278
Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 3 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
SublimeLogMagic
Easily log JavaScript variables and parameters with keyboard shortcuts.
Now with CoffeeScript support!
Installing
Simply look for “Log Magic” in Package Control.
Usage
Simply press cmd+alt+j
(ctrl+alt+j
) to produce magic downwards or cmd+alt+k
(ctrl+alt+k
) to produce magic upwards.
When you're done press cmd+alt+l
(ctrl+alt+l
) to remove all magic.
You can also run these commands manually:
- LogMagic Statement (down)
- LogMagic Statement (up)
- LogMagic Remove all
Features
Log quickly
Any log statement is just a keyboard shortuct away
Log anything
LogMagic inspects the current line and tries to extract interesting information from it:
- variable assignments
- function parameters in a function definition
- parameters in a function call
- supports ES6 destructuring
- supports ES6 optional parameters
- supports flowtype (to some extent)
- ignores known values such as numbers, true,
false
, null
and undefined
- falls back to printing L<line number>
if it fails to parse anything meaningful
Cycle through log types
Press the same keyboard shortcuts when already on a log statement to cycle through log
,
info
, warn
and error
.
Up / Down support
You can add the log statement on the previous or the next line. This is especially helpful in case of return statements.
Logging upwards can also change what's logged. Eg in the following case we're more interested in the arguments passed to the callback than the variable assignment.
ES6 destructuring support
LogMagic can parse destructuring and extract the necessary variable names from it (even in case of renamed properties)
Flowtype support
Flowtype is cool. Best effort has been made to ignore flowtype's annotations and still produce a meaningful log statement (but expect kinks and bugs here).
Remove all log statements
With one command you can remove all log statements from the current file.
CoffeeScript support
Logs stuff from coffeescript code. Even tries to understand function calls without parenthesis. Support for this is limited but 90% of the time it should work all the time.
Customizing
Default configuration:
{
"always_log_filename": false,
"default_log_level": "log",
"max_identifier_length": 21,
"print_trailing_semicolon": false
}
Configuration options:
always_log_filename
- iftrue
, always prependsfilename:lineno
to the log messagesdefault_log_level
- specify the method name used for logging. Can belog
,info
,warn
,error
or even a custom method namemax_identifier_length
- specify how long the identifier names can be before they start to be shortened. Also applies to thefilename
of the buffer (if outputted)print_trailing_semicolons
- iftrue
adds a;
at the end of the log statement
You can override the custom keyboard shortcuts by adding this to your personal keyboard shortcuts file:
[
{ "keys": ["super+alt+j"], "command": "log_magic_down", "context":
[
{ "operand": "source.js", "operator": "equal", "match_all": true, "key": "selector" }
]
},
{ "keys": ["super+alt+k"], "command": "log_magic_up", "context":
[
{ "operand": "source.js", "operator": "equal", "match_all": true, "key": "selector" }
]
},
{ "keys": ["super+alt+l"], "command": "log_magic_remove_all", "context":
[
{ "operand": "source.js", "operator": "equal", "match_all": true, "key": "selector" }
]
},
{ "keys": ["super+alt+j"], "command": "log_magic_down", "context":
[
{ "operand": "source.coffee", "operator": "equal", "match_all": true, "key": "selector" }
]
},
{ "keys": ["super+alt+k"], "command": "log_magic_up", "context":
[
{ "operand": "source.coffee", "operator": "equal", "match_all": true, "key": "selector" }
]
},
{ "keys": ["super+alt+l"], "command": "log_magic_remove_all", "context":
[
{ "operand": "source.coffee", "operator": "equal", "match_all": true, "key": "selector" }
]
}
]
Contributing
Issues are welcome, especially if it spits out invalid javascript.
Btw this plugin should theoretically mostly work for most C-based languages (although by default
the keyboard shortcuts are only enabled for JavaScript and it spits out console.*
statements).