Skip to content

emacs-jp/helm-c-yasnippet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

91 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

helm-c-yasnippet melpa badge melpa stable badge Github Actions Status

helm source for yasnippet.el

Screenshot

helm-c-yasnippet

Installation

helm-c-yasnippet is available on MELPA and MELPA-STABLE.

You can install helm-c-yasnippet with the following command.

M-x package-install [RET] helm-c-yasnippet [RET]

Sample Configuration

(require 'yasnippet)
(require 'helm-c-yasnippet)
(setq helm-yas-space-match-any-greedy t)
(global-set-key (kbd "C-c y") 'helm-yas-complete)
(yas-global-mode 1)
(yas-load-directory "<path>/<to>/snippets/")