├── .gitignore ├── .gitmodules ├── README.org ├── README_CN.org ├── custom.el ├── icons ├── banner.png ├── banner_blue.png ├── emacs-china-icon.icns └── spacemacs.icns ├── init.el ├── layers ├── ztlevi-defaults │ ├── config.el │ ├── funcs.el │ ├── local │ │ └── auto-save │ │ │ ├── auto-save.el │ │ │ └── auto-save.elc │ └── packages.el ├── ztlevi-misc │ ├── config.el │ ├── funcs.el │ ├── layers.el │ ├── local │ │ └── live-server │ │ │ └── live-server.el │ └── packages.el ├── ztlevi-org │ ├── config.el │ ├── funcs.el │ ├── packages.el │ └── reveal.js-3.6.0 │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── css │ │ ├── print │ │ │ ├── paper.css │ │ │ └── pdf.css │ │ ├── reveal.css │ │ ├── reveal.scss │ │ └── theme │ │ │ ├── README.md │ │ │ ├── beige.css │ │ │ ├── black.css │ │ │ ├── blood.css │ │ │ ├── league.css │ │ │ ├── moon.css │ │ │ ├── night.css │ │ │ ├── serif.css │ │ │ ├── simple.css │ │ │ ├── sky.css │ │ │ ├── solarized.css │ │ │ ├── source │ │ │ ├── beige.scss │ │ │ ├── black.scss │ │ │ ├── blood.scss │ │ │ ├── league.scss │ │ │ ├── moon.scss │ │ │ ├── night.scss │ │ │ ├── serif.scss │ │ │ ├── simple.scss │ │ │ ├── sky.scss │ │ │ ├── solarized.scss │ │ │ └── white.scss │ │ │ ├── template │ │ │ ├── mixins.scss │ │ │ ├── settings.scss │ │ │ └── theme.scss │ │ │ └── white.css │ │ ├── demo.html │ │ ├── index.html │ │ ├── js │ │ └── reveal.js │ │ ├── lib │ │ ├── css │ │ │ └── zenburn.css │ │ ├── font │ │ │ ├── league-gothic │ │ │ │ ├── LICENSE │ │ │ │ ├── league-gothic.css │ │ │ │ ├── league-gothic.eot │ │ │ │ ├── league-gothic.ttf │ │ │ │ └── league-gothic.woff │ │ │ └── source-sans-pro │ │ │ │ ├── LICENSE │ │ │ │ ├── source-sans-pro-italic.eot │ │ │ │ ├── source-sans-pro-italic.ttf │ │ │ │ ├── source-sans-pro-italic.woff │ │ │ │ ├── source-sans-pro-regular.eot │ │ │ │ ├── source-sans-pro-regular.ttf │ │ │ │ ├── source-sans-pro-regular.woff │ │ │ │ ├── source-sans-pro-semibold.eot │ │ │ │ ├── source-sans-pro-semibold.ttf │ │ │ │ ├── source-sans-pro-semibold.woff │ │ │ │ ├── source-sans-pro-semibolditalic.eot │ │ │ │ ├── source-sans-pro-semibolditalic.ttf │ │ │ │ ├── source-sans-pro-semibolditalic.woff │ │ │ │ └── source-sans-pro.css │ │ └── js │ │ │ ├── classList.js │ │ │ ├── head.min.js │ │ │ └── html5shiv.js │ │ ├── package.json │ │ ├── plugin │ │ ├── highlight │ │ │ └── highlight.js │ │ ├── markdown │ │ │ ├── example.html │ │ │ ├── example.md │ │ │ ├── markdown.js │ │ │ └── marked.js │ │ ├── math │ │ │ └── math.js │ │ ├── multiplex │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ ├── master.js │ │ │ └── package.json │ │ ├── notes-server │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ └── notes.html │ │ ├── notes │ │ │ ├── notes.html │ │ │ └── notes.js │ │ ├── print-pdf │ │ │ └── print-pdf.js │ │ ├── search │ │ │ └── search.js │ │ └── zoom-js │ │ │ └── zoom.js │ │ └── test │ │ ├── examples │ │ ├── assets │ │ │ ├── image1.png │ │ │ └── image2.png │ │ ├── barebones.html │ │ ├── embedded-media.html │ │ ├── math.html │ │ ├── slide-backgrounds.html │ │ └── slide-transitions.html │ │ ├── qunit-1.12.0.css │ │ ├── qunit-1.12.0.js │ │ ├── simple.md │ │ ├── test-markdown-element-attributes.html │ │ ├── test-markdown-element-attributes.js │ │ ├── test-markdown-external.html │ │ ├── test-markdown-external.js │ │ ├── test-markdown-options.html │ │ ├── test-markdown-options.js │ │ ├── test-markdown-slide-attributes.html │ │ ├── test-markdown-slide-attributes.js │ │ ├── test-markdown.html │ │ ├── test-markdown.js │ │ ├── test-pdf.html │ │ ├── test-pdf.js │ │ ├── test.html │ │ └── test.js ├── ztlevi-prog │ ├── config.el │ ├── funcs.el │ └── packages.el ├── ztlevi-ui │ ├── config.el │ ├── funcs.el │ ├── local │ │ └── ztlevi-modeline │ │ │ └── ztlevi-modeline.el │ └── packages.el └── ztlevi │ ├── config.el │ ├── funcs.el │ ├── keybindings.el │ └── layers.el ├── lib ├── ditaa.jar └── plantuml.jar ├── screenshots └── 1.jpg └── snippets ├── antlr-mode ├── project ├── property └── target ├── apples-mode ├── .yas-parents ├── comment ├── considering ├── considering-application-responses ├── display-dialog ├── if ├── ignoring ├── ignoring-application-responses ├── on ├── repeat ├── repeat-until ├── repeat-while ├── repeat-with ├── tell-application ├── tell-application-to-activate ├── try ├── using-terms-from-application ├── with-timeout-of-seconds └── with-transaction ├── applescript-mode ├── .yas-parents ├── comment ├── considering ├── considering-application-responses ├── display-dialog ├── if ├── ignoring ├── ignoring-application-responses ├── on ├── repeat ├── repeat-until ├── repeat-while ├── repeat-with ├── tell-application ├── tell-application-to-activate ├── try ├── using-terms-from-application ├── with-timeout-of-seconds └── with-transaction ├── c++-mode ├── .yas-parents ├── .yas-setup.el ├── acl ├── acm ├── ajf ├── alo ├── ano ├── assert ├── beginend ├── boost_require ├── cerr ├── cin ├── class ├── class11 ├── cni ├── cnt ├── const_[] ├── constructor ├── cout ├── cpb ├── cpi ├── cpn ├── cpp ├── cpy ├── cstd ├── d+= ├── d_operator ├── d_operator[] ├── d_operator[]_const ├── d_operator_istream ├── d_operator_ostream ├── delete ├── delete[] ├── doc ├── dynamic_casting ├── enum ├── eql ├── erm ├── ffo ├── fil ├── fin ├── fixture ├── fln ├── fnd ├── fne ├── fni ├── fori ├── fre ├── friend ├── fun_declaration ├── gnn ├── gnr ├── gtest ├── ignore ├── ihp ├── ihu ├── inline ├── io ├── ipr ├── ipt ├── iss ├── isu ├── ita ├── iterator ├── ltr ├── lwr ├── lxc ├── map ├── member_function ├── mkh ├── mme ├── mne ├── module ├── mpb ├── mrg ├── msm ├── mxe ├── namespace ├── nno ├── ns ├── nth ├── nxp ├── oit ├── operator!= ├── operator+ ├── operator+= ├── operator= ├── operator== ├── operator[] ├── operator_istream ├── operator_ostream ├── ostream ├── pack ├── phh ├── ppt ├── private ├── protected ├── prp ├── psc ├── pst ├── ptc ├── ptn ├── public ├── rci ├── rmc ├── rmf ├── rmi ├── rmv ├── rpc ├── rpi ├── rpl ├── rtc ├── rte ├── rvc ├── rvr ├── shf ├── spt ├── srh ├── srn ├── srt ├── sstream ├── std ├── std_colon ├── sth ├── sti ├── sto ├── str ├── sts ├── stv ├── swr ├── template ├── test case ├── test_main ├── test_suite ├── tfm ├── this ├── throw ├── trm ├── try ├── tryw ├── ucp ├── upr ├── uqe ├── using └── vector ├── c-lang-common ├── fopen ├── ifdef ├── inc ├── inc.1 ├── main ├── math ├── once └── typedef ├── c-mode ├── .yas-parents ├── assert ├── compile ├── define ├── malloc ├── packed ├── printf ├── stdio ├── stdlib ├── string ├── union └── unistd ├── cc-mode ├── case ├── do ├── else ├── file_description ├── for ├── for_n ├── function_description ├── if ├── member_description ├── printf ├── struct ├── switch ├── ternary └── while ├── chef-mode ├── action ├── bash ├── cookbook_file ├── cron ├── cronf ├── deploy ├── directory ├── directoryf ├── env ├── execute ├── executef ├── file ├── filef ├── git ├── group ├── http_request ├── http_requestp ├── ignore_failure ├── inc ├── link ├── linkf ├── log ├── machine ├── meta ├── not_if ├── notifies ├── only_if ├── pac ├── pak ├── provider ├── python ├── remote_file ├── retries ├── role ├── ruby ├── script ├── service ├── servicep ├── subscribes ├── supports ├── template ├── templatev └── user ├── cider-repl-mode └── .yas-parents ├── clojure-mode ├── .yas-parents ├── bench ├── bp ├── def ├── defm ├── defn ├── defr ├── deft ├── doseq ├── fn ├── for ├── if ├── ifl ├── import ├── is ├── let ├── map ├── map.lambda ├── mdoc ├── ns ├── opts ├── pr ├── print ├── reduce ├── require ├── test ├── try ├── use ├── when └── whenl ├── cmake-mode ├── add_executable ├── add_library ├── cmake_minimum_required ├── foreach ├── function ├── if ├── ifelse ├── include ├── macro ├── message ├── option ├── project └── set ├── conf-unix-mode ├── .yas-parents └── section ├── cperl-mode └── .yas-parents ├── cpp-omnet-mode ├── EV ├── emit_signal ├── intuniform ├── math ├── nan ├── omnet ├── parameter_omnetpp ├── scheduleAt └── uniform ├── csharp-mode ├── .yas-parents ├── attrib ├── attrib.1 ├── attrib.2 ├── class ├── comment ├── comment.1 ├── comment.2 ├── comment.3 ├── fore ├── main ├── method ├── namespace ├── prop ├── region ├── using ├── using.1 └── using.2 ├── css-mode ├── bg ├── bg.1 ├── bor ├── cl ├── disp.block ├── disp.inline ├── disp.none ├── ff ├── fs ├── mar.bottom ├── mar.left ├── mar.mar ├── mar.margin ├── mar.right ├── mar.top ├── pad.bottom ├── pad.left ├── pad.pad ├── pad.padding ├── pad.right ├── pad.top └── v ├── dix-mode ├── call-macro ├── choose ├── clip ├── e-in-mono-section ├── e-in-pardef ├── let ├── lit ├── lit-tag ├── otherwise ├── p ├── par ├── pardef ├── s ├── sdef ├── section ├── var ├── when └── with-param ├── elixir-mode ├── .yas-parents ├── after ├── call ├── case ├── cast ├── cond ├── def ├── defmacro ├── defmacrop ├── defmodule ├── defmodule_filename ├── defp ├── do ├── doc ├── fn ├── for ├── function ├── function-one-line ├── hcall ├── hcast ├── hinfo ├── if ├── ife ├── io ├── iop ├── mdoc ├── pry ├── receive ├── test └── unless ├── emacs-lisp-mode ├── .read_me ├── add-hook ├── and ├── aref ├── aset ├── assq ├── autoload ├── backward-char ├── beginning-of-line ├── bounds-of-thing-at-point ├── buffer-file-name ├── buffer-modified-p ├── buffer-substring ├── buffer-substring-no-properties ├── cond ├── condition-case ├── const ├── copy-directory ├── copy-file ├── current-buffer ├── custom-autoload ├── defalias ├── defcustom ├── define-key ├── defun ├── defvar ├── delete-char ├── delete-directory ├── delete-file ├── delete-region ├── directory-files ├── dired.process_marked ├── end-of-line ├── error ├── ert-deftest ├── expand-file-name ├── fboundp ├── file-name-directory ├── file-name-extension ├── file-name-nondirectory ├── file-name-sans-extension ├── file-relative-name ├── file.process ├── file.read-lines ├── find-file ├── find-replace ├── format ├── forward-char ├── forward-line ├── get ├── global-set-key ├── goto-char ├── grabstring ├── grabthing ├── header ├── insert ├── insert-file-contents ├── interactive ├── kbd ├── kill-buffer ├── lambda ├── let ├── line-beginning-position ├── line-end-position ├── looking-at ├── make-directory ├── make-local-variable ├── mapc ├── match-beginning ├── match-end ├── match-string ├── memq ├── message ├── minor_mode ├── not ├── nth ├── number-to-string ├── or ├── point ├── point-max ├── point-min ├── put ├── re-search-backward ├── re-search-forward ├── region-active-p ├── region-beginning ├── region-end ├── rename-file ├── replace-regexp ├── replace-regexp-in-string ├── save-buffer ├── save-excursion ├── search-backward ├── search-backward-regexp ├── search-forward ├── search-forward-regexp ├── set-buffer ├── set-file-modes ├── set-mark ├── setq ├── should ├── skip-chars-backward ├── skip-chars-forward ├── split-string ├── string-match ├── string-to-number ├── string= ├── substring ├── thing-at-point ├── traverse_dir ├── use-package ├── use-package-binding ├── vector ├── when ├── widget-get ├── with-current-buffer ├── word-or-region ├── word_regexp ├── x-dired.process_marked ├── x-file.process ├── x-file.read-lines ├── x-find-replace ├── x-grabstring ├── x-grabthing ├── x-traverse_dir ├── x-word-or-region └── yes-or-no-p ├── enh-ruby-mode └── .yas-parents ├── ensime-mode └── .yas-parents ├── erc-mode ├── blist └── help ├── erlang-mode ├── after ├── begin ├── beh ├── case ├── compile ├── def ├── exp ├── fun ├── if ├── ifdef ├── ifndef ├── imp ├── inc ├── inc.lib ├── loop ├── mod ├── rcv ├── rcv.after ├── rec ├── try └── undef ├── f90-mode ├── bd ├── c ├── ch ├── cx ├── dc ├── do ├── dp ├── forall ├── function ├── if ├── in ├── inc ├── intr ├── l ├── module ├── pa ├── program ├── puref ├── pures ├── re ├── subroutine ├── until ├── where ├── while └── wr ├── faust-mode ├── button ├── case ├── checkbox ├── component ├── declare ├── declareauthor ├── declarelicense ├── declarename ├── declareversion ├── hbargraph ├── header ├── hgroup ├── hslider ├── import ├── nentry ├── par ├── process ├── processx ├── prod ├── rule ├── seq ├── sum ├── tgroup ├── vbargraph ├── vgroup ├── vslider └── with ├── git-commit-mode ├── .yas-parents ├── fixes ├── references └── type ├── go-mode ├── benchmark ├── const ├── const( ├── dd ├── default ├── else ├── error ├── example ├── for ├── forrange ├── func ├── if ├── iferr ├── import ├── import( ├── lambda ├── main ├── map ├── parallel_benchmark ├── printf ├── select ├── switch ├── test ├── testmain ├── type ├── var └── var( ├── groovy-mode ├── .yas-parents ├── class ├── def ├── dict ├── for ├── println └── times ├── haskell-mode ├── case ├── data ├── doc ├── efix ├── function ├── functione ├── import ├── instance ├── main ├── module ├── new class ├── pragma └── print ├── html-mode ├── .yas-parents ├── dd ├── dl ├── doctype ├── doctype.html5 ├── doctype.xhtml1 ├── doctype.xhtml1_1 ├── doctype.xhtml1_strict ├── doctype.xhtml1_transitional ├── dt ├── form ├── html ├── html.xmlns ├── link.import ├── link.stylesheet ├── link.stylesheet-ie ├── mailto ├── meta ├── meta.http-equiv ├── script.javascript ├── script.javascript-src ├── textarea └── th ├── java-mode ├── apr_assert ├── assert ├── assertEquals ├── cls ├── constructor ├── define test method ├── doc ├── equals ├── er ├── file_class ├── for ├── fori ├── function ├── getter ├── if ├── ife ├── import ├── iterator ├── javadoc ├── lambda ├── main ├── main_class ├── method ├── new ├── override ├── param ├── printf ├── println ├── return ├── sr ├── test ├── testClass ├── this ├── toString ├── try └── value ├── js-mode ├── ac ├── ae ├── afn ├── al ├── apply ├── arrow-function ├── asd ├── ase ├── asn ├── ca ├── call ├── cd ├── cdf ├── ce ├── cel ├── cg ├── cgc ├── ci ├── cl ├── class ├── class-es6 ├── cm ├── cmmb ├── co ├── com ├── const ├── cr ├── ct ├── cw ├── de ├── debugger ├── desc ├── each ├── ed ├── el ├── er ├── ev.add ├── ev.fire ├── export ├── fe ├── fi ├── for ├── function ├── ga ├── gc ├── getter ├── gi ├── gt ├── if ├── ih ├── iife ├── import ├── import-member ├── init ├── init-es6 ├── ita ├── itp ├── its ├── jp ├── js ├── let ├── log ├── me ├── method ├── multiline-comment ├── ofn ├── param-comment ├── pe ├── pm ├── pr ├── promise ├── qs ├── qsa ├── ra ├── rc ├── re ├── req.html ├── req.json ├── return-comment ├── sa ├── setter ├── si ├── sr ├── st ├── switch ├── tc ├── time ├── try-catch ├── type-inline-comment ├── type-multiline-comment └── us ├── js2-mode └── .yas-parents ├── js3-mode └── .yas-parents ├── latex-mode ├── acronym ├── alertblock ├── alg ├── article ├── begin ├── block ├── capgls ├── caption ├── cite ├── code ├── columns ├── documentclass ├── emph ├── enumerate ├── figure ├── frac ├── frame ├── gls ├── glspl ├── if ├── includegraphics ├── item ├── itemize ├── label ├── listing ├── moderncv ├── moderncv-cvcomputer ├── moderncv-cventry ├── moderncv-cvlanguage ├── moderncv-cvline ├── moderncv-cvlistdoubleitem ├── moderncv-cvlistitem ├── movie ├── newcommand ├── newglossaryentry ├── note ├── python ├── question ├── section ├── subf ├── subfigure ├── subsec ├── textbf └── usepackage ├── lisp-interaction-mode └── defun ├── lisp-mode ├── class ├── comment ├── defpackage ├── do ├── for ├── foreach ├── format ├── if ├── ifelse ├── ifnot ├── slot ├── switch └── typecast ├── lua-mode ├── do ├── eif ├── eife ├── fun ├── if ├── ife ├── ipairs ├── pairs ├── repeat ├── require └── while ├── m4-mode └── def ├── makefile-automake-mode └── noinst_HEADERS ├── makefile-bsdmake-mode ├── PHONY ├── echo ├── gen ├── if └── var ├── makefile-gmake-mode ├── abspath ├── addprefix ├── addsuffix ├── dir ├── make ├── notdir ├── patsubst ├── phony ├── shell ├── special ├── template └── wildcard ├── makefile-mode ├── all └── clean ├── malabar-mode └── variable ├── markdown-mode ├── + ├── - ├── _ ├── __ ├── ` ├── checkbox ├── checkedbox ├── details ├── gist ├── h1.1 ├── h1.2 ├── h2.1 ├── h2.2 ├── h3 ├── h4 ├── h5 ├── h6 ├── highlight ├── hr.1 ├── hr.2 ├── img ├── imgHTML ├── link ├── more ├── ol ├── rimg ├── rlb ├── rlink ├── s ├── tb ├── toc ├── utf8 └── vs ├── modify-yasnippets.py ├── ned-mode ├── .yas-parents ├── chan ├── connections ├── for ├── import ├── network ├── simple └── submodules ├── nesc-mode ├── .yas-parents ├── TOSSIM ├── command ├── dbg ├── event ├── ifdef ├── interface ├── module ├── nx ├── provides ├── sim ├── uint8_t └── uses ├── nix-mode ├── buildPhase ├── checkPhase ├── configurePhase ├── distPhase ├── fixPhase ├── installCheckPhase ├── installPhase ├── package_github ├── package_url ├── patchPhase ├── phases └── unpackPhase ├── nsis-mode ├── .yas-parents ├── define ├── function ├── if ├── include ├── insert_macro ├── instdir ├── macro ├── message ├── outdir ├── outfile └── section ├── nxml-mode ├── body ├── br ├── doctype ├── doctype_xhtml1_strict ├── doctype_xhtml1_transitional ├── form ├── href ├── html ├── img ├── input ├── link ├── meta ├── name ├── quote ├── style ├── tag ├── tag_closing └── tag_newline ├── octave-mode ├── for ├── function └── if ├── org-mode ├── dot ├── elisp ├── embedded ├── entry ├── figure ├── html ├── img ├── latex ├── link_up&home ├── matrix ├── more ├── no_postamble ├── opt ├── quote ├── revealjs_background ├── revealjs_header ├── revealjs_split ├── setup_file ├── setup_theme ├── src ├── src.out ├── sub_superscript ├── tem ├── uml └── verse ├── perl-mode ├── .yas-parents ├── eval ├── for ├── fore ├── if ├── ife ├── ifee ├── sub ├── unless ├── while ├── xfore ├── xif ├── xunless └── xwhile ├── php-mode ├── .yas-setup.el ├── __call ├── __callStatic ├── catch ├── cls ├── clse ├── clsi ├── const ├── define ├── doc-comment-multiline ├── doc-comment-oneline ├── else ├── elseif ├── fn ├── foreach ├── foreach_value ├── function ├── function-return-type ├── if ├── interface ├── license-doc ├── license-doc-apache ├── license-doc-gplv2 ├── license-doc-mit ├── license-doc-mpl ├── method-doc ├── param-doc ├── property-doc ├── psysh ├── return-doc ├── stdout ├── switch ├── ticks ├── trait ├── try ├── var-doc ├── var-oneline ├── vd ├── vde └── ve ├── powershell-mode ├── cmdletbinding ├── comment-based-help ├── function └── parameter ├── prog-mode ├── .yas-setup.el ├── comment ├── commentblock ├── commentline ├── fixme ├── todo └── xxx ├── protobuf-mode ├── message └── syntax ├── python-mode ├── .yas-parents ├── .yas-setup.el ├── __contains__ ├── __enter__ ├── __exit__ ├── __getitem__ ├── __len__ ├── __new__ ├── __setitem__ ├── all ├── arg ├── arg_positional ├── assert ├── assertEqual ├── assertFalse ├── assertIn ├── assertNotEqual ├── assertNotIn ├── assertRaises ├── assertRaises.with ├── assertTrue ├── bang ├── celery_pdb ├── classmethod ├── cls ├── dec ├── deftest ├── django_test_class ├── doc ├── doctest ├── embed ├── eq ├── er ├── fdoc ├── for ├── from ├── function ├── function_docstring ├── function_docstring_numpy ├── hdoc ├── if ├── ife ├── ifmain ├── import ├── init ├── init_docstring ├── interact ├── ipdbdebug ├── iter ├── lambda ├── list ├── logger_name ├── logging ├── main ├── metaclass ├── method ├── method_docstring ├── not_impl ├── np ├── parse_args ├── parser ├── pass ├── pl ├── print ├── prop ├── reg ├── repr ├── return ├── scls ├── script ├── self ├── self_without_dot ├── selfassign ├── setdef ├── setup ├── size ├── sr ├── static ├── str ├── super ├── tem ├── test_class ├── test_file ├── trace ├── try ├── tryelse ├── unicode ├── unicode_literals ├── utf8 ├── while ├── with └── with_statement ├── react-mode ├── .yas-parents ├── cc ├── ccr ├── ccs ├── cdm ├── cdu ├── cwm ├── cwrp ├── cwu ├── cwum ├── edccs ├── edl ├── gdp ├── gis ├── imr ├── imrc ├── imrn ├── ims ├── imsn ├── r ├── rct ├── rd ├── rpc ├── rpf ├── rr ├── rrd ├── scu ├── sp ├── ss ├── tdesc └── tit ├── rjsx-mode └── .yas-parents ├── rst-mode ├── autoclass ├── autofunction ├── automodule ├── chapter ├── class ├── code ├── digraph ├── function ├── graph ├── graphviz ├── image ├── inheritance ├── literal_include ├── meta ├── module ├── parsed_literal ├── pause ├── section ├── term ├── title ├── url ├── verbatim └── warning ├── ruby-mode ├── # ├── =b ├── Comp ├── Enum ├── GLOB ├── all ├── am ├── any ├── app ├── attribute ├── bench ├── bm ├── case ├── cla ├── cls ├── collect ├── dee ├── def ├── deli ├── det ├── dow ├── ea ├── eac ├── eai ├── eav ├── eawi ├── er ├── for ├── forin ├── formula ├── if ├── ife ├── inc ├── init ├── inject ├── map ├── mm ├── mod ├── pry ├── r ├── rb ├── red ├── reject ├── rel ├── req ├── rpry ├── rw ├── select ├── sr ├── str ├── test class ├── tim ├── to_ ├── tu ├── until ├── upt ├── w ├── when ├── while ├── y └── zip ├── rust-mode ├── allow ├── allow! ├── assert ├── asserteq ├── case ├── cfg ├── cfg= ├── closure ├── deny ├── deny! ├── derive ├── drop ├── enum ├── eprint ├── eprintln ├── fn ├── fnr ├── fns ├── fnw ├── for ├── if ├── ife ├── ifl ├── impl ├── implt ├── let ├── letm ├── lett ├── lettm ├── loop ├── macro ├── main ├── match ├── print ├── println ├── spawn ├── static ├── struct ├── test ├── testmod ├── trait ├── type ├── union ├── warn ├── warn! ├── while └── whilel ├── scala-mode ├── app ├── case ├── cc ├── co ├── cons ├── def ├── doc ├── for ├── if ├── ls ├── main ├── match ├── ob ├── throw ├── try └── valueclass ├── sh-mode ├── args ├── bang ├── for loop ├── function ├── if ├── ife ├── safe-bang ├── until └── while ├── snippet-mode ├── cont ├── elisp ├── field ├── group ├── mirror └── vars ├── sql-mode ├── column ├── constraint ├── constraint.1 ├── create ├── create.1 ├── insert └── references ├── swift-mode ├── available ├── checkversion ├── dispatchafter ├── dispatchasync ├── dispatchmain ├── documentdirectory ├── forcase ├── fori ├── func ├── if ├── initcoder ├── let ├── mark ├── prop ├── sortarrayofstrings ├── trycatch ├── uialertcontroller ├── uicollectionviewdatasource ├── uicollectionviewdelegate ├── uitableviewdatasource ├── uitableviewdelegate ├── uiviewcontrollerlifecycle ├── var └── while ├── terraform-mode ├── resource └── variable ├── text-mode └── .yas-parents ├── tuareg-mode ├── assert ├── docstring ├── for ├── fun ├── guard ├── ifthen ├── ifthenelse ├── let ├── list_comprehension ├── main ├── match ├── module ├── open ├── printf ├── rec ├── try ├── type ├── type_type ├── val └── while ├── typerex-mode └── .yas-parents ├── udev-mode ├── ENV ├── GOTO ├── KERNEL ├── add ├── env$ └── run ├── web-mode └── .yas-parents └── yaml-mode ├── entry ├── list └── section /.gitignore: -------------------------------------------------------------------------------- 1 | !*.jar 2 | *spacemacs.env 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/README.org -------------------------------------------------------------------------------- /README_CN.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/README_CN.org -------------------------------------------------------------------------------- /custom.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/custom.el -------------------------------------------------------------------------------- /icons/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/icons/banner.png -------------------------------------------------------------------------------- /icons/banner_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/icons/banner_blue.png -------------------------------------------------------------------------------- /icons/emacs-china-icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/icons/emacs-china-icon.icns -------------------------------------------------------------------------------- /icons/spacemacs.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/icons/spacemacs.icns -------------------------------------------------------------------------------- /init.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/init.el -------------------------------------------------------------------------------- /layers/ztlevi-misc/funcs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/layers/ztlevi-misc/funcs.el -------------------------------------------------------------------------------- /layers/ztlevi-org/config.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/layers/ztlevi-org/config.el -------------------------------------------------------------------------------- /layers/ztlevi-org/funcs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/layers/ztlevi-org/funcs.el -------------------------------------------------------------------------------- /layers/ztlevi-prog/funcs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/layers/ztlevi-prog/funcs.el -------------------------------------------------------------------------------- /layers/ztlevi-ui/config.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/layers/ztlevi-ui/config.el -------------------------------------------------------------------------------- /layers/ztlevi-ui/funcs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/layers/ztlevi-ui/funcs.el -------------------------------------------------------------------------------- /layers/ztlevi/config.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/layers/ztlevi/config.el -------------------------------------------------------------------------------- /layers/ztlevi/funcs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/layers/ztlevi/funcs.el -------------------------------------------------------------------------------- /layers/ztlevi/layers.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/layers/ztlevi/layers.el -------------------------------------------------------------------------------- /lib/ditaa.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/lib/ditaa.jar -------------------------------------------------------------------------------- /lib/plantuml.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/lib/plantuml.jar -------------------------------------------------------------------------------- /screenshots/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/screenshots/1.jpg -------------------------------------------------------------------------------- /snippets/antlr-mode/project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/antlr-mode/project -------------------------------------------------------------------------------- /snippets/antlr-mode/target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/antlr-mode/target -------------------------------------------------------------------------------- /snippets/apples-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | prog-mode -------------------------------------------------------------------------------- /snippets/apples-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/apples-mode/if -------------------------------------------------------------------------------- /snippets/apples-mode/on: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/apples-mode/on -------------------------------------------------------------------------------- /snippets/apples-mode/repeat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/apples-mode/repeat -------------------------------------------------------------------------------- /snippets/apples-mode/try: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/apples-mode/try -------------------------------------------------------------------------------- /snippets/applescript-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | prog-mode -------------------------------------------------------------------------------- /snippets/c++-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | cc-mode 2 | c-lang-common 3 | -------------------------------------------------------------------------------- /snippets/c++-mode/acl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/acl -------------------------------------------------------------------------------- /snippets/c++-mode/acm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/acm -------------------------------------------------------------------------------- /snippets/c++-mode/ajf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/ajf -------------------------------------------------------------------------------- /snippets/c++-mode/alo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/alo -------------------------------------------------------------------------------- /snippets/c++-mode/ano: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/ano -------------------------------------------------------------------------------- /snippets/c++-mode/assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/assert -------------------------------------------------------------------------------- /snippets/c++-mode/beginend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/beginend -------------------------------------------------------------------------------- /snippets/c++-mode/cerr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/cerr -------------------------------------------------------------------------------- /snippets/c++-mode/cin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/cin -------------------------------------------------------------------------------- /snippets/c++-mode/class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/class -------------------------------------------------------------------------------- /snippets/c++-mode/class11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/class11 -------------------------------------------------------------------------------- /snippets/c++-mode/cni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/cni -------------------------------------------------------------------------------- /snippets/c++-mode/cnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/cnt -------------------------------------------------------------------------------- /snippets/c++-mode/const_[]: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/const_[] -------------------------------------------------------------------------------- /snippets/c++-mode/cout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/cout -------------------------------------------------------------------------------- /snippets/c++-mode/cpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/cpb -------------------------------------------------------------------------------- /snippets/c++-mode/cpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/cpi -------------------------------------------------------------------------------- /snippets/c++-mode/cpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/cpn -------------------------------------------------------------------------------- /snippets/c++-mode/cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/cpp -------------------------------------------------------------------------------- /snippets/c++-mode/cpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/cpy -------------------------------------------------------------------------------- /snippets/c++-mode/cstd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/cstd -------------------------------------------------------------------------------- /snippets/c++-mode/d+=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/d+= -------------------------------------------------------------------------------- /snippets/c++-mode/delete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/delete -------------------------------------------------------------------------------- /snippets/c++-mode/delete[]: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/delete[] -------------------------------------------------------------------------------- /snippets/c++-mode/doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/doc -------------------------------------------------------------------------------- /snippets/c++-mode/enum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/enum -------------------------------------------------------------------------------- /snippets/c++-mode/eql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/eql -------------------------------------------------------------------------------- /snippets/c++-mode/erm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/erm -------------------------------------------------------------------------------- /snippets/c++-mode/ffo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/ffo -------------------------------------------------------------------------------- /snippets/c++-mode/fil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/fil -------------------------------------------------------------------------------- /snippets/c++-mode/fin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/fin -------------------------------------------------------------------------------- /snippets/c++-mode/fixture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/fixture -------------------------------------------------------------------------------- /snippets/c++-mode/fln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/fln -------------------------------------------------------------------------------- /snippets/c++-mode/fnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/fnd -------------------------------------------------------------------------------- /snippets/c++-mode/fne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/fne -------------------------------------------------------------------------------- /snippets/c++-mode/fni: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/fni -------------------------------------------------------------------------------- /snippets/c++-mode/fori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/fori -------------------------------------------------------------------------------- /snippets/c++-mode/fre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/fre -------------------------------------------------------------------------------- /snippets/c++-mode/friend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/friend -------------------------------------------------------------------------------- /snippets/c++-mode/gnn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/gnn -------------------------------------------------------------------------------- /snippets/c++-mode/gnr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/gnr -------------------------------------------------------------------------------- /snippets/c++-mode/gtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/gtest -------------------------------------------------------------------------------- /snippets/c++-mode/ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/ignore -------------------------------------------------------------------------------- /snippets/c++-mode/ihp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/ihp -------------------------------------------------------------------------------- /snippets/c++-mode/ihu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/ihu -------------------------------------------------------------------------------- /snippets/c++-mode/inline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/inline -------------------------------------------------------------------------------- /snippets/c++-mode/io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/io -------------------------------------------------------------------------------- /snippets/c++-mode/ipr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/ipr -------------------------------------------------------------------------------- /snippets/c++-mode/ipt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/ipt -------------------------------------------------------------------------------- /snippets/c++-mode/iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/iss -------------------------------------------------------------------------------- /snippets/c++-mode/isu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/isu -------------------------------------------------------------------------------- /snippets/c++-mode/ita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/ita -------------------------------------------------------------------------------- /snippets/c++-mode/iterator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/iterator -------------------------------------------------------------------------------- /snippets/c++-mode/ltr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/ltr -------------------------------------------------------------------------------- /snippets/c++-mode/lwr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/lwr -------------------------------------------------------------------------------- /snippets/c++-mode/lxc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/lxc -------------------------------------------------------------------------------- /snippets/c++-mode/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/map -------------------------------------------------------------------------------- /snippets/c++-mode/mkh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/mkh -------------------------------------------------------------------------------- /snippets/c++-mode/mme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/mme -------------------------------------------------------------------------------- /snippets/c++-mode/mne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/mne -------------------------------------------------------------------------------- /snippets/c++-mode/module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/module -------------------------------------------------------------------------------- /snippets/c++-mode/mpb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/mpb -------------------------------------------------------------------------------- /snippets/c++-mode/mrg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/mrg -------------------------------------------------------------------------------- /snippets/c++-mode/msm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/msm -------------------------------------------------------------------------------- /snippets/c++-mode/mxe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/mxe -------------------------------------------------------------------------------- /snippets/c++-mode/namespace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/namespace -------------------------------------------------------------------------------- /snippets/c++-mode/nno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/nno -------------------------------------------------------------------------------- /snippets/c++-mode/ns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/ns -------------------------------------------------------------------------------- /snippets/c++-mode/nth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/nth -------------------------------------------------------------------------------- /snippets/c++-mode/nxp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/nxp -------------------------------------------------------------------------------- /snippets/c++-mode/oit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/oit -------------------------------------------------------------------------------- /snippets/c++-mode/operator+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/operator+ -------------------------------------------------------------------------------- /snippets/c++-mode/operator=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/operator= -------------------------------------------------------------------------------- /snippets/c++-mode/ostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/ostream -------------------------------------------------------------------------------- /snippets/c++-mode/pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/pack -------------------------------------------------------------------------------- /snippets/c++-mode/phh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/phh -------------------------------------------------------------------------------- /snippets/c++-mode/ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/ppt -------------------------------------------------------------------------------- /snippets/c++-mode/private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/private -------------------------------------------------------------------------------- /snippets/c++-mode/protected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/protected -------------------------------------------------------------------------------- /snippets/c++-mode/prp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/prp -------------------------------------------------------------------------------- /snippets/c++-mode/psc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/psc -------------------------------------------------------------------------------- /snippets/c++-mode/pst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/pst -------------------------------------------------------------------------------- /snippets/c++-mode/ptc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/ptc -------------------------------------------------------------------------------- /snippets/c++-mode/ptn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/ptn -------------------------------------------------------------------------------- /snippets/c++-mode/public: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/public -------------------------------------------------------------------------------- /snippets/c++-mode/rci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/rci -------------------------------------------------------------------------------- /snippets/c++-mode/rmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/rmc -------------------------------------------------------------------------------- /snippets/c++-mode/rmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/rmf -------------------------------------------------------------------------------- /snippets/c++-mode/rmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/rmi -------------------------------------------------------------------------------- /snippets/c++-mode/rmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/rmv -------------------------------------------------------------------------------- /snippets/c++-mode/rpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/rpc -------------------------------------------------------------------------------- /snippets/c++-mode/rpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/rpi -------------------------------------------------------------------------------- /snippets/c++-mode/rpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/rpl -------------------------------------------------------------------------------- /snippets/c++-mode/rtc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/rtc -------------------------------------------------------------------------------- /snippets/c++-mode/rte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/rte -------------------------------------------------------------------------------- /snippets/c++-mode/rvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/rvc -------------------------------------------------------------------------------- /snippets/c++-mode/rvr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/rvr -------------------------------------------------------------------------------- /snippets/c++-mode/shf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/shf -------------------------------------------------------------------------------- /snippets/c++-mode/spt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/spt -------------------------------------------------------------------------------- /snippets/c++-mode/srh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/srh -------------------------------------------------------------------------------- /snippets/c++-mode/srn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/srn -------------------------------------------------------------------------------- /snippets/c++-mode/srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/srt -------------------------------------------------------------------------------- /snippets/c++-mode/sstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/sstream -------------------------------------------------------------------------------- /snippets/c++-mode/std: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/std -------------------------------------------------------------------------------- /snippets/c++-mode/std_colon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/std_colon -------------------------------------------------------------------------------- /snippets/c++-mode/sth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/sth -------------------------------------------------------------------------------- /snippets/c++-mode/sti: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/sti -------------------------------------------------------------------------------- /snippets/c++-mode/sto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/sto -------------------------------------------------------------------------------- /snippets/c++-mode/str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/str -------------------------------------------------------------------------------- /snippets/c++-mode/sts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/sts -------------------------------------------------------------------------------- /snippets/c++-mode/stv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/stv -------------------------------------------------------------------------------- /snippets/c++-mode/swr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/swr -------------------------------------------------------------------------------- /snippets/c++-mode/template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/template -------------------------------------------------------------------------------- /snippets/c++-mode/test case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/test case -------------------------------------------------------------------------------- /snippets/c++-mode/test_main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/test_main -------------------------------------------------------------------------------- /snippets/c++-mode/tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/tfm -------------------------------------------------------------------------------- /snippets/c++-mode/this: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/this -------------------------------------------------------------------------------- /snippets/c++-mode/throw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/throw -------------------------------------------------------------------------------- /snippets/c++-mode/trm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/trm -------------------------------------------------------------------------------- /snippets/c++-mode/try: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/try -------------------------------------------------------------------------------- /snippets/c++-mode/tryw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/tryw -------------------------------------------------------------------------------- /snippets/c++-mode/ucp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/ucp -------------------------------------------------------------------------------- /snippets/c++-mode/upr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/upr -------------------------------------------------------------------------------- /snippets/c++-mode/uqe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/uqe -------------------------------------------------------------------------------- /snippets/c++-mode/using: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/using -------------------------------------------------------------------------------- /snippets/c++-mode/vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c++-mode/vector -------------------------------------------------------------------------------- /snippets/c-lang-common/inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c-lang-common/inc -------------------------------------------------------------------------------- /snippets/c-lang-common/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c-lang-common/main -------------------------------------------------------------------------------- /snippets/c-lang-common/math: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c-lang-common/math -------------------------------------------------------------------------------- /snippets/c-lang-common/once: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c-lang-common/once -------------------------------------------------------------------------------- /snippets/c-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | cc-mode 2 | c-lang-common 3 | -------------------------------------------------------------------------------- /snippets/c-mode/assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c-mode/assert -------------------------------------------------------------------------------- /snippets/c-mode/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c-mode/compile -------------------------------------------------------------------------------- /snippets/c-mode/define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c-mode/define -------------------------------------------------------------------------------- /snippets/c-mode/malloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c-mode/malloc -------------------------------------------------------------------------------- /snippets/c-mode/packed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c-mode/packed -------------------------------------------------------------------------------- /snippets/c-mode/printf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c-mode/printf -------------------------------------------------------------------------------- /snippets/c-mode/stdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c-mode/stdio -------------------------------------------------------------------------------- /snippets/c-mode/stdlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c-mode/stdlib -------------------------------------------------------------------------------- /snippets/c-mode/string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c-mode/string -------------------------------------------------------------------------------- /snippets/c-mode/union: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c-mode/union -------------------------------------------------------------------------------- /snippets/c-mode/unistd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/c-mode/unistd -------------------------------------------------------------------------------- /snippets/cc-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cc-mode/case -------------------------------------------------------------------------------- /snippets/cc-mode/do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cc-mode/do -------------------------------------------------------------------------------- /snippets/cc-mode/else: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cc-mode/else -------------------------------------------------------------------------------- /snippets/cc-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cc-mode/for -------------------------------------------------------------------------------- /snippets/cc-mode/for_n: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cc-mode/for_n -------------------------------------------------------------------------------- /snippets/cc-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cc-mode/if -------------------------------------------------------------------------------- /snippets/cc-mode/printf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cc-mode/printf -------------------------------------------------------------------------------- /snippets/cc-mode/struct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cc-mode/struct -------------------------------------------------------------------------------- /snippets/cc-mode/switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cc-mode/switch -------------------------------------------------------------------------------- /snippets/cc-mode/ternary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cc-mode/ternary -------------------------------------------------------------------------------- /snippets/cc-mode/while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cc-mode/while -------------------------------------------------------------------------------- /snippets/chef-mode/action: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/action -------------------------------------------------------------------------------- /snippets/chef-mode/bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/bash -------------------------------------------------------------------------------- /snippets/chef-mode/cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/cron -------------------------------------------------------------------------------- /snippets/chef-mode/cronf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/cronf -------------------------------------------------------------------------------- /snippets/chef-mode/deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/deploy -------------------------------------------------------------------------------- /snippets/chef-mode/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/env -------------------------------------------------------------------------------- /snippets/chef-mode/execute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/execute -------------------------------------------------------------------------------- /snippets/chef-mode/executef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/executef -------------------------------------------------------------------------------- /snippets/chef-mode/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/file -------------------------------------------------------------------------------- /snippets/chef-mode/filef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/filef -------------------------------------------------------------------------------- /snippets/chef-mode/git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/git -------------------------------------------------------------------------------- /snippets/chef-mode/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/group -------------------------------------------------------------------------------- /snippets/chef-mode/inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/inc -------------------------------------------------------------------------------- /snippets/chef-mode/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/link -------------------------------------------------------------------------------- /snippets/chef-mode/linkf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/linkf -------------------------------------------------------------------------------- /snippets/chef-mode/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/log -------------------------------------------------------------------------------- /snippets/chef-mode/machine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/machine -------------------------------------------------------------------------------- /snippets/chef-mode/meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/meta -------------------------------------------------------------------------------- /snippets/chef-mode/not_if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/not_if -------------------------------------------------------------------------------- /snippets/chef-mode/notifies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/notifies -------------------------------------------------------------------------------- /snippets/chef-mode/only_if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/only_if -------------------------------------------------------------------------------- /snippets/chef-mode/pac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/pac -------------------------------------------------------------------------------- /snippets/chef-mode/pak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/pak -------------------------------------------------------------------------------- /snippets/chef-mode/provider: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/provider -------------------------------------------------------------------------------- /snippets/chef-mode/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/python -------------------------------------------------------------------------------- /snippets/chef-mode/retries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/retries -------------------------------------------------------------------------------- /snippets/chef-mode/role: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/role -------------------------------------------------------------------------------- /snippets/chef-mode/ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/ruby -------------------------------------------------------------------------------- /snippets/chef-mode/script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/script -------------------------------------------------------------------------------- /snippets/chef-mode/service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/service -------------------------------------------------------------------------------- /snippets/chef-mode/servicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/servicep -------------------------------------------------------------------------------- /snippets/chef-mode/supports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/supports -------------------------------------------------------------------------------- /snippets/chef-mode/template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/template -------------------------------------------------------------------------------- /snippets/chef-mode/user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/chef-mode/user -------------------------------------------------------------------------------- /snippets/cider-repl-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | clojure-mode 2 | -------------------------------------------------------------------------------- /snippets/clojure-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | prog-mode 2 | -------------------------------------------------------------------------------- /snippets/clojure-mode/bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/bench -------------------------------------------------------------------------------- /snippets/clojure-mode/bp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/bp -------------------------------------------------------------------------------- /snippets/clojure-mode/def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/def -------------------------------------------------------------------------------- /snippets/clojure-mode/defm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/defm -------------------------------------------------------------------------------- /snippets/clojure-mode/defn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/defn -------------------------------------------------------------------------------- /snippets/clojure-mode/defr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/defr -------------------------------------------------------------------------------- /snippets/clojure-mode/deft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/deft -------------------------------------------------------------------------------- /snippets/clojure-mode/doseq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/doseq -------------------------------------------------------------------------------- /snippets/clojure-mode/fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/fn -------------------------------------------------------------------------------- /snippets/clojure-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/for -------------------------------------------------------------------------------- /snippets/clojure-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/if -------------------------------------------------------------------------------- /snippets/clojure-mode/ifl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/ifl -------------------------------------------------------------------------------- /snippets/clojure-mode/is: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/is -------------------------------------------------------------------------------- /snippets/clojure-mode/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/let -------------------------------------------------------------------------------- /snippets/clojure-mode/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/map -------------------------------------------------------------------------------- /snippets/clojure-mode/mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/mdoc -------------------------------------------------------------------------------- /snippets/clojure-mode/ns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/ns -------------------------------------------------------------------------------- /snippets/clojure-mode/opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/opts -------------------------------------------------------------------------------- /snippets/clojure-mode/pr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/pr -------------------------------------------------------------------------------- /snippets/clojure-mode/print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/print -------------------------------------------------------------------------------- /snippets/clojure-mode/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/test -------------------------------------------------------------------------------- /snippets/clojure-mode/try: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/try -------------------------------------------------------------------------------- /snippets/clojure-mode/use: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/use -------------------------------------------------------------------------------- /snippets/clojure-mode/when: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/when -------------------------------------------------------------------------------- /snippets/clojure-mode/whenl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/clojure-mode/whenl -------------------------------------------------------------------------------- /snippets/cmake-mode/foreach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cmake-mode/foreach -------------------------------------------------------------------------------- /snippets/cmake-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cmake-mode/if -------------------------------------------------------------------------------- /snippets/cmake-mode/ifelse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cmake-mode/ifelse -------------------------------------------------------------------------------- /snippets/cmake-mode/include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cmake-mode/include -------------------------------------------------------------------------------- /snippets/cmake-mode/macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cmake-mode/macro -------------------------------------------------------------------------------- /snippets/cmake-mode/message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cmake-mode/message -------------------------------------------------------------------------------- /snippets/cmake-mode/option: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cmake-mode/option -------------------------------------------------------------------------------- /snippets/cmake-mode/project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cmake-mode/project -------------------------------------------------------------------------------- /snippets/cmake-mode/set: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cmake-mode/set -------------------------------------------------------------------------------- /snippets/conf-unix-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | text-mode -------------------------------------------------------------------------------- /snippets/cperl-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | perl-mode 2 | -------------------------------------------------------------------------------- /snippets/cpp-omnet-mode/EV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cpp-omnet-mode/EV -------------------------------------------------------------------------------- /snippets/cpp-omnet-mode/nan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/cpp-omnet-mode/nan -------------------------------------------------------------------------------- /snippets/csharp-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | cc-mode 2 | -------------------------------------------------------------------------------- /snippets/csharp-mode/attrib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/csharp-mode/attrib -------------------------------------------------------------------------------- /snippets/csharp-mode/class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/csharp-mode/class -------------------------------------------------------------------------------- /snippets/csharp-mode/fore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/csharp-mode/fore -------------------------------------------------------------------------------- /snippets/csharp-mode/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/csharp-mode/main -------------------------------------------------------------------------------- /snippets/csharp-mode/method: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/csharp-mode/method -------------------------------------------------------------------------------- /snippets/csharp-mode/prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/csharp-mode/prop -------------------------------------------------------------------------------- /snippets/csharp-mode/region: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/csharp-mode/region -------------------------------------------------------------------------------- /snippets/csharp-mode/using: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/csharp-mode/using -------------------------------------------------------------------------------- /snippets/css-mode/bg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/css-mode/bg -------------------------------------------------------------------------------- /snippets/css-mode/bg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/css-mode/bg.1 -------------------------------------------------------------------------------- /snippets/css-mode/bor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/css-mode/bor -------------------------------------------------------------------------------- /snippets/css-mode/cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/css-mode/cl -------------------------------------------------------------------------------- /snippets/css-mode/disp.none: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/css-mode/disp.none -------------------------------------------------------------------------------- /snippets/css-mode/ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/css-mode/ff -------------------------------------------------------------------------------- /snippets/css-mode/fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/css-mode/fs -------------------------------------------------------------------------------- /snippets/css-mode/mar.left: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/css-mode/mar.left -------------------------------------------------------------------------------- /snippets/css-mode/mar.mar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/css-mode/mar.mar -------------------------------------------------------------------------------- /snippets/css-mode/mar.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/css-mode/mar.right -------------------------------------------------------------------------------- /snippets/css-mode/mar.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/css-mode/mar.top -------------------------------------------------------------------------------- /snippets/css-mode/pad.left: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/css-mode/pad.left -------------------------------------------------------------------------------- /snippets/css-mode/pad.pad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/css-mode/pad.pad -------------------------------------------------------------------------------- /snippets/css-mode/pad.right: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/css-mode/pad.right -------------------------------------------------------------------------------- /snippets/css-mode/pad.top: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/css-mode/pad.top -------------------------------------------------------------------------------- /snippets/css-mode/v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/css-mode/v -------------------------------------------------------------------------------- /snippets/dix-mode/choose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/dix-mode/choose -------------------------------------------------------------------------------- /snippets/dix-mode/clip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/dix-mode/clip -------------------------------------------------------------------------------- /snippets/dix-mode/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/dix-mode/let -------------------------------------------------------------------------------- /snippets/dix-mode/lit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/dix-mode/lit -------------------------------------------------------------------------------- /snippets/dix-mode/lit-tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/dix-mode/lit-tag -------------------------------------------------------------------------------- /snippets/dix-mode/otherwise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/dix-mode/otherwise -------------------------------------------------------------------------------- /snippets/dix-mode/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/dix-mode/p -------------------------------------------------------------------------------- /snippets/dix-mode/par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/dix-mode/par -------------------------------------------------------------------------------- /snippets/dix-mode/pardef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/dix-mode/pardef -------------------------------------------------------------------------------- /snippets/dix-mode/s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/dix-mode/s -------------------------------------------------------------------------------- /snippets/dix-mode/sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/dix-mode/sdef -------------------------------------------------------------------------------- /snippets/dix-mode/section: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/dix-mode/section -------------------------------------------------------------------------------- /snippets/dix-mode/var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/dix-mode/var -------------------------------------------------------------------------------- /snippets/dix-mode/when: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/dix-mode/when -------------------------------------------------------------------------------- /snippets/elixir-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | prog-mode 2 | -------------------------------------------------------------------------------- /snippets/elixir-mode/after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/after -------------------------------------------------------------------------------- /snippets/elixir-mode/call: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/call -------------------------------------------------------------------------------- /snippets/elixir-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/case -------------------------------------------------------------------------------- /snippets/elixir-mode/cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/cast -------------------------------------------------------------------------------- /snippets/elixir-mode/cond: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/cond -------------------------------------------------------------------------------- /snippets/elixir-mode/def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/def -------------------------------------------------------------------------------- /snippets/elixir-mode/defp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/defp -------------------------------------------------------------------------------- /snippets/elixir-mode/do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/do -------------------------------------------------------------------------------- /snippets/elixir-mode/doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/doc -------------------------------------------------------------------------------- /snippets/elixir-mode/fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/fn -------------------------------------------------------------------------------- /snippets/elixir-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/for -------------------------------------------------------------------------------- /snippets/elixir-mode/hcall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/hcall -------------------------------------------------------------------------------- /snippets/elixir-mode/hcast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/hcast -------------------------------------------------------------------------------- /snippets/elixir-mode/hinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/hinfo -------------------------------------------------------------------------------- /snippets/elixir-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/if -------------------------------------------------------------------------------- /snippets/elixir-mode/ife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/ife -------------------------------------------------------------------------------- /snippets/elixir-mode/io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/io -------------------------------------------------------------------------------- /snippets/elixir-mode/iop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/iop -------------------------------------------------------------------------------- /snippets/elixir-mode/mdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/mdoc -------------------------------------------------------------------------------- /snippets/elixir-mode/pry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/pry -------------------------------------------------------------------------------- /snippets/elixir-mode/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/test -------------------------------------------------------------------------------- /snippets/elixir-mode/unless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/elixir-mode/unless -------------------------------------------------------------------------------- /snippets/emacs-lisp-mode/or: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/emacs-lisp-mode/or -------------------------------------------------------------------------------- /snippets/enh-ruby-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | ruby-mode 2 | -------------------------------------------------------------------------------- /snippets/ensime-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | scala-mode 2 | -------------------------------------------------------------------------------- /snippets/erc-mode/blist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erc-mode/blist -------------------------------------------------------------------------------- /snippets/erc-mode/help: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erc-mode/help -------------------------------------------------------------------------------- /snippets/erlang-mode/after: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erlang-mode/after -------------------------------------------------------------------------------- /snippets/erlang-mode/begin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erlang-mode/begin -------------------------------------------------------------------------------- /snippets/erlang-mode/beh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erlang-mode/beh -------------------------------------------------------------------------------- /snippets/erlang-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erlang-mode/case -------------------------------------------------------------------------------- /snippets/erlang-mode/def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erlang-mode/def -------------------------------------------------------------------------------- /snippets/erlang-mode/exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erlang-mode/exp -------------------------------------------------------------------------------- /snippets/erlang-mode/fun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erlang-mode/fun -------------------------------------------------------------------------------- /snippets/erlang-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erlang-mode/if -------------------------------------------------------------------------------- /snippets/erlang-mode/ifdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erlang-mode/ifdef -------------------------------------------------------------------------------- /snippets/erlang-mode/ifndef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erlang-mode/ifndef -------------------------------------------------------------------------------- /snippets/erlang-mode/imp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erlang-mode/imp -------------------------------------------------------------------------------- /snippets/erlang-mode/inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erlang-mode/inc -------------------------------------------------------------------------------- /snippets/erlang-mode/loop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erlang-mode/loop -------------------------------------------------------------------------------- /snippets/erlang-mode/mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erlang-mode/mod -------------------------------------------------------------------------------- /snippets/erlang-mode/rcv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erlang-mode/rcv -------------------------------------------------------------------------------- /snippets/erlang-mode/rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erlang-mode/rec -------------------------------------------------------------------------------- /snippets/erlang-mode/try: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erlang-mode/try -------------------------------------------------------------------------------- /snippets/erlang-mode/undef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/erlang-mode/undef -------------------------------------------------------------------------------- /snippets/f90-mode/bd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/bd -------------------------------------------------------------------------------- /snippets/f90-mode/c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/c -------------------------------------------------------------------------------- /snippets/f90-mode/ch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/ch -------------------------------------------------------------------------------- /snippets/f90-mode/cx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/cx -------------------------------------------------------------------------------- /snippets/f90-mode/dc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/dc -------------------------------------------------------------------------------- /snippets/f90-mode/do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/do -------------------------------------------------------------------------------- /snippets/f90-mode/dp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/dp -------------------------------------------------------------------------------- /snippets/f90-mode/forall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/forall -------------------------------------------------------------------------------- /snippets/f90-mode/function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/function -------------------------------------------------------------------------------- /snippets/f90-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/if -------------------------------------------------------------------------------- /snippets/f90-mode/in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/in -------------------------------------------------------------------------------- /snippets/f90-mode/inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/inc -------------------------------------------------------------------------------- /snippets/f90-mode/intr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/intr -------------------------------------------------------------------------------- /snippets/f90-mode/l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/l -------------------------------------------------------------------------------- /snippets/f90-mode/module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/module -------------------------------------------------------------------------------- /snippets/f90-mode/pa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/pa -------------------------------------------------------------------------------- /snippets/f90-mode/program: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/program -------------------------------------------------------------------------------- /snippets/f90-mode/puref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/puref -------------------------------------------------------------------------------- /snippets/f90-mode/pures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/pures -------------------------------------------------------------------------------- /snippets/f90-mode/re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/re -------------------------------------------------------------------------------- /snippets/f90-mode/until: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/until -------------------------------------------------------------------------------- /snippets/f90-mode/where: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/where -------------------------------------------------------------------------------- /snippets/f90-mode/while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/while -------------------------------------------------------------------------------- /snippets/f90-mode/wr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/f90-mode/wr -------------------------------------------------------------------------------- /snippets/faust-mode/button: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/faust-mode/button -------------------------------------------------------------------------------- /snippets/faust-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/faust-mode/case -------------------------------------------------------------------------------- /snippets/faust-mode/declare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/faust-mode/declare -------------------------------------------------------------------------------- /snippets/faust-mode/header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/faust-mode/header -------------------------------------------------------------------------------- /snippets/faust-mode/hgroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/faust-mode/hgroup -------------------------------------------------------------------------------- /snippets/faust-mode/hslider: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/faust-mode/hslider -------------------------------------------------------------------------------- /snippets/faust-mode/import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/faust-mode/import -------------------------------------------------------------------------------- /snippets/faust-mode/nentry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/faust-mode/nentry -------------------------------------------------------------------------------- /snippets/faust-mode/par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/faust-mode/par -------------------------------------------------------------------------------- /snippets/faust-mode/process: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/faust-mode/process -------------------------------------------------------------------------------- /snippets/faust-mode/prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/faust-mode/prod -------------------------------------------------------------------------------- /snippets/faust-mode/rule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/faust-mode/rule -------------------------------------------------------------------------------- /snippets/faust-mode/seq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/faust-mode/seq -------------------------------------------------------------------------------- /snippets/faust-mode/sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/faust-mode/sum -------------------------------------------------------------------------------- /snippets/faust-mode/tgroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/faust-mode/tgroup -------------------------------------------------------------------------------- /snippets/faust-mode/vgroup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/faust-mode/vgroup -------------------------------------------------------------------------------- /snippets/faust-mode/vslider: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/faust-mode/vslider -------------------------------------------------------------------------------- /snippets/faust-mode/with: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/faust-mode/with -------------------------------------------------------------------------------- /snippets/git-commit-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | text-mode -------------------------------------------------------------------------------- /snippets/go-mode/benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/benchmark -------------------------------------------------------------------------------- /snippets/go-mode/const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/const -------------------------------------------------------------------------------- /snippets/go-mode/const(: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/const( -------------------------------------------------------------------------------- /snippets/go-mode/dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/dd -------------------------------------------------------------------------------- /snippets/go-mode/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/default -------------------------------------------------------------------------------- /snippets/go-mode/else: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/else -------------------------------------------------------------------------------- /snippets/go-mode/error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/error -------------------------------------------------------------------------------- /snippets/go-mode/example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/example -------------------------------------------------------------------------------- /snippets/go-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/for -------------------------------------------------------------------------------- /snippets/go-mode/forrange: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/forrange -------------------------------------------------------------------------------- /snippets/go-mode/func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/func -------------------------------------------------------------------------------- /snippets/go-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/if -------------------------------------------------------------------------------- /snippets/go-mode/iferr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/iferr -------------------------------------------------------------------------------- /snippets/go-mode/import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/import -------------------------------------------------------------------------------- /snippets/go-mode/import(: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/import( -------------------------------------------------------------------------------- /snippets/go-mode/lambda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/lambda -------------------------------------------------------------------------------- /snippets/go-mode/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/main -------------------------------------------------------------------------------- /snippets/go-mode/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/map -------------------------------------------------------------------------------- /snippets/go-mode/printf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/printf -------------------------------------------------------------------------------- /snippets/go-mode/select: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/select -------------------------------------------------------------------------------- /snippets/go-mode/switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/switch -------------------------------------------------------------------------------- /snippets/go-mode/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/test -------------------------------------------------------------------------------- /snippets/go-mode/testmain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/testmain -------------------------------------------------------------------------------- /snippets/go-mode/type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/type -------------------------------------------------------------------------------- /snippets/go-mode/var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/var -------------------------------------------------------------------------------- /snippets/go-mode/var(: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/go-mode/var( -------------------------------------------------------------------------------- /snippets/groovy-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | java-mode -------------------------------------------------------------------------------- /snippets/groovy-mode/class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/groovy-mode/class -------------------------------------------------------------------------------- /snippets/groovy-mode/def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/groovy-mode/def -------------------------------------------------------------------------------- /snippets/groovy-mode/dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/groovy-mode/dict -------------------------------------------------------------------------------- /snippets/groovy-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/groovy-mode/for -------------------------------------------------------------------------------- /snippets/groovy-mode/times: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/groovy-mode/times -------------------------------------------------------------------------------- /snippets/haskell-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/haskell-mode/case -------------------------------------------------------------------------------- /snippets/haskell-mode/data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/haskell-mode/data -------------------------------------------------------------------------------- /snippets/haskell-mode/doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/haskell-mode/doc -------------------------------------------------------------------------------- /snippets/haskell-mode/efix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/haskell-mode/efix -------------------------------------------------------------------------------- /snippets/haskell-mode/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/haskell-mode/main -------------------------------------------------------------------------------- /snippets/haskell-mode/print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/haskell-mode/print -------------------------------------------------------------------------------- /snippets/html-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | nxml-mode 2 | -------------------------------------------------------------------------------- /snippets/html-mode/dd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/html-mode/dd -------------------------------------------------------------------------------- /snippets/html-mode/dl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/html-mode/dl -------------------------------------------------------------------------------- /snippets/html-mode/doctype: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/html-mode/doctype -------------------------------------------------------------------------------- /snippets/html-mode/dt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/html-mode/dt -------------------------------------------------------------------------------- /snippets/html-mode/form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/html-mode/form -------------------------------------------------------------------------------- /snippets/html-mode/html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/html-mode/html -------------------------------------------------------------------------------- /snippets/html-mode/mailto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/html-mode/mailto -------------------------------------------------------------------------------- /snippets/html-mode/meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/html-mode/meta -------------------------------------------------------------------------------- /snippets/html-mode/textarea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/html-mode/textarea -------------------------------------------------------------------------------- /snippets/html-mode/th: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/html-mode/th -------------------------------------------------------------------------------- /snippets/java-mode/assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/assert -------------------------------------------------------------------------------- /snippets/java-mode/cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/cls -------------------------------------------------------------------------------- /snippets/java-mode/doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/doc -------------------------------------------------------------------------------- /snippets/java-mode/equals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/equals -------------------------------------------------------------------------------- /snippets/java-mode/er: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/er -------------------------------------------------------------------------------- /snippets/java-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/for -------------------------------------------------------------------------------- /snippets/java-mode/fori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/fori -------------------------------------------------------------------------------- /snippets/java-mode/function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/function -------------------------------------------------------------------------------- /snippets/java-mode/getter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/getter -------------------------------------------------------------------------------- /snippets/java-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/if -------------------------------------------------------------------------------- /snippets/java-mode/ife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/ife -------------------------------------------------------------------------------- /snippets/java-mode/import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/import -------------------------------------------------------------------------------- /snippets/java-mode/iterator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/iterator -------------------------------------------------------------------------------- /snippets/java-mode/javadoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/javadoc -------------------------------------------------------------------------------- /snippets/java-mode/lambda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/lambda -------------------------------------------------------------------------------- /snippets/java-mode/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/main -------------------------------------------------------------------------------- /snippets/java-mode/method: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/method -------------------------------------------------------------------------------- /snippets/java-mode/new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/new -------------------------------------------------------------------------------- /snippets/java-mode/override: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/override -------------------------------------------------------------------------------- /snippets/java-mode/param: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/param -------------------------------------------------------------------------------- /snippets/java-mode/printf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/printf -------------------------------------------------------------------------------- /snippets/java-mode/println: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/println -------------------------------------------------------------------------------- /snippets/java-mode/return: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/return -------------------------------------------------------------------------------- /snippets/java-mode/sr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/sr -------------------------------------------------------------------------------- /snippets/java-mode/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/test -------------------------------------------------------------------------------- /snippets/java-mode/this: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/this -------------------------------------------------------------------------------- /snippets/java-mode/toString: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/toString -------------------------------------------------------------------------------- /snippets/java-mode/try: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/try -------------------------------------------------------------------------------- /snippets/java-mode/value: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/java-mode/value -------------------------------------------------------------------------------- /snippets/js-mode/ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/ac -------------------------------------------------------------------------------- /snippets/js-mode/ae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/ae -------------------------------------------------------------------------------- /snippets/js-mode/afn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/afn -------------------------------------------------------------------------------- /snippets/js-mode/al: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/al -------------------------------------------------------------------------------- /snippets/js-mode/apply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/apply -------------------------------------------------------------------------------- /snippets/js-mode/asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/asd -------------------------------------------------------------------------------- /snippets/js-mode/ase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/ase -------------------------------------------------------------------------------- /snippets/js-mode/asn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/asn -------------------------------------------------------------------------------- /snippets/js-mode/ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/ca -------------------------------------------------------------------------------- /snippets/js-mode/call: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/call -------------------------------------------------------------------------------- /snippets/js-mode/cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/cd -------------------------------------------------------------------------------- /snippets/js-mode/cdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/cdf -------------------------------------------------------------------------------- /snippets/js-mode/ce: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/ce -------------------------------------------------------------------------------- /snippets/js-mode/cel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/cel -------------------------------------------------------------------------------- /snippets/js-mode/cg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/cg -------------------------------------------------------------------------------- /snippets/js-mode/cgc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/cgc -------------------------------------------------------------------------------- /snippets/js-mode/ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/ci -------------------------------------------------------------------------------- /snippets/js-mode/cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/cl -------------------------------------------------------------------------------- /snippets/js-mode/class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/class -------------------------------------------------------------------------------- /snippets/js-mode/class-es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/class-es6 -------------------------------------------------------------------------------- /snippets/js-mode/cm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/cm -------------------------------------------------------------------------------- /snippets/js-mode/cmmb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/cmmb -------------------------------------------------------------------------------- /snippets/js-mode/co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/co -------------------------------------------------------------------------------- /snippets/js-mode/com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/com -------------------------------------------------------------------------------- /snippets/js-mode/const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/const -------------------------------------------------------------------------------- /snippets/js-mode/cr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/cr -------------------------------------------------------------------------------- /snippets/js-mode/ct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/ct -------------------------------------------------------------------------------- /snippets/js-mode/cw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/cw -------------------------------------------------------------------------------- /snippets/js-mode/de: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/de -------------------------------------------------------------------------------- /snippets/js-mode/debugger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/debugger -------------------------------------------------------------------------------- /snippets/js-mode/desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/desc -------------------------------------------------------------------------------- /snippets/js-mode/each: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/each -------------------------------------------------------------------------------- /snippets/js-mode/ed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/ed -------------------------------------------------------------------------------- /snippets/js-mode/el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/el -------------------------------------------------------------------------------- /snippets/js-mode/er: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/er -------------------------------------------------------------------------------- /snippets/js-mode/ev.add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/ev.add -------------------------------------------------------------------------------- /snippets/js-mode/ev.fire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/ev.fire -------------------------------------------------------------------------------- /snippets/js-mode/export: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/export -------------------------------------------------------------------------------- /snippets/js-mode/fe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/fe -------------------------------------------------------------------------------- /snippets/js-mode/fi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/fi -------------------------------------------------------------------------------- /snippets/js-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/for -------------------------------------------------------------------------------- /snippets/js-mode/function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/function -------------------------------------------------------------------------------- /snippets/js-mode/ga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/ga -------------------------------------------------------------------------------- /snippets/js-mode/gc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/gc -------------------------------------------------------------------------------- /snippets/js-mode/getter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/getter -------------------------------------------------------------------------------- /snippets/js-mode/gi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/gi -------------------------------------------------------------------------------- /snippets/js-mode/gt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/gt -------------------------------------------------------------------------------- /snippets/js-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/if -------------------------------------------------------------------------------- /snippets/js-mode/ih: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/ih -------------------------------------------------------------------------------- /snippets/js-mode/iife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/iife -------------------------------------------------------------------------------- /snippets/js-mode/import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/import -------------------------------------------------------------------------------- /snippets/js-mode/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/init -------------------------------------------------------------------------------- /snippets/js-mode/init-es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/init-es6 -------------------------------------------------------------------------------- /snippets/js-mode/ita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/ita -------------------------------------------------------------------------------- /snippets/js-mode/itp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/itp -------------------------------------------------------------------------------- /snippets/js-mode/its: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/its -------------------------------------------------------------------------------- /snippets/js-mode/jp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/jp -------------------------------------------------------------------------------- /snippets/js-mode/js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/js -------------------------------------------------------------------------------- /snippets/js-mode/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/let -------------------------------------------------------------------------------- /snippets/js-mode/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/log -------------------------------------------------------------------------------- /snippets/js-mode/me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/me -------------------------------------------------------------------------------- /snippets/js-mode/method: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/method -------------------------------------------------------------------------------- /snippets/js-mode/ofn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/ofn -------------------------------------------------------------------------------- /snippets/js-mode/pe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/pe -------------------------------------------------------------------------------- /snippets/js-mode/pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/pm -------------------------------------------------------------------------------- /snippets/js-mode/pr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/pr -------------------------------------------------------------------------------- /snippets/js-mode/promise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/promise -------------------------------------------------------------------------------- /snippets/js-mode/qs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/qs -------------------------------------------------------------------------------- /snippets/js-mode/qsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/qsa -------------------------------------------------------------------------------- /snippets/js-mode/ra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/ra -------------------------------------------------------------------------------- /snippets/js-mode/rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/rc -------------------------------------------------------------------------------- /snippets/js-mode/re: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/re -------------------------------------------------------------------------------- /snippets/js-mode/req.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/req.html -------------------------------------------------------------------------------- /snippets/js-mode/req.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/req.json -------------------------------------------------------------------------------- /snippets/js-mode/sa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/sa -------------------------------------------------------------------------------- /snippets/js-mode/setter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/setter -------------------------------------------------------------------------------- /snippets/js-mode/si: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/si -------------------------------------------------------------------------------- /snippets/js-mode/sr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/sr -------------------------------------------------------------------------------- /snippets/js-mode/st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/st -------------------------------------------------------------------------------- /snippets/js-mode/switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/switch -------------------------------------------------------------------------------- /snippets/js-mode/tc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/tc -------------------------------------------------------------------------------- /snippets/js-mode/time: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/time -------------------------------------------------------------------------------- /snippets/js-mode/try-catch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/try-catch -------------------------------------------------------------------------------- /snippets/js-mode/us: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/js-mode/us -------------------------------------------------------------------------------- /snippets/js2-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | js-mode 2 | -------------------------------------------------------------------------------- /snippets/js3-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | js-mode 2 | -------------------------------------------------------------------------------- /snippets/latex-mode/acronym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/acronym -------------------------------------------------------------------------------- /snippets/latex-mode/alg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/alg -------------------------------------------------------------------------------- /snippets/latex-mode/article: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/article -------------------------------------------------------------------------------- /snippets/latex-mode/begin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/begin -------------------------------------------------------------------------------- /snippets/latex-mode/block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/block -------------------------------------------------------------------------------- /snippets/latex-mode/capgls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/capgls -------------------------------------------------------------------------------- /snippets/latex-mode/caption: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/caption -------------------------------------------------------------------------------- /snippets/latex-mode/cite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/cite -------------------------------------------------------------------------------- /snippets/latex-mode/code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/code -------------------------------------------------------------------------------- /snippets/latex-mode/columns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/columns -------------------------------------------------------------------------------- /snippets/latex-mode/emph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/emph -------------------------------------------------------------------------------- /snippets/latex-mode/figure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/figure -------------------------------------------------------------------------------- /snippets/latex-mode/frac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/frac -------------------------------------------------------------------------------- /snippets/latex-mode/frame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/frame -------------------------------------------------------------------------------- /snippets/latex-mode/gls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/gls -------------------------------------------------------------------------------- /snippets/latex-mode/glspl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/glspl -------------------------------------------------------------------------------- /snippets/latex-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/if -------------------------------------------------------------------------------- /snippets/latex-mode/item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/item -------------------------------------------------------------------------------- /snippets/latex-mode/itemize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/itemize -------------------------------------------------------------------------------- /snippets/latex-mode/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/label -------------------------------------------------------------------------------- /snippets/latex-mode/listing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/listing -------------------------------------------------------------------------------- /snippets/latex-mode/movie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/movie -------------------------------------------------------------------------------- /snippets/latex-mode/note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/note -------------------------------------------------------------------------------- /snippets/latex-mode/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/python -------------------------------------------------------------------------------- /snippets/latex-mode/section: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/section -------------------------------------------------------------------------------- /snippets/latex-mode/subf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/subf -------------------------------------------------------------------------------- /snippets/latex-mode/subsec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/subsec -------------------------------------------------------------------------------- /snippets/latex-mode/textbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/latex-mode/textbf -------------------------------------------------------------------------------- /snippets/lisp-mode/class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lisp-mode/class -------------------------------------------------------------------------------- /snippets/lisp-mode/comment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lisp-mode/comment -------------------------------------------------------------------------------- /snippets/lisp-mode/do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lisp-mode/do -------------------------------------------------------------------------------- /snippets/lisp-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lisp-mode/for -------------------------------------------------------------------------------- /snippets/lisp-mode/foreach: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lisp-mode/foreach -------------------------------------------------------------------------------- /snippets/lisp-mode/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lisp-mode/format -------------------------------------------------------------------------------- /snippets/lisp-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lisp-mode/if -------------------------------------------------------------------------------- /snippets/lisp-mode/ifelse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lisp-mode/ifelse -------------------------------------------------------------------------------- /snippets/lisp-mode/ifnot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lisp-mode/ifnot -------------------------------------------------------------------------------- /snippets/lisp-mode/slot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lisp-mode/slot -------------------------------------------------------------------------------- /snippets/lisp-mode/switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lisp-mode/switch -------------------------------------------------------------------------------- /snippets/lisp-mode/typecast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lisp-mode/typecast -------------------------------------------------------------------------------- /snippets/lua-mode/do: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lua-mode/do -------------------------------------------------------------------------------- /snippets/lua-mode/eif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lua-mode/eif -------------------------------------------------------------------------------- /snippets/lua-mode/eife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lua-mode/eife -------------------------------------------------------------------------------- /snippets/lua-mode/fun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lua-mode/fun -------------------------------------------------------------------------------- /snippets/lua-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lua-mode/if -------------------------------------------------------------------------------- /snippets/lua-mode/ife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lua-mode/ife -------------------------------------------------------------------------------- /snippets/lua-mode/ipairs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lua-mode/ipairs -------------------------------------------------------------------------------- /snippets/lua-mode/pairs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lua-mode/pairs -------------------------------------------------------------------------------- /snippets/lua-mode/repeat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lua-mode/repeat -------------------------------------------------------------------------------- /snippets/lua-mode/require: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lua-mode/require -------------------------------------------------------------------------------- /snippets/lua-mode/while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/lua-mode/while -------------------------------------------------------------------------------- /snippets/m4-mode/def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/m4-mode/def -------------------------------------------------------------------------------- /snippets/makefile-mode/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/makefile-mode/all -------------------------------------------------------------------------------- /snippets/markdown-mode/+: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/+ -------------------------------------------------------------------------------- /snippets/markdown-mode/-: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/- -------------------------------------------------------------------------------- /snippets/markdown-mode/_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/_ -------------------------------------------------------------------------------- /snippets/markdown-mode/__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/__ -------------------------------------------------------------------------------- /snippets/markdown-mode/`: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/` -------------------------------------------------------------------------------- /snippets/markdown-mode/gist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/gist -------------------------------------------------------------------------------- /snippets/markdown-mode/h1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/h1.1 -------------------------------------------------------------------------------- /snippets/markdown-mode/h1.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/h1.2 -------------------------------------------------------------------------------- /snippets/markdown-mode/h2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/h2.1 -------------------------------------------------------------------------------- /snippets/markdown-mode/h2.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/h2.2 -------------------------------------------------------------------------------- /snippets/markdown-mode/h3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/h3 -------------------------------------------------------------------------------- /snippets/markdown-mode/h4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/h4 -------------------------------------------------------------------------------- /snippets/markdown-mode/h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/h5 -------------------------------------------------------------------------------- /snippets/markdown-mode/h6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/h6 -------------------------------------------------------------------------------- /snippets/markdown-mode/hr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/hr.1 -------------------------------------------------------------------------------- /snippets/markdown-mode/hr.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/hr.2 -------------------------------------------------------------------------------- /snippets/markdown-mode/img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/img -------------------------------------------------------------------------------- /snippets/markdown-mode/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/link -------------------------------------------------------------------------------- /snippets/markdown-mode/more: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/more -------------------------------------------------------------------------------- /snippets/markdown-mode/ol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/ol -------------------------------------------------------------------------------- /snippets/markdown-mode/rimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/rimg -------------------------------------------------------------------------------- /snippets/markdown-mode/rlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/rlb -------------------------------------------------------------------------------- /snippets/markdown-mode/s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/s -------------------------------------------------------------------------------- /snippets/markdown-mode/tb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/tb -------------------------------------------------------------------------------- /snippets/markdown-mode/toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/toc -------------------------------------------------------------------------------- /snippets/markdown-mode/utf8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/utf8 -------------------------------------------------------------------------------- /snippets/markdown-mode/vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/markdown-mode/vs -------------------------------------------------------------------------------- /snippets/ned-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | prog-mode -------------------------------------------------------------------------------- /snippets/ned-mode/chan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ned-mode/chan -------------------------------------------------------------------------------- /snippets/ned-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ned-mode/for -------------------------------------------------------------------------------- /snippets/ned-mode/import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ned-mode/import -------------------------------------------------------------------------------- /snippets/ned-mode/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ned-mode/network -------------------------------------------------------------------------------- /snippets/ned-mode/simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ned-mode/simple -------------------------------------------------------------------------------- /snippets/nesc-mode/TOSSIM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nesc-mode/TOSSIM -------------------------------------------------------------------------------- /snippets/nesc-mode/dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nesc-mode/dbg -------------------------------------------------------------------------------- /snippets/nesc-mode/event: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nesc-mode/event -------------------------------------------------------------------------------- /snippets/nesc-mode/ifdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nesc-mode/ifdef -------------------------------------------------------------------------------- /snippets/nesc-mode/nx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nesc-mode/nx -------------------------------------------------------------------------------- /snippets/nesc-mode/sim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nesc-mode/sim -------------------------------------------------------------------------------- /snippets/nesc-mode/uses: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nesc-mode/uses -------------------------------------------------------------------------------- /snippets/nix-mode/phases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nix-mode/phases -------------------------------------------------------------------------------- /snippets/nsis-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | prog-mode -------------------------------------------------------------------------------- /snippets/nsis-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nsis-mode/if -------------------------------------------------------------------------------- /snippets/nsis-mode/macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nsis-mode/macro -------------------------------------------------------------------------------- /snippets/nxml-mode/body: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nxml-mode/body -------------------------------------------------------------------------------- /snippets/nxml-mode/br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nxml-mode/br -------------------------------------------------------------------------------- /snippets/nxml-mode/form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nxml-mode/form -------------------------------------------------------------------------------- /snippets/nxml-mode/href: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nxml-mode/href -------------------------------------------------------------------------------- /snippets/nxml-mode/html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nxml-mode/html -------------------------------------------------------------------------------- /snippets/nxml-mode/img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nxml-mode/img -------------------------------------------------------------------------------- /snippets/nxml-mode/input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nxml-mode/input -------------------------------------------------------------------------------- /snippets/nxml-mode/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nxml-mode/link -------------------------------------------------------------------------------- /snippets/nxml-mode/meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nxml-mode/meta -------------------------------------------------------------------------------- /snippets/nxml-mode/name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nxml-mode/name -------------------------------------------------------------------------------- /snippets/nxml-mode/quote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nxml-mode/quote -------------------------------------------------------------------------------- /snippets/nxml-mode/style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nxml-mode/style -------------------------------------------------------------------------------- /snippets/nxml-mode/tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/nxml-mode/tag -------------------------------------------------------------------------------- /snippets/octave-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/octave-mode/for -------------------------------------------------------------------------------- /snippets/octave-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/octave-mode/if -------------------------------------------------------------------------------- /snippets/org-mode/dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/org-mode/dot -------------------------------------------------------------------------------- /snippets/org-mode/elisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/org-mode/elisp -------------------------------------------------------------------------------- /snippets/org-mode/entry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/org-mode/entry -------------------------------------------------------------------------------- /snippets/org-mode/figure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/org-mode/figure -------------------------------------------------------------------------------- /snippets/org-mode/html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/org-mode/html -------------------------------------------------------------------------------- /snippets/org-mode/img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/org-mode/img -------------------------------------------------------------------------------- /snippets/org-mode/latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/org-mode/latex -------------------------------------------------------------------------------- /snippets/org-mode/matrix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/org-mode/matrix -------------------------------------------------------------------------------- /snippets/org-mode/more: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/org-mode/more -------------------------------------------------------------------------------- /snippets/org-mode/opt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/org-mode/opt -------------------------------------------------------------------------------- /snippets/org-mode/quote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/org-mode/quote -------------------------------------------------------------------------------- /snippets/org-mode/src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/org-mode/src -------------------------------------------------------------------------------- /snippets/org-mode/tem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/org-mode/tem -------------------------------------------------------------------------------- /snippets/org-mode/uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/org-mode/uml -------------------------------------------------------------------------------- /snippets/org-mode/verse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/org-mode/verse -------------------------------------------------------------------------------- /snippets/perl-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | text-mode 2 | -------------------------------------------------------------------------------- /snippets/perl-mode/eval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/perl-mode/eval -------------------------------------------------------------------------------- /snippets/perl-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/perl-mode/for -------------------------------------------------------------------------------- /snippets/perl-mode/fore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/perl-mode/fore -------------------------------------------------------------------------------- /snippets/perl-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/perl-mode/if -------------------------------------------------------------------------------- /snippets/perl-mode/ife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/perl-mode/ife -------------------------------------------------------------------------------- /snippets/perl-mode/ifee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/perl-mode/ifee -------------------------------------------------------------------------------- /snippets/perl-mode/sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/perl-mode/sub -------------------------------------------------------------------------------- /snippets/perl-mode/while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/perl-mode/while -------------------------------------------------------------------------------- /snippets/perl-mode/xfore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/perl-mode/xfore -------------------------------------------------------------------------------- /snippets/perl-mode/xif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/perl-mode/xif -------------------------------------------------------------------------------- /snippets/php-mode/__call: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/__call -------------------------------------------------------------------------------- /snippets/php-mode/catch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/catch -------------------------------------------------------------------------------- /snippets/php-mode/cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/cls -------------------------------------------------------------------------------- /snippets/php-mode/clse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/clse -------------------------------------------------------------------------------- /snippets/php-mode/clsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/clsi -------------------------------------------------------------------------------- /snippets/php-mode/const: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/const -------------------------------------------------------------------------------- /snippets/php-mode/define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/define -------------------------------------------------------------------------------- /snippets/php-mode/else: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/else -------------------------------------------------------------------------------- /snippets/php-mode/elseif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/elseif -------------------------------------------------------------------------------- /snippets/php-mode/fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/fn -------------------------------------------------------------------------------- /snippets/php-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/if -------------------------------------------------------------------------------- /snippets/php-mode/psysh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/psysh -------------------------------------------------------------------------------- /snippets/php-mode/stdout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/stdout -------------------------------------------------------------------------------- /snippets/php-mode/switch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/switch -------------------------------------------------------------------------------- /snippets/php-mode/ticks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/ticks -------------------------------------------------------------------------------- /snippets/php-mode/trait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/trait -------------------------------------------------------------------------------- /snippets/php-mode/try: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/try -------------------------------------------------------------------------------- /snippets/php-mode/vd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/vd -------------------------------------------------------------------------------- /snippets/php-mode/vde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/vde -------------------------------------------------------------------------------- /snippets/php-mode/ve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/php-mode/ve -------------------------------------------------------------------------------- /snippets/prog-mode/fixme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/prog-mode/fixme -------------------------------------------------------------------------------- /snippets/prog-mode/todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/prog-mode/todo -------------------------------------------------------------------------------- /snippets/prog-mode/xxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/prog-mode/xxx -------------------------------------------------------------------------------- /snippets/python-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | prog-mode 2 | -------------------------------------------------------------------------------- /snippets/python-mode/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/python-mode/all -------------------------------------------------------------------------------- /snippets/python-mode/arg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/python-mode/arg -------------------------------------------------------------------------------- /snippets/python-mode/cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/python-mode/cls -------------------------------------------------------------------------------- /snippets/python-mode/dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/python-mode/dec -------------------------------------------------------------------------------- /snippets/python-mode/doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/python-mode/doc -------------------------------------------------------------------------------- /snippets/python-mode/eq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/python-mode/eq -------------------------------------------------------------------------------- /snippets/python-mode/er: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/python-mode/er -------------------------------------------------------------------------------- /snippets/python-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/python-mode/for -------------------------------------------------------------------------------- /snippets/python-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/python-mode/if -------------------------------------------------------------------------------- /snippets/python-mode/ife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/python-mode/ife -------------------------------------------------------------------------------- /snippets/python-mode/np: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/python-mode/np -------------------------------------------------------------------------------- /snippets/python-mode/pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/python-mode/pl -------------------------------------------------------------------------------- /snippets/python-mode/reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/python-mode/reg -------------------------------------------------------------------------------- /snippets/python-mode/sr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/python-mode/sr -------------------------------------------------------------------------------- /snippets/python-mode/str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/python-mode/str -------------------------------------------------------------------------------- /snippets/python-mode/tem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/python-mode/tem -------------------------------------------------------------------------------- /snippets/python-mode/try: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/python-mode/try -------------------------------------------------------------------------------- /snippets/react-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | js-mode 2 | -------------------------------------------------------------------------------- /snippets/react-mode/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/cc -------------------------------------------------------------------------------- /snippets/react-mode/ccr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/ccr -------------------------------------------------------------------------------- /snippets/react-mode/ccs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/ccs -------------------------------------------------------------------------------- /snippets/react-mode/cdm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/cdm -------------------------------------------------------------------------------- /snippets/react-mode/cdu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/cdu -------------------------------------------------------------------------------- /snippets/react-mode/cwm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/cwm -------------------------------------------------------------------------------- /snippets/react-mode/cwrp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/cwrp -------------------------------------------------------------------------------- /snippets/react-mode/cwu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/cwu -------------------------------------------------------------------------------- /snippets/react-mode/cwum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/cwum -------------------------------------------------------------------------------- /snippets/react-mode/edl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/edl -------------------------------------------------------------------------------- /snippets/react-mode/gdp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/gdp -------------------------------------------------------------------------------- /snippets/react-mode/gis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/gis -------------------------------------------------------------------------------- /snippets/react-mode/imr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/imr -------------------------------------------------------------------------------- /snippets/react-mode/imrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/imrc -------------------------------------------------------------------------------- /snippets/react-mode/imrn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/imrn -------------------------------------------------------------------------------- /snippets/react-mode/ims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/ims -------------------------------------------------------------------------------- /snippets/react-mode/imsn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/imsn -------------------------------------------------------------------------------- /snippets/react-mode/r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/r -------------------------------------------------------------------------------- /snippets/react-mode/rct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/rct -------------------------------------------------------------------------------- /snippets/react-mode/rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/rd -------------------------------------------------------------------------------- /snippets/react-mode/rpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/rpc -------------------------------------------------------------------------------- /snippets/react-mode/rpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/rpf -------------------------------------------------------------------------------- /snippets/react-mode/rr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/rr -------------------------------------------------------------------------------- /snippets/react-mode/rrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/rrd -------------------------------------------------------------------------------- /snippets/react-mode/scu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/scu -------------------------------------------------------------------------------- /snippets/react-mode/sp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/sp -------------------------------------------------------------------------------- /snippets/react-mode/ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/ss -------------------------------------------------------------------------------- /snippets/react-mode/tit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/react-mode/tit -------------------------------------------------------------------------------- /snippets/rjsx-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | react-mode -------------------------------------------------------------------------------- /snippets/rst-mode/class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rst-mode/class -------------------------------------------------------------------------------- /snippets/rst-mode/code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rst-mode/code -------------------------------------------------------------------------------- /snippets/rst-mode/graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rst-mode/graph -------------------------------------------------------------------------------- /snippets/rst-mode/image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rst-mode/image -------------------------------------------------------------------------------- /snippets/rst-mode/meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rst-mode/meta -------------------------------------------------------------------------------- /snippets/rst-mode/module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rst-mode/module -------------------------------------------------------------------------------- /snippets/rst-mode/pause: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rst-mode/pause -------------------------------------------------------------------------------- /snippets/rst-mode/term: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rst-mode/term -------------------------------------------------------------------------------- /snippets/rst-mode/title: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rst-mode/title -------------------------------------------------------------------------------- /snippets/rst-mode/url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rst-mode/url -------------------------------------------------------------------------------- /snippets/ruby-mode/#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/# -------------------------------------------------------------------------------- /snippets/ruby-mode/=b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/=b -------------------------------------------------------------------------------- /snippets/ruby-mode/Comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/Comp -------------------------------------------------------------------------------- /snippets/ruby-mode/Enum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/Enum -------------------------------------------------------------------------------- /snippets/ruby-mode/GLOB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/GLOB -------------------------------------------------------------------------------- /snippets/ruby-mode/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/all -------------------------------------------------------------------------------- /snippets/ruby-mode/am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/am -------------------------------------------------------------------------------- /snippets/ruby-mode/any: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/any -------------------------------------------------------------------------------- /snippets/ruby-mode/app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/app -------------------------------------------------------------------------------- /snippets/ruby-mode/bench: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/bench -------------------------------------------------------------------------------- /snippets/ruby-mode/bm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/bm -------------------------------------------------------------------------------- /snippets/ruby-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/case -------------------------------------------------------------------------------- /snippets/ruby-mode/cla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/cla -------------------------------------------------------------------------------- /snippets/ruby-mode/cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/cls -------------------------------------------------------------------------------- /snippets/ruby-mode/dee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/dee -------------------------------------------------------------------------------- /snippets/ruby-mode/def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/def -------------------------------------------------------------------------------- /snippets/ruby-mode/deli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/deli -------------------------------------------------------------------------------- /snippets/ruby-mode/det: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/det -------------------------------------------------------------------------------- /snippets/ruby-mode/dow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/dow -------------------------------------------------------------------------------- /snippets/ruby-mode/ea: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/ea -------------------------------------------------------------------------------- /snippets/ruby-mode/eac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/eac -------------------------------------------------------------------------------- /snippets/ruby-mode/eai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/eai -------------------------------------------------------------------------------- /snippets/ruby-mode/eav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/eav -------------------------------------------------------------------------------- /snippets/ruby-mode/eawi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/eawi -------------------------------------------------------------------------------- /snippets/ruby-mode/er: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/er -------------------------------------------------------------------------------- /snippets/ruby-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/for -------------------------------------------------------------------------------- /snippets/ruby-mode/forin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/forin -------------------------------------------------------------------------------- /snippets/ruby-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/if -------------------------------------------------------------------------------- /snippets/ruby-mode/ife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/ife -------------------------------------------------------------------------------- /snippets/ruby-mode/inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/inc -------------------------------------------------------------------------------- /snippets/ruby-mode/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/init -------------------------------------------------------------------------------- /snippets/ruby-mode/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/map -------------------------------------------------------------------------------- /snippets/ruby-mode/mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/mm -------------------------------------------------------------------------------- /snippets/ruby-mode/mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/mod -------------------------------------------------------------------------------- /snippets/ruby-mode/pry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/pry -------------------------------------------------------------------------------- /snippets/ruby-mode/r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/r -------------------------------------------------------------------------------- /snippets/ruby-mode/rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/rb -------------------------------------------------------------------------------- /snippets/ruby-mode/red: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/red -------------------------------------------------------------------------------- /snippets/ruby-mode/rel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/rel -------------------------------------------------------------------------------- /snippets/ruby-mode/req: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/req -------------------------------------------------------------------------------- /snippets/ruby-mode/rpry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/rpry -------------------------------------------------------------------------------- /snippets/ruby-mode/rw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/rw -------------------------------------------------------------------------------- /snippets/ruby-mode/sr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/sr -------------------------------------------------------------------------------- /snippets/ruby-mode/str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/str -------------------------------------------------------------------------------- /snippets/ruby-mode/tim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/tim -------------------------------------------------------------------------------- /snippets/ruby-mode/to_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/to_ -------------------------------------------------------------------------------- /snippets/ruby-mode/tu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/tu -------------------------------------------------------------------------------- /snippets/ruby-mode/until: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/until -------------------------------------------------------------------------------- /snippets/ruby-mode/upt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/upt -------------------------------------------------------------------------------- /snippets/ruby-mode/w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/w -------------------------------------------------------------------------------- /snippets/ruby-mode/when: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/when -------------------------------------------------------------------------------- /snippets/ruby-mode/while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/while -------------------------------------------------------------------------------- /snippets/ruby-mode/y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/y -------------------------------------------------------------------------------- /snippets/ruby-mode/zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/ruby-mode/zip -------------------------------------------------------------------------------- /snippets/rust-mode/allow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/allow -------------------------------------------------------------------------------- /snippets/rust-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/case -------------------------------------------------------------------------------- /snippets/rust-mode/cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/cfg -------------------------------------------------------------------------------- /snippets/rust-mode/cfg=: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/cfg= -------------------------------------------------------------------------------- /snippets/rust-mode/deny: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/deny -------------------------------------------------------------------------------- /snippets/rust-mode/deny!: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/deny! -------------------------------------------------------------------------------- /snippets/rust-mode/drop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/drop -------------------------------------------------------------------------------- /snippets/rust-mode/enum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/enum -------------------------------------------------------------------------------- /snippets/rust-mode/fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/fn -------------------------------------------------------------------------------- /snippets/rust-mode/fnr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/fnr -------------------------------------------------------------------------------- /snippets/rust-mode/fns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/fns -------------------------------------------------------------------------------- /snippets/rust-mode/fnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/fnw -------------------------------------------------------------------------------- /snippets/rust-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/for -------------------------------------------------------------------------------- /snippets/rust-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/if -------------------------------------------------------------------------------- /snippets/rust-mode/ife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/ife -------------------------------------------------------------------------------- /snippets/rust-mode/ifl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/ifl -------------------------------------------------------------------------------- /snippets/rust-mode/impl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/impl -------------------------------------------------------------------------------- /snippets/rust-mode/implt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/implt -------------------------------------------------------------------------------- /snippets/rust-mode/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/let -------------------------------------------------------------------------------- /snippets/rust-mode/letm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/letm -------------------------------------------------------------------------------- /snippets/rust-mode/lett: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/lett -------------------------------------------------------------------------------- /snippets/rust-mode/lettm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/lettm -------------------------------------------------------------------------------- /snippets/rust-mode/loop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/loop -------------------------------------------------------------------------------- /snippets/rust-mode/macro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/macro -------------------------------------------------------------------------------- /snippets/rust-mode/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/main -------------------------------------------------------------------------------- /snippets/rust-mode/match: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/match -------------------------------------------------------------------------------- /snippets/rust-mode/print: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/print -------------------------------------------------------------------------------- /snippets/rust-mode/spawn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/spawn -------------------------------------------------------------------------------- /snippets/rust-mode/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/test -------------------------------------------------------------------------------- /snippets/rust-mode/trait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/trait -------------------------------------------------------------------------------- /snippets/rust-mode/type: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/type -------------------------------------------------------------------------------- /snippets/rust-mode/union: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/union -------------------------------------------------------------------------------- /snippets/rust-mode/warn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/warn -------------------------------------------------------------------------------- /snippets/rust-mode/warn!: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/warn! -------------------------------------------------------------------------------- /snippets/rust-mode/while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/rust-mode/while -------------------------------------------------------------------------------- /snippets/scala-mode/app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/scala-mode/app -------------------------------------------------------------------------------- /snippets/scala-mode/case: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/scala-mode/case -------------------------------------------------------------------------------- /snippets/scala-mode/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/scala-mode/cc -------------------------------------------------------------------------------- /snippets/scala-mode/co: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/scala-mode/co -------------------------------------------------------------------------------- /snippets/scala-mode/cons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/scala-mode/cons -------------------------------------------------------------------------------- /snippets/scala-mode/def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/scala-mode/def -------------------------------------------------------------------------------- /snippets/scala-mode/doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/scala-mode/doc -------------------------------------------------------------------------------- /snippets/scala-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/scala-mode/for -------------------------------------------------------------------------------- /snippets/scala-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/scala-mode/if -------------------------------------------------------------------------------- /snippets/scala-mode/ls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/scala-mode/ls -------------------------------------------------------------------------------- /snippets/scala-mode/main: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/scala-mode/main -------------------------------------------------------------------------------- /snippets/scala-mode/ob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/scala-mode/ob -------------------------------------------------------------------------------- /snippets/scala-mode/try: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/scala-mode/try -------------------------------------------------------------------------------- /snippets/sh-mode/args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/sh-mode/args -------------------------------------------------------------------------------- /snippets/sh-mode/bang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/sh-mode/bang -------------------------------------------------------------------------------- /snippets/sh-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/sh-mode/if -------------------------------------------------------------------------------- /snippets/sh-mode/ife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/sh-mode/ife -------------------------------------------------------------------------------- /snippets/sh-mode/until: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/sh-mode/until -------------------------------------------------------------------------------- /snippets/sh-mode/while: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/sh-mode/while -------------------------------------------------------------------------------- /snippets/sql-mode/column: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/sql-mode/column -------------------------------------------------------------------------------- /snippets/sql-mode/create: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/sql-mode/create -------------------------------------------------------------------------------- /snippets/sql-mode/insert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/sql-mode/insert -------------------------------------------------------------------------------- /snippets/swift-mode/fori: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/swift-mode/fori -------------------------------------------------------------------------------- /snippets/swift-mode/func: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/swift-mode/func -------------------------------------------------------------------------------- /snippets/swift-mode/if: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/swift-mode/if -------------------------------------------------------------------------------- /snippets/swift-mode/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/swift-mode/let -------------------------------------------------------------------------------- /snippets/swift-mode/mark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/swift-mode/mark -------------------------------------------------------------------------------- /snippets/swift-mode/prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/swift-mode/prop -------------------------------------------------------------------------------- /snippets/swift-mode/var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/swift-mode/var -------------------------------------------------------------------------------- /snippets/text-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | fundamental-mode 2 | -------------------------------------------------------------------------------- /snippets/tuareg-mode/for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/tuareg-mode/for -------------------------------------------------------------------------------- /snippets/tuareg-mode/fun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/tuareg-mode/fun -------------------------------------------------------------------------------- /snippets/tuareg-mode/let: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/tuareg-mode/let -------------------------------------------------------------------------------- /snippets/tuareg-mode/rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/tuareg-mode/rec -------------------------------------------------------------------------------- /snippets/tuareg-mode/try: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/tuareg-mode/try -------------------------------------------------------------------------------- /snippets/tuareg-mode/val: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/tuareg-mode/val -------------------------------------------------------------------------------- /snippets/typerex-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | tuareg-mode 2 | -------------------------------------------------------------------------------- /snippets/udev-mode/ENV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/udev-mode/ENV -------------------------------------------------------------------------------- /snippets/udev-mode/GOTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/udev-mode/GOTO -------------------------------------------------------------------------------- /snippets/udev-mode/add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/udev-mode/add -------------------------------------------------------------------------------- /snippets/udev-mode/env$: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/udev-mode/env$ -------------------------------------------------------------------------------- /snippets/udev-mode/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/udev-mode/run -------------------------------------------------------------------------------- /snippets/web-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | html-mode 2 | -------------------------------------------------------------------------------- /snippets/yaml-mode/entry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/yaml-mode/entry -------------------------------------------------------------------------------- /snippets/yaml-mode/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ztlevi/spacemacs-config/HEAD/snippets/yaml-mode/list --------------------------------------------------------------------------------