aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax/vim.vim
diff options
context:
space:
mode:
authorMichael Reed <m.reed@mykolab.com>2015-04-06 19:27:45 -0400
committerMichael Reed <m.reed@mykolab.com>2015-04-10 16:38:11 -0400
commit95b7059d45a33dc5b7cc7410289e2d7f88c45993 (patch)
tree383285025350db8f68a2223f94fed95b0413d23a /runtime/syntax/vim.vim
parent5bc151c2a401aa2b91adc783b9155895c6a483d1 (diff)
downloadrneovim-95b7059d45a33dc5b7cc7410289e2d7f88c45993.tar.gz
rneovim-95b7059d45a33dc5b7cc7410289e2d7f88c45993.tar.bz2
rneovim-95b7059d45a33dc5b7cc7410289e2d7f88c45993.zip
Remove unused 'if_[language].txt': Review
Diffstat (limited to 'runtime/syntax/vim.vim')
-rw-r--r--runtime/syntax/vim.vim7
1 files changed, 1 insertions, 6 deletions
diff --git a/runtime/syntax/vim.vim b/runtime/syntax/vim.vim
index 5f853a1c6d..0842e53492 100644
--- a/runtime/syntax/vim.vim
+++ b/runtime/syntax/vim.vim
@@ -550,14 +550,9 @@ syn region vimGlobal matchgroup=Statement start='\<v\%[global]!\=/' skip='\\.' e
" Allows users to specify the type of embedded script highlighting
" they want: (perl/python/ruby/tcl support)
" g:vimsyn_embed == 0 : don't embed any scripts
-" g:vimsyn_embed ~= 'l' : embed lua (but only if vim supports it)
-" g:vimsyn_embed ~= 'm' : embed mzscheme (but only if vim supports it)
-" g:vimsyn_embed ~= 'p' : embed perl (but only if vim supports it)
" g:vimsyn_embed ~= 'P' : embed python (but only if vim supports it)
-" g:vimsyn_embed ~= 'r' : embed ruby (but only if vim supports it)
-" g:vimsyn_embed ~= 't' : embed tcl (but only if vim supports it)
if !exists("g:vimsyn_embed")
- let g:vimsyn_embed= "lmpPr"
+ let g:vimsyn_embed= "P"
endif
" [-- lua --] {{{3