Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/valloric/vim-operator-highlight
A plugin that highlights operator characters for every language.
https://github.com/valloric/vim-operator-highlight
Last synced: 30 days ago
JSON representation
A plugin that highlights operator characters for every language.
- Host: GitHub
- URL: https://github.com/valloric/vim-operator-highlight
- Owner: Valloric
- License: mit
- Created: 2011-09-02T17:58:09.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2015-02-08T05:34:02.000Z (almost 10 years ago)
- Last Synced: 2024-10-13T10:21:03.687Z (2 months ago)
- Language: VimL
- Homepage:
- Size: 164 KB
- Stars: 21
- Watchers: 5
- Forks: 18
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
This is a simple plugin that highlights operator characters for every language.
I want characters like `+,-,/,*,.,:,=` etc. highlighted in every programming
language I write, so I wrote this simple script.The default color for operator highlighting is cyan, but this can be changed by
setting a different value to the `g:ophigh_color` variable for terminal and
`g:ophigh_color_gui` variable for gui. For instance, adding
`let g:ophigh_color = 226` and `let g:ophigh_color_gui = "#F6FF00"` to your
`vimrc` will highlight all operators with a bright yellow color.You can also configure the plugin to ignore certain filetypes and thus not
highlight operators in them. This is done by adding a new key to the
`g:ophigh_filetypes_to_ignore` dictionary (with whatever value you want, only
the key needs to be present). For example:
`g:ophigh_filetypes_to_ignore.markdown = 1`.If you add that to your vimrc, then markdown files will be ignored. NOTE: the
key needs to be the filetype, not the extension! You can get the filetype of the
current file in Vim with `:set filetype?`.