Klimi's new dotfiles with stow.
Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
|
# -*- mode: snippet -*-
|
|
|
# name: module ... end
|
|
|
# group : definitions
|
|
|
# key: mod
|
|
|
# --
|
|
|
module ${1:`(let ((fn (capitalize (file-name-nondirectory
|
|
|
(file-name-sans-extension
|
|
|
(or (buffer-file-name)
|
|
|
(buffer-name (current-buffer))))))))
|
|
|
(while (string-match "_" fn)
|
|
|
(setq fn (replace-match "" nil nil fn)))
|
|
|
fn)`}
|
|
|
$0
|
|
|
end
|