1
在Vim中,01和cursorline
。我确信在某个地方有这样的选择,但我一直无法找到它。突出显示ST2中的光标列
有谁知道编辑器是否支持它,以及如何打开它?
只是要清楚,我正在寻找的是(Vim的截图)。
在Vim中,01和cursorline
。我确信在某个地方有这样的选择,但我一直无法找到它。突出显示ST2中的光标列
有谁知道编辑器是否支持它,以及如何打开它?
只是要清楚,我正在寻找的是(Vim的截图)。
在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]#$%^&*|+=[]{}`~?"
}
另外,如果有人可以解释如何插入图片时显示较小的图片,我感谢你。 – Rook