KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
vim-regionsyntax
★ 12
Open GitHub ↗
vim dynamic partial highlighting.
Download README (.md)
Explore Similar Repositories
LiveWallpaper3D-jPCT-AE
:
Android LiveWallpaper 3D project (using jPCT-ae, jbrush-ae, GLWallpaperService)
ChromeCast-Kinect
:
Controlling a ChromeCast device with a Microsoft Kinect sensor
couchbase-lite-java-listener
:
Embedded web server to expose Couchbase Lite REST API on an http socket
DoctorJS
:
线上JS报错监控系统。
THREE.GUI
:
Simple 3D GUI for threejs.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
vim-regionsyntax
?
Download (.md)
### What for? ### When editing files with certain code blocks,it's nice to have them highlighted properly.  ### How to use it? ### `:[range]RegionSyntax filetype` highlight the selected block. `:RegionSyntaxToggle` enable/disable this plugin. Or you can specify new rules for dynamic syntax highlighting with the global variable g:regionsyntax_map. Say you would like to highlight this $$ ... $$ in html as tex,you could use the following config. ```vim let g:regionsyntax_map = { \ 'html': \ [{ \ 'start' : '\m^[ \t]*\$\$[ \t]*$', \ 'ft' : 'tex', \ 'end' : '^[ \t]*\$\$[ \t]*$' \ }]} ``` You could set a list of rules for a certain local filetype. for more info, please view the [doc](https://raw.github.com/farseer90718/vim-regionsyntax/master/doc/regionsyntax.txt) ### License MIT