How to make ruler always be shown in Sublime text 2?

前端 未结 7 1258
无人及你
无人及你 2020-12-22 17:12

I use Sublime Text 2 and want a Ruler to be shown in every file with specific line-height. But I have to show it manually in every file.

相关标签:
7条回答
  • 2020-12-22 17:43

    If you change font, ruler will not be displayed. E.g. I set "font_face": "Lucida Grande", and ruler disappeared.

    0 讨论(0)
  • 2020-12-22 17:50

    I just had this problem and noticed that the my ruler was only showing up when I was slightly scrolled to the right horizontally. Turns out the reason it was disappearing was because I was slightly zoomed in. Press Cmd+0 to make sure you are zoomed to the default 100% size before trying other things in case this is also your issue.

    (I am using Sublime Text 3)

    0 讨论(0)
  • 2020-12-22 17:51

    Edit the "rulers" value in the default settings to contain the column number you want the ruler to be displayed on, and it will persist.

    0 讨论(0)
  • 2020-12-22 17:53

    Go to Sublime Text > Preferences > Settings - User

    Add a "rulers" setting with the lines you want for the ruler:

    // Adds a single vertical ruler at column 80
    "rulers": [80],
    

    If you want multiple rulers, separate the values with a comma:

    // Adds two vertical rulers: one at column 80 and one at column 120
    "rulers": [80, 120],
    

    Rulers not showing? Rulers are only shown when using a monospace font, which is the default font for Sublime Text. Ensure you are using a monospace font if the settings above don't work for you.

    0 讨论(0)
  • 2020-12-22 17:53

    While the answer by Ross Allen is great, it isn't the most convenient if you find yourself wanting to toggle the rulers on and off or change the width at various points while using Sublime.

    Luckily, someone made a Package that allows you to do this.

    https://packagecontrol.io/packages/QuickRulers

    The package works in both Sublime Text 2 and 3.


    Install Instructions:

    1. Install PackageControl
    2. Open PackageControll (e.g. via ⌘ + SHIFT + P)
    3. Type "Install" and select "Package Control: Install Package"
    4. Type "QuickRulers" and hit Enter to install the QuickRulers package.

    You can access the command (quick_rulers) through several different means, but by default it is loaded in Omnisearch via "QuickRulers: Open Panel". (i.e., Hit ⌘ + SHIFT + P and type "QuickRulers: Open Panel")

    0 讨论(0)
  • 2020-12-22 17:57

    Never edit Settings - Default; edit Settings - User instead. If you upgrade your SublimeText version you will lose all of your settings because Settings - Default will be overwritten.

    In the Packages folders the 'User/' folder will be ignored between upgrades of SublimeText, the settings here will be persistent.

    To enable the persistent rulers in any document, add the settings in Defaults - User:

    {
      "rulers": [75, 80, 85]
    }
    

    This example will display 3 rulers, at 75, 80 and 85 chars length.

    0 讨论(0)
提交回复
热议问题