如何在 Chrome 中禁用纯文本文件中的自动换行

发布于 2024-11-04 08:03:23 字数 171 浏览 0 评论 0原文

我需要 Chrome 来显示带有不应换行的长行的纯文本文件。但是,当 Chrome 显示纯文本文件 (text/plain) 时,它会自动换行。我怎样才能让它表现出类似 Firefox 的行为(不换行,而是显示滚动条)?

我尝试将文本包装到一个元素中,它可以工作,但加载时间惊人,即使对于相对较短的文本也是如此。

I need Chrome to display plain text files with long lines that should not be wrapped. But when Chrome displays a plain text file (text/plain) it wraps the lines around. How can I induce it to exhibit Firefox-like behavior (no wrapping, show scrollbars instead)?

I have tried to wrap the text into a element and it works but takes astonishing amount of time to load, even for relatively short text.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

野侃 2024-11-11 08:03:23

更简单的解决方案是右键单击并打开“查看页面源代码”。在此视图中,默认情况下不会换行,“换行”是一个可以通过页面顶部的复选框进行切换的选项。

The easier solution for this is to right click and open "View Page Source". In this view the lines are not wrapped by default and "Line Wrap" is an option that can be toggled with a check box at the top of the page.

指尖凝香 2024-11-11 08:03:23

我也一直在看这个。我发现的最接近的是使用命令行并启动 chrome,但强制创建自定义用户样式表。

记录于此处:http://code.google.com/p/chromium/ issues/detail?id=2393

然后,您可以编辑本地样式表并更新 pre 标记的 css(这是 chrome 默认呈现文本/纯文本的方式)以删除“word-wrap:break-word”所以线路没有断。

I've been looking at this too. The closest I've found is to use the command line and launch chrome but forcing to create a custom user style sheet.

Documented here : http://code.google.com/p/chromium/issues/detail?id=2393

You can then edit you local style sheet and update the css for pre tags (which is how chrome renders text/plain by default) to remove the "word-wrap: break-word" so the lines are not broken.

慢慢从新开始 2024-11-11 08:03:23

我刚刚加载了 Syntaxtic 扩展,它在我的 Windows 7 上完美运行。每当加载文本文件时,它都会自动解开行!

I just loaded Syntaxtic extension and it works perfectly on my Windows 7. It unwraps the lines automatically whenever a text file is loaded!

鱼窥荷 2024-11-11 08:03:23

我不想为如此简单的事情建议扩展,但 Syntaxtic! 扩展支持这。

它用于向文本文件添加语法突出显示和行号,因此它的作用肯定比您想要的要多,但至少它可以禁用自动换行。

I hate to suggest an extension for something so simple, but the Syntaxtic! extension supports this.

It's used to add syntax highlighting and line numbers to text files, so it definitely does more than you want it to, but at least it can disable word wrap.

今天小雨转甜 2024-11-11 08:03:23

您可以根据具体情况使用 Stylus 等工具来处理此问题。

我刚刚为我关心的页面添加了一条规则,其中包含:

pre { 
    white-space: pre !important; 
}

You can handle this on a case-by-case basis with something like Stylus.

I just added a rule for the page I cared about that contained:

pre { 
    white-space: pre !important; 
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文