File tree 2 files changed +15
-1
lines changed
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ variety of languages and technologies. These are things that don't really
7
7
warrant a full blog post. These are mostly things I learn by pairing with
8
8
smart people at [ Hashrocket] ( http://hashrocket.com/ ) .
9
9
10
- _ 388 TILs and counting..._
10
+ _ 389 TILs and counting..._
11
11
12
12
---
13
13
@@ -453,6 +453,7 @@ _388 TILs and counting..._
453
453
- [ Searching For Hex Digits] ( vim/searching-for-hex-digits.md )
454
454
- [ Set End Of Line Markers] ( vim/set-end-of-line-markers.md )
455
455
- [ Set Your Color Scheme] ( vim/set-your-color-scheme.md )
456
+ - [ Show All Syntax Highlighting Rules] ( vim/show-all-syntax-highlighting-rules.md )
456
457
- [ Split Different] ( vim/split-different.md )
457
458
- [ Splitting For New Files] ( vim/splitting-for-new-files.md )
458
459
- [ Swap Occurrences Of Two Words] ( vim/swap-occurrences-of-two-words.md )
Original file line number Diff line number Diff line change
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.
You can’t perform that action at this time.
0 commit comments