Skip to content

Commit fe63389

Browse files
committedApr 9, 2016
Add Show All Syntax Highlighting Rules as a vim til
1 parent 7f26998 commit fe63389

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed
 

Diff for: ‎README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ variety of languages and technologies. These are things that don't really
77
warrant a full blog post. These are mostly things I learn by pairing with
88
smart people at [Hashrocket](http://hashrocket.com/).
99

10-
_388 TILs and counting..._
10+
_389 TILs and counting..._
1111

1212
---
1313

@@ -453,6 +453,7 @@ _388 TILs and counting..._
453453
- [Searching For Hex Digits](vim/searching-for-hex-digits.md)
454454
- [Set End Of Line Markers](vim/set-end-of-line-markers.md)
455455
- [Set Your Color Scheme](vim/set-your-color-scheme.md)
456+
- [Show All Syntax Highlighting Rules](vim/show-all-syntax-highlighting-rules.md)
456457
- [Split Different](vim/split-different.md)
457458
- [Splitting For New Files](vim/splitting-for-new-files.md)
458459
- [Swap Occurrences Of Two Words](vim/swap-occurrences-of-two-words.md)

Diff for: ‎vim/show-all-syntax-highlighting-rules.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Show All Syntax Highlighting Rules
2+
3+
When Vim adds syntax highlighting to the contents of a buffer based on its
4+
`filetype`, it does so with a set of rules. These rules specify particular
5+
colors for each set of named tokens that match particular patterns. You can
6+
check out the syntax highlighting rules for the current `filetype` of the
7+
current buffer by running:
8+
9+
```
10+
:syntax
11+
```
12+
13+
See `:h :syntax` for more details.

0 commit comments

Comments
 (0)
Please sign in to comment.