You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
alternatively, use a package manager like [vim-plug](https://github.com/junegunn/vim-plug)
20
25
@@ -47,16 +52,6 @@ Default Value: 0
47
52
48
53
-----------------
49
54
50
-
```
51
-
let g:javascript_plugin_flow = 1
52
-
```
53
-
54
-
Enables syntax highlighting for [Flow](https://flowtype.org/).
55
-
56
-
Default Value: 0
57
-
58
-
-----------------
59
-
60
55
```vim
61
56
augroup javascript_folding
62
57
au!
@@ -69,34 +64,6 @@ Enables code folding for javascript based on our syntax file.
69
64
Please note this can have a dramatic effect on performance.
70
65
71
66
72
-
## Concealing Characters
73
-
74
-
You can customize concealing characters, if your font provides the glyph you want, by defining one or more of the following
75
-
variables:
76
-
77
-
let g:javascript_conceal_function = "ƒ"
78
-
let g:javascript_conceal_null = "ø"
79
-
let g:javascript_conceal_this = "@"
80
-
let g:javascript_conceal_return = "⇚"
81
-
let g:javascript_conceal_undefined = "¿"
82
-
let g:javascript_conceal_NaN = "ℕ"
83
-
let g:javascript_conceal_prototype = "¶"
84
-
let g:javascript_conceal_static = "•"
85
-
let g:javascript_conceal_super = "Ω"
86
-
let g:javascript_conceal_arrow_function = "⇒"
87
-
let g:javascript_conceal_noarg_arrow_function = "🞅"
88
-
let g:javascript_conceal_underscore_arrow_function = "🞅"
89
-
90
-
91
-
You can enable concealing within VIM with:
92
-
93
-
set conceallevel=1
94
-
95
-
OR if you wish to toggle concealing you may wish to bind a command such as the following which will map `<LEADER>l` (leader is usually the `\` key) to toggling conceal mode:
0 commit comments