diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-14 08:52:35 -0700 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2013-09-14 08:52:35 -0700 |
commit | b061a2d99500a2aa3da9dae590ccc0c20edf6eb9 (patch) | |
tree | ff413638486547c80d70f5cc9d35207eba930c43 /after/syntax | |
parent | f0d869aea78030c6f802013a108678dd98e82378 (diff) | |
parent | e59b949deff549473e9ca71425dfdd4dee2e0bde (diff) | |
download | vim-polyglot-b061a2d99500a2aa3da9dae590ccc0c20edf6eb9.tar.gz vim-polyglot-b061a2d99500a2aa3da9dae590ccc0c20edf6eb9.zip |
Merge pull request #3 from duwanis/use_official_tomdoc_vim
Use the official tomdoc.vim repository
Diffstat (limited to 'after/syntax')
-rw-r--r-- | after/syntax/coffee.vim | 7 | ||||
-rw-r--r-- | after/syntax/ruby.vim | 4 |
2 files changed, 5 insertions, 6 deletions
diff --git a/after/syntax/coffee.vim b/after/syntax/coffee.vim index 92b83596..3781c3a3 100644 --- a/after/syntax/coffee.vim +++ b/after/syntax/coffee.vim @@ -5,8 +5,7 @@ " syn keyword tomdocKeywords Returns containedin=coffeeComment contained -syn keyword tomdocKeywords Yields containedin=coffeeComment contained -syn keyword tomdocKeywords Raises containedin=coffeeComment contained +syn keyword tomdocKeywords Throws containedin=coffeeComment contained syn keyword tomdocKeywords Examples containedin=coffeeComment contained syn keyword tomdocKeywords Signature containedin=coffeeComment contained @@ -16,6 +15,6 @@ syn match tomdocDescriptions +\s*Public:+he=e-1 containedin=coffeeComment contai syn match tomdocDescriptions +\s*Internal:+he=e-1 containedin=coffeeComment contained syn match tomdocDescriptions +\s*Deprecated:+he=e-1 containedin=coffeeComment contained -hi default link tomdocDescriptions TODO -hi default link tomdocKeywords TODO +hi default link tomdocDescriptions String +hi default link tomdocKeywords String hi default link tomdocArguments HELP diff --git a/after/syntax/ruby.vim b/after/syntax/ruby.vim index 1d164fdf..faa52b00 100644 --- a/after/syntax/ruby.vim +++ b/after/syntax/ruby.vim @@ -15,6 +15,6 @@ syn match tomdocDescriptions +\s*Public:+he=e-1 containedin=rubyComment containe syn match tomdocDescriptions +\s*Internal:+he=e-1 containedin=rubyComment contained syn match tomdocDescriptions +\s*Deprecated:+he=e-1 containedin=rubyComment contained -hi default link tomdocDescriptions TODO -hi default link tomdocKeywords TODO +hi default link tomdocDescriptions String +hi default link tomdocKeywords String hi default link tomdocArguments HELP |