summaryrefslogtreecommitdiffstats
path: root/.emacs.d/etc/yasnippet/snippets/java-mode
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2020-04-11 23:54:33 -0400
committerAmin Bandali <bandali@gnu.org>2020-04-11 23:54:33 -0400
commit2ec18855d6d4e144776551dfb4921e1b133dfd29 (patch)
tree9bc2cca3414a2deba2595382e3c288d46dcff2cd /.emacs.d/etc/yasnippet/snippets/java-mode
parentc4b211177c12a97f8ffe10055325dd90a0a39b31 (diff)
downloadconfigs-2ec18855d6d4e144776551dfb4921e1b133dfd29.tar.gz
configs-2ec18855d6d4e144776551dfb4921e1b133dfd29.tar.xz
configs-2ec18855d6d4e144776551dfb4921e1b133dfd29.zip
move emacs files from .emacs.d to .
this repository's root will be ~/.emacs.d (again) from now on
Diffstat (limited to '.emacs.d/etc/yasnippet/snippets/java-mode')
-rw-r--r--.emacs.d/etc/yasnippet/snippets/java-mode/format5
-rw-r--r--.emacs.d/etc/yasnippet/snippets/java-mode/new5
-rw-r--r--.emacs.d/etc/yasnippet/snippets/java-mode/printf5
-rw-r--r--.emacs.d/etc/yasnippet/snippets/java-mode/println5
-rw-r--r--.emacs.d/etc/yasnippet/snippets/java-mode/return5
5 files changed, 0 insertions, 25 deletions
diff --git a/.emacs.d/etc/yasnippet/snippets/java-mode/format b/.emacs.d/etc/yasnippet/snippets/java-mode/format
deleted file mode 100644
index 7620366..0000000
--- a/.emacs.d/etc/yasnippet/snippets/java-mode/format
+++ /dev/null
@@ -1,5 +0,0 @@
-# -*- mode: snippet -*-
-# name: String.format
-# key: f
-# --
-String.format("$1${2:%n}");$0 \ No newline at end of file
diff --git a/.emacs.d/etc/yasnippet/snippets/java-mode/new b/.emacs.d/etc/yasnippet/snippets/java-mode/new
deleted file mode 100644
index 1ffd2e5..0000000
--- a/.emacs.d/etc/yasnippet/snippets/java-mode/new
+++ /dev/null
@@ -1,5 +0,0 @@
-# -*- mode: snippet -*-
-# name: new
-# key: new
-# --
-${1:Type} ${2:obj} = new ${3:Constr}(${4:args});$0 \ No newline at end of file
diff --git a/.emacs.d/etc/yasnippet/snippets/java-mode/printf b/.emacs.d/etc/yasnippet/snippets/java-mode/printf
deleted file mode 100644
index 1b8c277..0000000
--- a/.emacs.d/etc/yasnippet/snippets/java-mode/printf
+++ /dev/null
@@ -1,5 +0,0 @@
-# -*- mode: snippet -*-
-# name: printf
-# key: pf
-# --
-System.out.printf("$1${2:%n}"$3);$0 \ No newline at end of file
diff --git a/.emacs.d/etc/yasnippet/snippets/java-mode/println b/.emacs.d/etc/yasnippet/snippets/java-mode/println
deleted file mode 100644
index 7bb944c..0000000
--- a/.emacs.d/etc/yasnippet/snippets/java-mode/println
+++ /dev/null
@@ -1,5 +0,0 @@
-# -*- mode: snippet -*-
-# name: println
-# key: p
-# --
-System.out.println($1);$0 \ No newline at end of file
diff --git a/.emacs.d/etc/yasnippet/snippets/java-mode/return b/.emacs.d/etc/yasnippet/snippets/java-mode/return
deleted file mode 100644
index 977859e..0000000
--- a/.emacs.d/etc/yasnippet/snippets/java-mode/return
+++ /dev/null
@@ -1,5 +0,0 @@
-# -*- mode: snippet -*-
-# name: return
-# key: r
-# --
-return $1;$0 \ No newline at end of file