当前位置: 首页 > 工具软件 > GitHub Atom > 使用案例 >

GitHub Atom - 移除编辑器内的竖线

商骞仕
2023-12-01

本文转载至:http://stackoverflow.com/questions/25579775/github-atom-remove-the-center-line-in-the-editor

这根竖线是由 wrap-guide 包提供,如果要移除这根线:

方法1:

将 wrap-guide 包无效化。转到 Atom > Preferences > Packages, 在搜索栏输入 "wrap", 然后点击 wrap-guide 包的 Disable 按钮。 

方法2:

在 atom 的 stylesheet 里加入:

atom-text-editor::shadow {
    .wrap-guide {
        visibility: hidden;
    }
}


 类似资料: