Last active
January 3, 2016 07:58
-
-
Save zoncoen/8432517 to your computer and use it in GitHub Desktop.
Overlay '寿' on 'function' in javascript file. Require Vim’s conceal feature.
This file contains 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
" $HOME/.vim/after/syntax/javascript.vim | |
if !has('conceal') | |
finish | |
endif | |
set conceallevel=2 | |
syntax clear javaScriptFunction | |
syntax keyword javaScriptFunction function nextgroup=javaScriptFuncName skipwhite conceal cchar=寿 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment