Skip to content

Commit

Permalink
Revise readme to include documentation or C/C++ syntax options
Browse files Browse the repository at this point in the history
  • Loading branch information
pappasam committed Feb 27, 2017
1 parent 0b40dbb commit 7447135
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,21 @@ let g:PaperColor_Light_Override = { 'background' : '#abcdef', 'cursorline' : '#d
#### Python

```VimL
let g:PaperColor_Python_Highlight_Builtins = 1 " turns built-in highlighting on
" highlight keywords for python language built-ins
" examples: (print, iter, dir)
let g:PaperColor_Python_Highlight_Builtins = 1
```

#### C / C++

```VimL
" highlight keywords from the C++ standard library
" examples: (cin, cout, insert, first)
let g:PaperColor_CPP_Highlight_Standard_Library = 1
" highlight keywords for built-in functions in the C language
" examples: (printf, bsearch, getenv)
let g:PaperColor_C_Highlight_Builtins = 1
```

## Syntax Highlighting Plugins Target
Expand Down

0 comments on commit 7447135

Please sign in to comment.