Harutyun Amirjanyan

Results 66 comments of Harutyun Amirjanyan

@pranavmappoli use https://github.com/mkslanc/ace-linters for syntax checking

The tests are failing because codemirror captures the esc key when it waits for autocompletion results to be gathered, even though the popup itself is not shown. It is usually...

As discussed in the linked pull request, overriding other keymaps seems to be required to correctly emulate vim. If there are other issue reports we may reopen this and try...

@thlorenz the worker client creates new blob every time mode is set to the editor, and it was behaving the same way before 7e33fe7ac2034c069d05b6ad52c52680c3c0bc79. @mrshawn191 do you create new session,...

Disable Acebug. It doesn't work firebug 2.

Hi, unfortunately firebug 2.0 have different implementation of code highlighting in the console, replacing which requires more work, and likely doesn't add enough value to keep Acebug popular. So most...

Yes adding support for simply evaluating coffeescript would be easier, basically requires changing `Firebug.CommandLine.enter` https://github.com/MikeRatcliffe/Acebug/blob/master/chrome/content/aceEditor.js#L395 and adding a call to coffeescript compiler. https://github.com/MikeRatcliffe/Acebug/blob/master/chrome/content/aceEditor.js#L431-L442 Syntax highlighting for coffeescript, cells, error reporting...

Looking at the new code, it might be easier to wrap `commandLine.evaluate` instead of overriding enter. https://github.com/firebug/firebug/blob/master/extension/content/firebug/console/commandLine.js#L311. Also have a look at https://github.com/firebug/extension-examples using restartless extension template like https://github.com/firebug/extension-examples/tree/master/HelloBootAMD might...

I can add option for keeping it if you need, But i think, cells make clear button redundant, since any time you can just do `shift+enter` to create a new...

just stumbled onto FirebugChrome.toggleOrient, seems -moz-box-orient:vertical !important won't work (panelSplitter.orient = panelPane.orient = newValue; is needed) > But we obviously need to be a little smarter to do this only...