How to make the console of the Firefox DevTools multi-line? I am aware of the Shift+Enter keyboard shortcut, which makes the command line go to the next line. Though like in Firebug, I want to vertically separate my console into command line and results part, but I can not find that functionality.
相关问题
- softlinks atime and mtime modification
- Get unexpanded argument from bash command line
- Include and Execute EXE in C# Command Line App
- Batch - Set variables in for loop
- Rails gem update not working (version 4.1.1 to 4.2
相关文章
- Firefox remembering radio buttons incorrectly
- Compile and build with single command line Java (L
- How to update command line output?
- CSS Firefox box-shadow and outline
- How to execute another python script from your scr
- XML Parsing Error in Firefox developer console
- firefox ondrop event.dataTransfer is null after up
- CORS request did not succeed on Firefox but works
You can try the
scratchpad
. Go toSettings >> Available Toolbox Buttons
andcheck
the box forscratchpad
. Refer thescreenshot
:Once done, you'll have a
notepad-like
icon in yourdeveloper console navigation bar
on the right side.... Click on it and it will open ascratch pad
on which you can writecode
andexecute
...Good Luck.
The command line the Firefox DevTools has a "smart multi-line" feature. That means it detects when a command is not finished and automatically inserts a line break, e.g. when you write
document.
and hit Enter. As you mentioned, you can also insert a line break manually by pressing Shift+Enter.The DevTools also offer a completely separate command editor panel called Scratchpad, which you can enable via the settings (under the Default Developer Tools* section).
There is currently no multi-line editor as a side panel like Firebug's Command Editor, but it is already requested.
This is also described in the migration guide for Firebug users.