Skip to content
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vim Log Highlighting

Log highlighting example

Overview

Provides syntax highlighting for generic log files in VIM.

Some of the highlighted elements are:

  • Dates and times
  • Common log level keywords like ERROR, INFO, DEBUG
  • Numbers, booleans and strings
  • URLs and file paths
  • IP and MAC addresses
  • SysLog format columns
  • XML Tags
  • Other customized keywords

Installation

Install Script

./install.sh

Uninstall Script

./uninstall.sh

Manual Install

  • cp ./ftdetect/* ~/.vim/ftdetect/
  • cp ./syntax/* ~/.vim/syntax/
  • cp ./.vimrc ~/.vimrc

Note: .vimrc is a hidden file in the repository root.

Configuration

Once installed, the syntax highlighting will be enabled by default for files ending with .log and _log suffixes.

By default only uppercase keywords are recognized as level indicators in the log files. You can add additional log level keywords using the standard VIM syntax functions, for example by adding this to your .vimrc file:

" Add custom level identifiers
au rc Syntax log syn keyword logLevelError MY_CUSTOM_ERROR_KEYWORD

Likewise you can disable highlighting for elements you don't need:

" Remove highlighting for URLs
au rc Syntax log syn clear logUrl

Related Projects

About

Syntax highlighting for generic log files in VIM

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages