ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Varnish VCL

Improved syntax highlighting for Varnish VCL configuration files

Details

Installs

  • Total 6K
  • Win 893
  • Mac 3K
  • Linux 1K
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Mac 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 1 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0
Linux 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0

Readme

Source
raw.​githubusercontent.​com

VCL Syntax Highlighting Plugin

This is a syntax highlighting plugin for Varnish VCL files in Sublime Text 2/3 that isn't completely broken, and supports the majority of Varnish VCL features.

It's been written from scratch and is extremely fast. Some of the other VCL tmLanguage files floating around there have causing my Sublime Text CPU usage to spike because of their complex regex. This plugin has no such issue.

If I've missed something, please open an issue so I can fix it (or send me a Pull Request). I work with Varnish daily, so I'll be actively maintaining this plugin.

Snippets

There are a bunch of snippets in the Snippets/ folder, please look there for more information.

  • acl - Creates an ACL
  • backend - Creates a backend
    • probe - Add a .probe definition to your backend
  • deliver - Replace with return (deliver);
  • director - Creates a director
  • if - Creates an if statement
  • log - Replace with std.log("");
  • lookup - Replace with return (lookup);
  • pass - Replace with return (pass);
  • restart - Replace with return (restart);
  • sub - Creates a subroutine