Skip to content

Commit cead991

Browse files
committed
Add plantuml-mode
1 parent e1cbbdf commit cead991

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+357
-0
lines changed

plantuml-mode/a

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# -*- mode: snippet -*-
2+
# contributor: M. Yas. Davoodeh
3+
# name: {abstract}
4+
# --
5+
{abstract} $0

plantuml-mode/art

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# -*- mode: snippet -*-
2+
# contributor: M. Yas. Davoodeh
3+
# name: artifact ... {...}
4+
# --
5+
artifact ${1:Name} ${2:}{
6+
$0
7+
}

plantuml-mode/card

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# -*- mode: snippet -*-
2+
# contributor: M. Yas. Davoodeh
3+
# name: card ... {...}
4+
# --
5+
card ${1:Name} ${2:}{
6+
$0
7+
}

plantuml-mode/cloud

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# -*- mode: snippet -*-
2+
# contributor: M. Yas. Davoodeh
3+
# name: cloud ... {...}
4+
# --
5+
cloud ${1:Name} ${2:}{
6+
$0
7+
}

plantuml-mode/clr

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# -*- mode: snippet -*-
2+
# contributor: M. Yas. Davoodeh
3+
# name: color tag
4+
# --
5+
<color:$1>$0

plantuml-mode/cls

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# -*- mode: snippet -*-
2+
# contributor: M. Yas. Davoodeh
3+
# name: class ... {...}
4+
# --
5+
class ${1:Name} {
6+
$0
7+
}

plantuml-mode/comp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# -*- mode: snippet -*-
2+
# contributor: M. Yas. Davoodeh
3+
# name: component ... {...}
4+
# --
5+
component ${1:Name} ${2:}{
6+
$0
7+
}

plantuml-mode/d

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# -*- mode: snippet -*-
2+
# contributor: M. Yas. Davoodeh
3+
# name: Up -down-> Down
4+
# --
5+
${1:Up} -down${3:-}> ${2:Down}

plantuml-mode/db

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# -*- mode: snippet -*-
2+
# contributor: M. Yas. Davoodeh
3+
# name: database ... {...}
4+
# --
5+
database ${1:Name} ${2:}{
6+
$0
7+
}

plantuml-mode/e

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# -*- mode: snippet -*-
2+
# contributor: M. Yas. Davoodeh
3+
# name: entity
4+
# --
5+
entity ${1:Name} {
6+
id : integer <<generated>>
7+
--
8+
$0
9+
}

0 commit comments

Comments
 (0)