2018-03-30 00:10:07 +02:00
|
|
|
# -*- mode: snippet -*-
|
|
|
|
# key: module
|
|
|
|
# name: module
|
|
|
|
# condition: (= (length "module") (current-column))
|
|
|
|
# expand-env: ((yas-indent-line 'fixed))
|
|
|
|
# contributor: Luke Hoersten <luke@hoersten.org>
|
|
|
|
# --
|
2018-08-31 19:31:14 +02:00
|
|
|
--------------------------------------------------------------------------------
|
2018-03-30 00:10:07 +02:00
|
|
|
-- |
|
|
|
|
-- Module : $1
|
|
|
|
-- Description : $2
|
|
|
|
-- Maintainer : Griffin Smith <grfn@urbint.com>
|
|
|
|
-- Maturity : ${3:Draft, Usable, Maintained, OR MatureAF}
|
|
|
|
--
|
|
|
|
-- $4
|
2018-08-31 19:31:14 +02:00
|
|
|
--------------------------------------------------------------------------------
|
2018-03-30 00:10:07 +02:00
|
|
|
module ${1:`(if (not buffer-file-name) "Module"
|
|
|
|
(let ((name (file-name-sans-extension (buffer-file-name)))
|
|
|
|
(case-fold-search nil))
|
|
|
|
(if (or (cl-search "src/" name)
|
|
|
|
(cl-search "test/" name))
|
|
|
|
(replace-regexp-in-string "/" "."
|
|
|
|
(replace-regexp-in-string "^\/[^A-Z]*" ""
|
|
|
|
(car (last (split-string name "src")))))
|
|
|
|
(file-name-nondirectory name))))`}
|
|
|
|
(
|
|
|
|
) where
|
2018-08-31 19:31:14 +02:00
|
|
|
--------------------------------------------------------------------------------
|
2018-03-30 00:10:07 +02:00
|
|
|
import Prelude
|
2018-08-31 19:31:14 +02:00
|
|
|
--------------------------------------------------------------------------------
|
2018-03-30 00:10:07 +02:00
|
|
|
|
|
|
|
$0
|