mirror of
https://github.com/amix/vimrc
synced 2025-07-10 03:25:00 +08:00
Add support of auto format files.
This commit is contained in:
1
sources_non_forked/vim-autoformat/samples/java.java
Normal file
1
sources_non_forked/vim-autoformat/samples/java.java
Normal file
@ -0,0 +1 @@
|
||||
public class Blastoff{ public static void main(String[] args) { public static void countdown(int n, int m) { if (n == 0) { System.out.println("Blastoff!"); } else { System.out.println(n); countdown(n - 1); } } }}
|
Reference in New Issue
Block a user