Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Latest commit

 

History

21 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 

Repository files navigation

Syntax highlighting for AspectJ

This package provides syntax highlighting for Sublime Text 2 and 3. It is also used to highlight AspectJ code on GitHub (in files, Gists and Markdown documents).

Installation

Package Control

I recommend using Package Control, the Sublime Text package manager to install this package. It is much more convenient.

Manual installation

To install this package manually, please do:

cd /tmp
wget -O sublime-aspectj.tar.gz http://github.com/pchaigno/sublime-aspectj/tarball/master
tar -xzvf sublime-aspectj.tar.gz
mv pchaigno-sublime-aspectj-*/*.tmLanguage ~/.config/sublime-text-2/Packages/User/

GitHub preview

public aspect CacheAspect {

	public pointcut cache(Cachable c): execution(@Cachable * * (..)) && @annotation(c);
	
	Object around(Cachable cachable): cache(cachable) {
		return proceed(cachable);
	}
}

License

This package is under MIT license.

The Java syntax is based on https://github.com/textmate/java.tmbundle.

About

AspectJ syntax highlighting for Sublime Text

Topics

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Contributors