diff options
author | Teddy Wing | 2023-04-23 01:27:01 +0200 |
---|---|---|
committer | Teddy Wing | 2023-04-25 23:40:17 +0200 |
commit | 86caa65988585a8a98a94c7329732a9c9429944c (patch) | |
tree | 7f9341f74a8118476d9c4bc8022e1c5640909c40 /ftplugin | |
parent | 1049577ed42647abc7cfb27a540db42ef5c4f8f8 (diff) | |
download | dotvim-86caa65988585a8a98a94c7329732a9c9429944c.tar.bz2 |
ftplugin/java.vim: Set TComment commentstring to '// %s'
By default it's '/* %s */' which I don't like for line comments.
Diffstat (limited to 'ftplugin')
-rw-r--r-- | ftplugin/java.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ftplugin/java.vim b/ftplugin/java.vim new file mode 100644 index 0000000..b74b197 --- /dev/null +++ b/ftplugin/java.vim @@ -0,0 +1,2 @@ +" Comment string +call tcomment#DefineType('java', '// %s') |