aboutsummaryrefslogtreecommitdiff
path: root/vim/bundle/vim-snippets/UltiSnips/bib.snippets
diff options
context:
space:
mode:
Diffstat (limited to 'vim/bundle/vim-snippets/UltiSnips/bib.snippets')
m---------vim/bundle/vim-snippets0
-rw-r--r--vim/bundle/vim-snippets/UltiSnips/bib.snippets52
2 files changed, 0 insertions, 52 deletions
diff --git a/vim/bundle/vim-snippets b/vim/bundle/vim-snippets
new file mode 160000
+Subproject 15d7e5ec26ec93adee4051b6359be90a943aa38
diff --git a/vim/bundle/vim-snippets/UltiSnips/bib.snippets b/vim/bundle/vim-snippets/UltiSnips/bib.snippets
deleted file mode 100644
index c9b8df5..0000000
--- a/vim/bundle/vim-snippets/UltiSnips/bib.snippets
+++ /dev/null
@@ -1,52 +0,0 @@
-priority -50
-
-snippet online "Online resource" b
-@online{${1:name},
- author={${2:author}},
- title={${3:title}},
- date={${4:date}},
- url={${5:url}}
-}
-$0
-endsnippet
-
-snippet article "Article reference" b
-@article{${1:name},
- author={${2:author}},
- title={${3:title}},
- journaltitle={${4:journal}},
- volume={${5:NN}},
- number={${6:NN}},
- year={${7:YYYY}},
- pages={${8:NN}--${9:NN}}
-}
-$0
-endsnippet
-
-snippet book "Book reference" b
-@book{${1:name},
- author={${2:author}},
- title={${3:title}},
- subtitle={${4:subtitle}},
- year={${5:YYYY}},
- location={${6:somewhere}},
- publisher={${7:publisher}},
- pages={${8:NN}--${9:NN}}
-}
-$0
-endsnippet
-
-snippet inb "In Book reference" b
-@inbook{${1:name},
- author={${2:author}},
- title={${3:title}},
- subtitle={${4:subtitle}},
- booktitle={${5:book}},
- editor={${6:editor}},
- year={${7:YYYY}},
- location={${8:somewhere}},
- publisher={${9:publisher}},
- pages={${10:NN}--${11:NN}}
-}
-$0
-endsnippet