Updated names to avoid conflicts

Apparently, two snippets can't have the same name and different
keys. Now they all show up in yasnippet properly.

Signed-off-by: Jonas Kalderstam <jonas@kalderstam.se>
This commit is contained in:
Jonas Kalderstam 2014-01-28 13:40:26 +01:00
parent 8b5bfb4b00
commit 8339ab6d52
4 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# -*- mode: snippet -*-
# contributor: Jonas Kalderstam <jonas@kalderstam.se>
# name: program ... end program ...
# name: program .. end program
# key: program
# --
program ${1:name}

View File

@ -1,6 +1,6 @@
# -*- mode: snippet -*-
# contributor: Jonas Kalderstam <jonas@kalderstam.se>
# name: pure function ... end function ...
# name: pure function .. end function
# key: pure function
# --
pure function ${1:name} (${2:arg})

View File

@ -1,6 +1,6 @@
# -*- mode: snippet -*-
# contributor: Jonas Kalderstam <jonas@kalderstam.se>
# name: pure subroutine ... end subroutine ...
# name: pure subroutine .. end subroutine
# key: pure subroutine
# --
pure subroutine ${1:name} (${2:arg})

View File

@ -1,6 +1,6 @@
# -*- mode: snippet -*-
# contributor: Jonas Kalderstam <jonas@kalderstam.se>
# name: subroutine ... end subroutine ...
# name: subroutine .. end subroutine
# key: subroutine
# --
subroutine ${1:name} (${2:arg})