搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Can't copy batch file code from website.

  • 11 个回答
  • 1 人有此问题
  • 26 次查看
  • 最后回复者为 Darkje

more options

If I try to copy a batch file from a [code] block on the 'steam guides' website, the resulting paste is missing returns.

https://support.cdn.mozilla.net/media/uploads/images/2017-12-05-08-08-00-cf81bc.png

If I try to copy a batch file from a [code] block on the 'steam guides' website, the resulting paste is missing returns. https://support.cdn.mozilla.net/media/uploads/images/2017-12-05-08-08-00-cf81bc.png
已附加屏幕截图

被采纳的解决方案

Try to use View Selection Source in the right-click context menu of the selected text. You can also use the Inspector to add <pre>TEXT</pre> tags around the text (right-click: Edit as HTML).

定位到答案原位置 👍 1

所有回复 (11)

more options

Hello, if you are copying the raw paste data, you will have to add the returns yourself, and it should work as expected. This goes for all web browsers -- not just Firefox.

more options

No, if I try microsoft's or google's competition browsers i do get the expected result.

You can try for yourself here: http://steamcommunity.com/sharedfiles/filedetails/?id=1173862256

more options

Strange, try copying and pasting again but paste the raw data into a pastebin and copy from there.

more options

Nope, doesn't work either, if I look with the 'inspector' function it's already stripped of returns there, so if I paste into pastebin it's the same soup as it is in a notepad file. I don't get why it stopped working since 57.0, it used to work before.

more options

File a bug at https://bugzilla.mozilla.org -- Once there you will need to create an account. When registered, please see the documentation for bug filing to help get you started.

more options

Okay, I filed a bug .

thanks

more options

If my response helped you, mark as solution.

more options

选择的解决方案

Try to use View Selection Source in the right-click context menu of the selected text. You can also use the Inspector to add <pre>TEXT</pre> tags around the text (right-click: Edit as HTML).

more options

'View selection source' worked! I could copy it normally then. Same when edit as html is used in inspector.

I marked your answer as a solution, but I still don't understand why I should be this complicated. It used to work with a simple select/copy/paste action, as it does in any other browser I tested except the firefox 57.0(.1) browsers.

more options

It has to do with what Firefox places on the clipboard.

If I use the text/html flavor on the clipboard then it works and it preserves the linefeed characters.

@echo off
cls
rem *** main script starts, set window title ***
rem --------------------------------------------

If I use text/unicode flavor on the clipboard then it doesn't work.

@echo off cls rem *** main script starts, set window title *** rem --------------------------------------------

Text/unicode seems to place whitespace on the clipboard formatted as HTML and converts linefeed to spaces (a <br> would be converted to a linefeed).

more options

Yeah, I've found that out too now. I still don't get why firefox 57 would handle this different from other browsers and i's own predecessors.

If this is how it should be, then I kind of expect an option where I right-click to copy, like 'copy as html' and 'copy as unicode'. Like it is now, I feel it's over complicated to get the desired result. Maybe not for me but for an average user it is.

Anyway thanks to all trying and explaining what's going on!