Created
August 28, 2012 04:18
-
-
Save violetyk/3494937 to your computer and use it in GitHub Desktop.
showmarks.vimの設定
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"---------------------------------------------------- | |
" showmarks.vim | |
" <Leader>mt ON/OFFトグル。 | |
" <Leader>mm 次の使えるマークを使ってマーク。 | |
" <Leader>mh カレント行ののマークを削除。 | |
" <Leader>ma カレントバッファのマークを全部削除。 | |
"---------------------------------------------------- | |
" Enable ShowMarks | |
let showmarks_enable = 1 | |
" Show which marks | |
let showmarks_include = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
"help、quickfixと編集不可のバッファについて、マークを表示しない。- | |
let showmarks_ignore_type = "hqm" | |
" Hilight lower & upper marks | |
"let showmarks_hlline_lower = 1 | |
"let showmarks_hlline_upper = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment