2014-01-08 81 views
1

在Vim中,01​​和cursorline。我確信在某個地方有這樣的選擇,但我一直無法找到它。突出顯示ST2中的光標列

有誰知道編輯器是否支持它,以及如何打開它?

只是要清楚,我正在尋找的是(Vim的截圖)。

enter image description here

+0

另外,如果有人可以解釋如何插入圖片時顯示較小的圖片,我感謝你。 – Rook

回答

0

在CursorRuler看看:(?)https://github.com/icylace/CursorRuler

有一個鮮爲人知的無證設置稱爲"inverse_cursor_state": true,這(個人設置裏面放時),會將光標90度,使其強調當前的性格。

/用戶/主頁/庫/ Application Support /崇高文本2 /封裝/用戶/ Preferences.sublime的設置

{ 
    "auto_complete_triggers": 
    [ 
    { 
     "characters": "./\\()\"'-:,.;<>[email protected]#$%^&*|+=[]{}`~?", 
     "selector": "text.shtml" 
    } 
    ], 
    "color_scheme": "Packages/User/0.themes/0.lawlist.tmTheme", 
    "find_selected_text": false, 
    "font_face": "Courier", 
    "font_size": 18.0, 
    "forward_sync": true, 
    "ignored_packages": 
    [ 
    "Vintage", 
    "PersistentRegexHighlight" 
    ], 
    "ignored_words": 
    [ 
    "\\bf\\uline", 
    "\\begin{singlespace*}", 
    "Joinder" 
    ], 
    "inverse_cursor_state": true, 
    "keep_focus": false, 
    "scroll_past_end": true, 
    "show_full_path": true, 
    "word_separators": "./\\()\"'-:,.;<>[email protected]#$%^&*|+=[]{}`~?" 
}