├── #recentf# ├── README.org ├── anaconda-mode └── 0.1.13 │ ├── jedi-0.13.1-py2.7.egg │ └── jedi │ │ ├── _compatibility.py │ │ ├── _compatibility.pyc │ │ ├── api │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── classes.py │ │ ├── classes.pyc │ │ ├── completion.py │ │ ├── completion.pyc │ │ ├── environment.py │ │ ├── environment.pyc │ │ ├── exceptions.py │ │ ├── exceptions.pyc │ │ ├── helpers.py │ │ ├── helpers.pyc │ │ ├── interpreter.py │ │ ├── interpreter.pyc │ │ ├── keywords.py │ │ ├── keywords.pyc │ │ ├── project.py │ │ ├── project.pyc │ │ └── replstartup.py │ │ ├── cache.py │ │ ├── cache.pyc │ │ ├── common │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── context.py │ │ ├── context.pyc │ │ ├── utils.py │ │ └── utils.pyc │ │ ├── debug.py │ │ ├── debug.pyc │ │ ├── evaluate │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── analysis.py │ │ ├── analysis.pyc │ │ ├── arguments.py │ │ ├── arguments.pyc │ │ ├── base_context.py │ │ ├── base_context.pyc │ │ ├── cache.py │ │ ├── cache.pyc │ │ ├── compiled │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── access.py │ │ │ ├── access.pyc │ │ │ ├── context.py │ │ │ ├── context.pyc │ │ │ ├── fake.py │ │ │ ├── fake.pyc │ │ │ ├── fake │ │ │ │ ├── _functools.pym │ │ │ │ ├── _sqlite3.pym │ │ │ │ ├── _sre.pym │ │ │ │ ├── _weakref.pym │ │ │ │ ├── builtins.pym │ │ │ │ ├── datetime.pym │ │ │ │ ├── io.pym │ │ │ │ ├── operator.pym │ │ │ │ └── posix.pym │ │ │ ├── getattr_static.py │ │ │ ├── getattr_static.pyc │ │ │ ├── mixed.py │ │ │ ├── mixed.pyc │ │ │ └── subprocess │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── __main__.py │ │ │ │ ├── functions.py │ │ │ │ └── functions.pyc │ │ ├── context │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── asynchronous.py │ │ │ ├── asynchronous.pyc │ │ │ ├── function.py │ │ │ ├── function.pyc │ │ │ ├── instance.py │ │ │ ├── instance.pyc │ │ │ ├── iterable.py │ │ │ ├── iterable.pyc │ │ │ ├── klass.py │ │ │ ├── klass.pyc │ │ │ ├── module.py │ │ │ ├── module.pyc │ │ │ ├── namespace.py │ │ │ └── namespace.pyc │ │ ├── docstrings.py │ │ ├── docstrings.pyc │ │ ├── dynamic.py │ │ ├── dynamic.pyc │ │ ├── filters.py │ │ ├── filters.pyc │ │ ├── finder.py │ │ ├── finder.pyc │ │ ├── flow_analysis.py │ │ ├── flow_analysis.pyc │ │ ├── helpers.py │ │ ├── helpers.pyc │ │ ├── imports.py │ │ ├── imports.pyc │ │ ├── jedi_typing.py │ │ ├── lazy_context.py │ │ ├── lazy_context.pyc │ │ ├── param.py │ │ ├── param.pyc │ │ ├── parser_cache.py │ │ ├── parser_cache.pyc │ │ ├── pep0484.py │ │ ├── pep0484.pyc │ │ ├── recursion.py │ │ ├── recursion.pyc │ │ ├── stdlib.py │ │ ├── stdlib.pyc │ │ ├── syntax_tree.py │ │ ├── syntax_tree.pyc │ │ ├── sys_path.py │ │ ├── sys_path.pyc │ │ ├── usages.py │ │ ├── usages.pyc │ │ ├── utils.py │ │ └── utils.pyc │ │ ├── parser_utils.py │ │ ├── parser_utils.pyc │ │ ├── refactoring.py │ │ ├── settings.py │ │ ├── settings.pyc │ │ └── utils.py │ ├── parso-0.3.1-py2.7.egg │ ├── EGG-INFO │ │ ├── DESCRIPTION.rst │ │ ├── PKG-INFO │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ └── parso │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── _compatibility.py │ │ ├── _compatibility.pyc │ │ ├── cache.py │ │ ├── cache.pyc │ │ ├── grammar.py │ │ ├── grammar.pyc │ │ ├── normalizer.py │ │ ├── normalizer.pyc │ │ ├── parser.py │ │ ├── parser.pyc │ │ ├── pgen2 │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── generator.py │ │ ├── generator.pyc │ │ ├── grammar_parser.py │ │ └── grammar_parser.pyc │ │ ├── python │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── diff.py │ │ ├── diff.pyc │ │ ├── errors.py │ │ ├── errors.pyc │ │ ├── grammar26.txt │ │ ├── grammar27.txt │ │ ├── grammar33.txt │ │ ├── grammar34.txt │ │ ├── grammar35.txt │ │ ├── grammar36.txt │ │ ├── grammar37.txt │ │ ├── parser.py │ │ ├── parser.pyc │ │ ├── pep8.py │ │ ├── pep8.pyc │ │ ├── prefix.py │ │ ├── prefix.pyc │ │ ├── token.py │ │ ├── token.pyc │ │ ├── tokenize.py │ │ ├── tokenize.pyc │ │ ├── tree.py │ │ └── tree.pyc │ │ ├── tree.py │ │ ├── tree.pyc │ │ ├── utils.py │ │ └── utils.pyc │ └── service_factory-0.1.5-py2.7.egg │ ├── EGG-INFO │ ├── DESCRIPTION.rst │ ├── PKG-INFO │ ├── RECORD │ ├── WHEEL │ ├── metadata.json │ └── top_level.txt │ └── service_factory │ ├── __init__.py │ ├── __init__.pyc │ ├── compat.py │ ├── compat.pyc │ ├── errors.py │ ├── errors.pyc │ ├── exceptions.py │ ├── exceptions.pyc │ ├── factory.py │ ├── factory.pyc │ ├── providers │ ├── __init__.py │ ├── __init__.pyc │ ├── basehttp.py │ └── basehttp.pyc │ ├── service.py │ ├── service.pyc │ ├── validation.py │ └── validation.pyc ├── auto-save-list ├── .saves-22108-ShritamaAndMe~ ├── .saves-5048-ShritamaAndMe~ ├── .saves-6007-ShritamaAndMe~ └── .saves-787-ShritamaAndMe~ ├── elpa ├── ac-dcd-readme.txt ├── anaconda-mode-20190111.1524 │ ├── anaconda-mode-autoloads.el │ ├── anaconda-mode-pkg.el │ ├── anaconda-mode.el │ └── anaconda-mode.elc ├── anaconda-mode-20190616.1019 │ ├── anaconda-mode-autoloads.el │ ├── anaconda-mode-pkg.el │ ├── anaconda-mode.el │ └── anaconda-mode.elc ├── anaconda-mode-readme.txt ├── archives │ ├── gnu │ │ ├── archive-contents │ │ └── archive-contents.signed │ ├── melpa │ │ └── archive-contents │ └── org │ │ └── archive-contents ├── async-20190503.656 │ ├── async-autoloads.el │ ├── async-bytecomp.el │ ├── async-bytecomp.elc │ ├── async-pkg.el │ ├── async.el │ ├── async.elc │ ├── dired-async.el │ ├── dired-async.elc │ ├── smtpmail-async.el │ └── smtpmail-async.elc ├── command-log-mode-20160413.447 │ ├── command-log-mode-autoloads.el │ ├── command-log-mode-pkg.el │ ├── command-log-mode.el │ └── command-log-mode.elc ├── command-log-mode-readme.txt ├── company-20190430.1852 │ ├── company-abbrev.el │ ├── company-abbrev.elc │ ├── company-autoloads.el │ ├── company-bbdb.el │ ├── company-bbdb.elc │ ├── company-capf.el │ ├── company-capf.elc │ ├── company-clang.el │ ├── company-clang.elc │ ├── company-cmake.el │ ├── company-cmake.elc │ ├── company-css.el │ ├── company-css.elc │ ├── company-dabbrev-code.el │ ├── company-dabbrev-code.elc │ ├── company-dabbrev.el │ ├── company-dabbrev.elc │ ├── company-eclim.el │ ├── company-eclim.elc │ ├── company-elisp.el │ ├── company-elisp.elc │ ├── company-etags.el │ ├── company-etags.elc │ ├── company-files.el │ ├── company-files.elc │ ├── company-gtags.el │ ├── company-gtags.elc │ ├── company-ispell.el │ ├── company-ispell.elc │ ├── company-keywords.el │ ├── company-keywords.elc │ ├── company-nxml.el │ ├── company-nxml.elc │ ├── company-oddmuse.el │ ├── company-oddmuse.elc │ ├── company-pkg.el │ ├── company-semantic.el │ ├── company-semantic.elc │ ├── company-template.el │ ├── company-template.elc │ ├── company-tempo.el │ ├── company-tempo.elc │ ├── company-tng.el │ ├── company-tng.elc │ ├── company-xcode.el │ ├── company-xcode.elc │ ├── company-yasnippet.el │ ├── company-yasnippet.elc │ ├── company.el │ └── company.elc ├── company-anaconda-20181025.1305 │ ├── company-anaconda-autoloads.el │ ├── company-anaconda-pkg.el │ └── company-anaconda.el ├── company-anaconda-readme.txt ├── company-quickhelp-20180525.1003 │ ├── company-quickhelp-autoloads.el │ ├── company-quickhelp-pkg.el │ ├── company-quickhelp.el │ └── company-quickhelp.elc ├── company-quickhelp-readme.txt ├── counsel-20190720.1653 │ ├── counsel-autoloads.el │ ├── counsel-pkg.el │ ├── counsel.el │ └── counsel.elc ├── csv-mode-1.7.signed ├── csv-mode-1.7 │ ├── csv-mode-autoloads.el │ ├── csv-mode-pkg.el │ ├── csv-mode.el │ └── csv-mode.elc ├── csv-mode-readme.txt ├── darkroom-readme.txt ├── dash-20190424.1804 │ ├── dash-autoloads.el │ ├── dash-pkg.el │ ├── dash.el │ └── dash.elc ├── exotica-theme-20180212.2329 │ ├── exotica-theme-autoloads.el │ ├── exotica-theme-pkg.el │ ├── exotica-theme.el │ └── exotica-theme.elc ├── exotica-theme-readme.txt ├── expand-region-20190416.538 │ ├── cc-mode-expansions.el │ ├── cc-mode-expansions.elc │ ├── clojure-mode-expansions.el │ ├── clojure-mode-expansions.elc │ ├── cperl-mode-expansions.el │ ├── cperl-mode-expansions.elc │ ├── css-mode-expansions.el │ ├── css-mode-expansions.elc │ ├── enh-ruby-mode-expansions.el │ ├── enh-ruby-mode-expansions.elc │ ├── er-basic-expansions.el │ ├── er-basic-expansions.elc │ ├── erlang-mode-expansions.el │ ├── erlang-mode-expansions.elc │ ├── expand-region-autoloads.el │ ├── expand-region-core.el │ ├── expand-region-core.elc │ ├── expand-region-custom.el │ ├── expand-region-custom.elc │ ├── expand-region-pkg.el │ ├── expand-region.el │ ├── expand-region.elc │ ├── feature-mode-expansions.el │ ├── feature-mode-expansions.elc │ ├── html-mode-expansions.el │ ├── html-mode-expansions.elc │ ├── js-mode-expansions.el │ ├── js-mode-expansions.elc │ ├── js2-mode-expansions.el │ ├── js2-mode-expansions.elc │ ├── jsp-expansions.el │ ├── jsp-expansions.elc │ ├── latex-mode-expansions.el │ ├── latex-mode-expansions.elc │ ├── nxml-mode-expansions.el │ ├── nxml-mode-expansions.elc │ ├── octave-expansions.el │ ├── octave-expansions.elc │ ├── python-el-expansions.el │ ├── python-el-expansions.elc │ ├── python-el-fgallina-expansions.el │ ├── python-el-fgallina-expansions.elc │ ├── python-mode-expansions.el │ ├── python-mode-expansions.elc │ ├── ruby-mode-expansions.el │ ├── ruby-mode-expansions.elc │ ├── sml-mode-expansions.el │ ├── sml-mode-expansions.elc │ ├── subword-mode-expansions.el │ ├── subword-mode-expansions.elc │ ├── text-mode-expansions.el │ ├── text-mode-expansions.elc │ ├── the-org-mode-expansions.el │ ├── the-org-mode-expansions.elc │ ├── web-mode-expansions.el │ └── web-mode-expansions.elc ├── f-20190109.906 │ ├── f-autoloads.el │ ├── f-pkg.el │ ├── f.el │ └── f.elc ├── focus-readme.txt ├── fstar-mode-readme.txt ├── git-commit-20190717.29 │ ├── git-commit-autoloads.el │ ├── git-commit-pkg.el │ ├── git-commit.el │ └── git-commit.elc ├── gnupg │ ├── pubring.kbx │ ├── pubring.kbx~ │ ├── tofu.db │ └── trustdb.gpg ├── highlight-indent-guides-20190108.3 │ ├── highlight-indent-guides-autoloads.el │ ├── highlight-indent-guides-pkg.el │ ├── highlight-indent-guides.el │ └── highlight-indent-guides.elc ├── ialign-20181202.1146 │ ├── ialign-autoloads.el │ ├── ialign-pkg.el │ ├── ialign.el │ └── ialign.elc ├── ialign-readme.txt ├── ido-describe-bindings-20161023.1102 │ ├── ido-describe-bindings-autoloads.el │ ├── ido-describe-bindings-pkg.el │ ├── ido-describe-bindings.el │ └── ido-describe-bindings.elc ├── ido-describe-bindings-readme.txt ├── ido-grid-mode-20160122.1139 │ ├── ido-grid-mode-autoloads.el │ ├── ido-grid-mode-pkg.el │ ├── ido-grid-mode.el │ └── ido-grid-mode.elc ├── ido-grid-mode-readme.txt ├── iedit-20190419.803 │ ├── iedit-autoloads.el │ ├── iedit-lib.el │ ├── iedit-lib.elc │ ├── iedit-pkg.el │ ├── iedit-rect.el │ ├── iedit-rect.elc │ ├── iedit.el │ └── iedit.elc ├── ivy-20190722.1352 │ ├── colir.el │ ├── colir.elc │ ├── dir │ ├── elpa.el │ ├── elpa.elc │ ├── ivy-autoloads.el │ ├── ivy-help.org │ ├── ivy-overlay.el │ ├── ivy-overlay.elc │ ├── ivy-pkg.el │ ├── ivy.el │ ├── ivy.elc │ └── ivy.info ├── langtool-20190303.2227 │ ├── langtool-autoloads.el │ ├── langtool-pkg.el │ ├── langtool.el │ └── langtool.elc ├── magit-20190715.1804 │ ├── AUTHORS.md │ ├── LICENSE │ ├── dir │ ├── git-rebase.el │ ├── git-rebase.elc │ ├── magit-apply.el │ ├── magit-apply.elc │ ├── magit-autoloads.el │ ├── magit-autorevert.el │ ├── magit-autorevert.elc │ ├── magit-bisect.el │ ├── magit-bisect.elc │ ├── magit-blame.el │ ├── magit-blame.elc │ ├── magit-bookmark.el │ ├── magit-bookmark.elc │ ├── magit-branch.el │ ├── magit-branch.elc │ ├── magit-clone.el │ ├── magit-clone.elc │ ├── magit-commit.el │ ├── magit-commit.elc │ ├── magit-core.el │ ├── magit-core.elc │ ├── magit-diff.el │ ├── magit-diff.elc │ ├── magit-ediff.el │ ├── magit-ediff.elc │ ├── magit-extras.el │ ├── magit-extras.elc │ ├── magit-fetch.el │ ├── magit-fetch.elc │ ├── magit-files.el │ ├── magit-files.elc │ ├── magit-git.el │ ├── magit-git.elc │ ├── magit-gitignore.el │ ├── magit-gitignore.elc │ ├── magit-imenu.el │ ├── magit-imenu.elc │ ├── magit-log.el │ ├── magit-log.elc │ ├── magit-margin.el │ ├── magit-margin.elc │ ├── magit-merge.el │ ├── magit-merge.elc │ ├── magit-mode.el │ ├── magit-mode.elc │ ├── magit-notes.el │ ├── magit-notes.elc │ ├── magit-obsolete.el │ ├── magit-obsolete.elc │ ├── magit-patch.el │ ├── magit-patch.elc │ ├── magit-pkg.el │ ├── magit-process.el │ ├── magit-process.elc │ ├── magit-pull.el │ ├── magit-pull.elc │ ├── magit-push.el │ ├── magit-push.elc │ ├── magit-reflog.el │ ├── magit-reflog.elc │ ├── magit-refs.el │ ├── magit-refs.elc │ ├── magit-remote.el │ ├── magit-remote.elc │ ├── magit-repos.el │ ├── magit-repos.elc │ ├── magit-reset.el │ ├── magit-reset.elc │ ├── magit-section.el │ ├── magit-section.elc │ ├── magit-sequence.el │ ├── magit-sequence.elc │ ├── magit-stash.el │ ├── magit-stash.elc │ ├── magit-status.el │ ├── magit-status.elc │ ├── magit-submodule.el │ ├── magit-submodule.elc │ ├── magit-subtree.el │ ├── magit-subtree.elc │ ├── magit-tag.el │ ├── magit-tag.elc │ ├── magit-transient.el │ ├── magit-transient.elc │ ├── magit-utils.el │ ├── magit-utils.elc │ ├── magit-wip.el │ ├── magit-wip.elc │ ├── magit-worktree.el │ ├── magit-worktree.elc │ ├── magit.el │ ├── magit.elc │ ├── magit.info │ ├── magit.info-1 │ └── magit.info-2 ├── multiple-cursors-20190317.1211 │ ├── mc-cycle-cursors.el │ ├── mc-cycle-cursors.elc │ ├── mc-edit-lines.el │ ├── mc-edit-lines.elc │ ├── mc-hide-unmatched-lines-mode.el │ ├── mc-hide-unmatched-lines-mode.elc │ ├── mc-mark-more.el │ ├── mc-mark-more.elc │ ├── mc-mark-pop.el │ ├── mc-mark-pop.elc │ ├── mc-separate-operations.el │ ├── mc-separate-operations.elc │ ├── multiple-cursors-autoloads.el │ ├── multiple-cursors-core.el │ ├── multiple-cursors-core.elc │ ├── multiple-cursors-pkg.el │ ├── multiple-cursors.el │ ├── multiple-cursors.elc │ ├── rectangular-region-mode.el │ └── rectangular-region-mode.elc ├── multiple-cursors-readme.txt ├── one-themes-readme.txt ├── org-bullets-20180208.2343 │ ├── org-bullets-autoloads.el │ ├── org-bullets-pkg.el │ ├── org-bullets.el │ └── org-bullets.elc ├── org-bullets-readme.txt ├── org-plus-contrib-20181217 │ ├── COPYING │ ├── README_ELPA │ ├── dir │ ├── etc │ │ ├── ORG-NEWS │ │ └── styles │ │ │ ├── OrgOdtContentTemplate.xml │ │ │ ├── OrgOdtStyles.xml │ │ │ └── README │ ├── ob-C.el │ ├── ob-C.elc │ ├── ob-J.el │ ├── ob-J.elc │ ├── ob-R.el │ ├── ob-R.elc │ ├── ob-abc.el │ ├── ob-abc.elc │ ├── ob-asymptote.el │ ├── ob-asymptote.elc │ ├── ob-awk.el │ ├── ob-awk.elc │ ├── ob-calc.el │ ├── ob-calc.elc │ ├── ob-clojure.el │ ├── ob-clojure.elc │ ├── ob-comint.el │ ├── ob-comint.elc │ ├── ob-coq.el │ ├── ob-coq.elc │ ├── ob-core.el │ ├── ob-core.elc │ ├── ob-csharp.el │ ├── ob-csharp.elc │ ├── ob-css.el │ ├── ob-css.elc │ ├── ob-ditaa.el │ ├── ob-ditaa.elc │ ├── ob-dot.el │ ├── ob-dot.elc │ ├── ob-ebnf.el │ ├── ob-ebnf.elc │ ├── ob-emacs-lisp.el │ ├── ob-emacs-lisp.elc │ ├── ob-eukleides.el │ ├── ob-eukleides.elc │ ├── ob-eval.el │ ├── ob-eval.elc │ ├── ob-exp.el │ ├── ob-exp.elc │ ├── ob-fomus.el │ ├── ob-fomus.elc │ ├── ob-forth.el │ ├── ob-forth.elc │ ├── ob-fortran.el │ ├── ob-fortran.elc │ ├── ob-gnuplot.el │ ├── ob-gnuplot.elc │ ├── ob-groovy.el │ ├── ob-groovy.elc │ ├── ob-haskell.el │ ├── ob-haskell.elc │ ├── ob-hledger.el │ ├── ob-hledger.elc │ ├── ob-io.el │ ├── ob-io.elc │ ├── ob-java.el │ ├── ob-java.elc │ ├── ob-js.el │ ├── ob-js.elc │ ├── ob-julia.el │ ├── ob-julia.elc │ ├── ob-keys.el │ ├── ob-keys.elc │ ├── ob-latex.el │ ├── ob-latex.elc │ ├── ob-ledger.el │ ├── ob-ledger.elc │ ├── ob-lilypond.el │ ├── ob-lilypond.elc │ ├── ob-lisp.el │ ├── ob-lisp.elc │ ├── ob-lob.el │ ├── ob-lob.elc │ ├── ob-lua.el │ ├── ob-lua.elc │ ├── ob-makefile.el │ ├── ob-makefile.elc │ ├── ob-mathematica.el │ ├── ob-mathematica.elc │ ├── ob-mathomatic.el │ ├── ob-mathomatic.elc │ ├── ob-matlab.el │ ├── ob-matlab.elc │ ├── ob-maxima.el │ ├── ob-maxima.elc │ ├── ob-mscgen.el │ ├── ob-mscgen.elc │ ├── ob-ocaml.el │ ├── ob-ocaml.elc │ ├── ob-octave.el │ ├── ob-octave.elc │ ├── ob-org.el │ ├── ob-org.elc │ ├── ob-oz.el │ ├── ob-oz.elc │ ├── ob-perl.el │ ├── ob-perl.elc │ ├── ob-picolisp.el │ ├── ob-picolisp.elc │ ├── ob-plantuml.el │ ├── ob-plantuml.elc │ ├── ob-processing.el │ ├── ob-processing.elc │ ├── ob-python.el │ ├── ob-python.elc │ ├── ob-ref.el │ ├── ob-ref.elc │ ├── ob-ruby.el │ ├── ob-ruby.elc │ ├── ob-sass.el │ ├── ob-sass.elc │ ├── ob-scheme.el │ ├── ob-scheme.elc │ ├── ob-sclang.el │ ├── ob-screen.el │ ├── ob-screen.elc │ ├── ob-sed.el │ ├── ob-sed.elc │ ├── ob-shell.el │ ├── ob-shell.elc │ ├── ob-shen.el │ ├── ob-shen.elc │ ├── ob-sql.el │ ├── ob-sql.elc │ ├── ob-sqlite.el │ ├── ob-sqlite.elc │ ├── ob-stan.el │ ├── ob-stan.elc │ ├── ob-stata.el │ ├── ob-stata.elc │ ├── ob-table.el │ ├── ob-table.elc │ ├── ob-tangle.el │ ├── ob-tangle.elc │ ├── ob-tcl.el │ ├── ob-tcl.elc │ ├── ob-vala.el │ ├── ob-vala.elc │ ├── ob-vbnet.el │ ├── ob-vbnet.elc │ ├── ob.el │ ├── ob.elc │ ├── org │ ├── org-agenda.el │ ├── org-agenda.elc │ ├── org-annotate-file.el │ ├── org-annotate-file.elc │ ├── org-archive.el │ ├── org-archive.elc │ ├── org-attach.el │ ├── org-attach.elc │ ├── org-bbdb.el │ ├── org-bbdb.elc │ ├── org-bibtex-extras.el │ ├── org-bibtex-extras.elc │ ├── org-bibtex.el │ ├── org-bibtex.elc │ ├── org-bookmark.el │ ├── org-bookmark.elc │ ├── org-capture.el │ ├── org-capture.elc │ ├── org-checklist.el │ ├── org-checklist.elc │ ├── org-choose.el │ ├── org-choose.elc │ ├── org-clock.el │ ├── org-clock.elc │ ├── org-collector.el │ ├── org-collector.elc │ ├── org-colview.el │ ├── org-colview.elc │ ├── org-compat.el │ ├── org-compat.elc │ ├── org-contacts.el │ ├── org-contacts.elc │ ├── org-contribdir.el │ ├── org-contribdir.elc │ ├── org-crypt.el │ ├── org-crypt.elc │ ├── org-ctags.el │ ├── org-ctags.elc │ ├── org-datetree.el │ ├── org-datetree.elc │ ├── org-depend.el │ ├── org-depend.elc │ ├── org-docview.el │ ├── org-docview.elc │ ├── org-drill.el │ ├── org-drill.elc │ ├── org-duration.el │ ├── org-duration.elc │ ├── org-effectiveness.el │ ├── org-effectiveness.elc │ ├── org-eldoc.el │ ├── org-eldoc.elc │ ├── org-element.el │ ├── org-element.elc │ ├── org-elisp-symbol.el │ ├── org-elisp-symbol.elc │ ├── org-entities.el │ ├── org-entities.elc │ ├── org-eshell.el │ ├── org-eshell.elc │ ├── org-eval-light.el │ ├── org-eval-light.elc │ ├── org-eval.el │ ├── org-eval.elc │ ├── org-eww.el │ ├── org-eww.elc │ ├── org-expiry.el │ ├── org-expiry.elc │ ├── org-faces.el │ ├── org-faces.elc │ ├── org-feed.el │ ├── org-feed.elc │ ├── org-footnote.el │ ├── org-footnote.elc │ ├── org-git-link.el │ ├── org-git-link.elc │ ├── org-gnus.el │ ├── org-gnus.elc │ ├── org-habit.el │ ├── org-habit.elc │ ├── org-id.el │ ├── org-id.elc │ ├── org-indent.el │ ├── org-indent.elc │ ├── org-index.el │ ├── org-index.elc │ ├── org-info.el │ ├── org-info.elc │ ├── org-inlinetask.el │ ├── org-inlinetask.elc │ ├── org-install.el │ ├── org-interactive-query.el │ ├── org-interactive-query.elc │ ├── org-invoice.el │ ├── org-invoice.elc │ ├── org-irc.el │ ├── org-irc.elc │ ├── org-learn.el │ ├── org-learn.elc │ ├── org-license.el │ ├── org-license.elc │ ├── org-link-edit.el │ ├── org-link-edit.elc │ ├── org-lint.el │ ├── org-lint.elc │ ├── org-list.el │ ├── org-list.elc │ ├── org-loaddefs.el │ ├── org-mac-iCal.el │ ├── org-mac-iCal.elc │ ├── org-mac-link.el │ ├── org-mac-link.elc │ ├── org-macro.el │ ├── org-macro.elc │ ├── org-macs.el │ ├── org-macs.elc │ ├── org-mairix.el │ ├── org-mairix.elc │ ├── org-man.el │ ├── org-man.elc │ ├── org-mew.el │ ├── org-mew.elc │ ├── org-mhe.el │ ├── org-mhe.elc │ ├── org-mobile.el │ ├── org-mobile.elc │ ├── org-mouse.el │ ├── org-mouse.elc │ ├── org-notify.el │ ├── org-notify.elc │ ├── org-notmuch.el │ ├── org-notmuch.elc │ ├── org-panel.el │ ├── org-panel.elc │ ├── org-passwords.el │ ├── org-passwords.elc │ ├── org-pcomplete.el │ ├── org-pcomplete.elc │ ├── org-plot.el │ ├── org-plot.elc │ ├── org-plus-contrib-autoloads.el │ ├── org-plus-contrib-pkg.el │ ├── org-protocol.el │ ├── org-protocol.elc │ ├── org-registry.el │ ├── org-registry.elc │ ├── org-rmail.el │ ├── org-rmail.elc │ ├── org-screen.el │ ├── org-screen.elc │ ├── org-screenshot.el │ ├── org-screenshot.elc │ ├── org-secretary.el │ ├── org-secretary.elc │ ├── org-src.el │ ├── org-src.elc │ ├── org-static-mathjax.el │ ├── org-static-mathjax.elc │ ├── org-sudoku.el │ ├── org-sudoku.elc │ ├── org-table.el │ ├── org-table.elc │ ├── org-timer.el │ ├── org-timer.elc │ ├── org-toc.el │ ├── org-toc.elc │ ├── org-track.el │ ├── org-track.elc │ ├── org-velocity.el │ ├── org-velocity.elc │ ├── org-version.el │ ├── org-vm.el │ ├── org-vm.elc │ ├── org-w3m.el │ ├── org-w3m.elc │ ├── org-wikinodes.el │ ├── org-wikinodes.elc │ ├── org-wl.el │ ├── org-wl.elc │ ├── org.el │ ├── org.elc │ ├── orgcard.pdf │ ├── orgtbl-sqlinsert.el │ ├── orgtbl-sqlinsert.elc │ ├── ox-ascii.el │ ├── ox-ascii.elc │ ├── ox-beamer.el │ ├── ox-beamer.elc │ ├── ox-bibtex.el │ ├── ox-bibtex.elc │ ├── ox-confluence.el │ ├── ox-confluence.elc │ ├── ox-deck.el │ ├── ox-deck.elc │ ├── ox-extra.el │ ├── ox-extra.elc │ ├── ox-freemind.el │ ├── ox-freemind.elc │ ├── ox-groff.el │ ├── ox-groff.elc │ ├── ox-html.el │ ├── ox-html.elc │ ├── ox-icalendar.el │ ├── ox-icalendar.elc │ ├── ox-koma-letter.el │ ├── ox-koma-letter.elc │ ├── ox-latex.el │ ├── ox-latex.elc │ ├── ox-man.el │ ├── ox-man.elc │ ├── ox-md.el │ ├── ox-md.elc │ ├── ox-odt.el │ ├── ox-odt.elc │ ├── ox-org.el │ ├── ox-org.elc │ ├── ox-publish.el │ ├── ox-publish.elc │ ├── ox-rss.el │ ├── ox-rss.elc │ ├── ox-s5.el │ ├── ox-s5.elc │ ├── ox-taskjuggler.el │ ├── ox-taskjuggler.elc │ ├── ox-texinfo.el │ ├── ox-texinfo.elc │ ├── ox.el │ └── ox.elc ├── org-plus-contrib-20181230 │ ├── COPYING │ ├── README_ELPA │ ├── dir │ ├── etc │ │ ├── ORG-NEWS │ │ └── styles │ │ │ ├── OrgOdtContentTemplate.xml │ │ │ ├── OrgOdtStyles.xml │ │ │ └── README │ ├── ob-C.el │ ├── ob-C.elc │ ├── ob-J.el │ ├── ob-J.elc │ ├── ob-R.el │ ├── ob-R.elc │ ├── ob-abc.el │ ├── ob-abc.elc │ ├── ob-arduino.el │ ├── ob-asymptote.el │ ├── ob-asymptote.elc │ ├── ob-awk.el │ ├── ob-awk.elc │ ├── ob-calc.el │ ├── ob-calc.elc │ ├── ob-clojure-literate.el │ ├── ob-clojure.el │ ├── ob-clojure.elc │ ├── ob-comint.el │ ├── ob-comint.elc │ ├── ob-coq.el │ ├── ob-coq.elc │ ├── ob-core.el │ ├── ob-core.elc │ ├── ob-csharp.el │ ├── ob-csharp.elc │ ├── ob-css.el │ ├── ob-css.elc │ ├── ob-ditaa.el │ ├── ob-ditaa.elc │ ├── ob-dot.el │ ├── ob-dot.elc │ ├── ob-ebnf.el │ ├── ob-ebnf.elc │ ├── ob-emacs-lisp.el │ ├── ob-emacs-lisp.elc │ ├── ob-eukleides.el │ ├── ob-eukleides.elc │ ├── ob-eval.el │ ├── ob-eval.elc │ ├── ob-exp.el │ ├── ob-exp.elc │ ├── ob-fomus.el │ ├── ob-fomus.elc │ ├── ob-forth.el │ ├── ob-forth.elc │ ├── ob-fortran.el │ ├── ob-fortran.elc │ ├── ob-gnuplot.el │ ├── ob-gnuplot.elc │ ├── ob-groovy.el │ ├── ob-groovy.elc │ ├── ob-haskell.el │ ├── ob-haskell.elc │ ├── ob-hledger.el │ ├── ob-hledger.elc │ ├── ob-io.el │ ├── ob-io.elc │ ├── ob-java.el │ ├── ob-java.elc │ ├── ob-js.el │ ├── ob-js.elc │ ├── ob-julia.el │ ├── ob-julia.elc │ ├── ob-keys.el │ ├── ob-keys.elc │ ├── ob-latex.el │ ├── ob-latex.elc │ ├── ob-ledger.el │ ├── ob-ledger.elc │ ├── ob-lilypond.el │ ├── ob-lilypond.elc │ ├── ob-lisp.el │ ├── ob-lisp.elc │ ├── ob-lob.el │ ├── ob-lob.elc │ ├── ob-lua.el │ ├── ob-lua.elc │ ├── ob-makefile.el │ ├── ob-makefile.elc │ ├── ob-mathematica.el │ ├── ob-mathematica.elc │ ├── ob-mathomatic.el │ ├── ob-mathomatic.elc │ ├── ob-matlab.el │ ├── ob-matlab.elc │ ├── ob-maxima.el │ ├── ob-maxima.elc │ ├── ob-mscgen.el │ ├── ob-mscgen.elc │ ├── ob-ocaml.el │ ├── ob-ocaml.elc │ ├── ob-octave.el │ ├── ob-octave.elc │ ├── ob-org.el │ ├── ob-org.elc │ ├── ob-oz.el │ ├── ob-oz.elc │ ├── ob-perl.el │ ├── ob-perl.elc │ ├── ob-php.el │ ├── ob-php.elc │ ├── ob-picolisp.el │ ├── ob-picolisp.elc │ ├── ob-plantuml.el │ ├── ob-plantuml.elc │ ├── ob-processing.el │ ├── ob-processing.elc │ ├── ob-python.el │ ├── ob-python.elc │ ├── ob-redis.el │ ├── ob-redis.elc │ ├── ob-ref.el │ ├── ob-ref.elc │ ├── ob-ruby.el │ ├── ob-ruby.elc │ ├── ob-sass.el │ ├── ob-sass.elc │ ├── ob-scheme.el │ ├── ob-scheme.elc │ ├── ob-sclang.el │ ├── ob-screen.el │ ├── ob-screen.elc │ ├── ob-sed.el │ ├── ob-sed.elc │ ├── ob-shell.el │ ├── ob-shell.elc │ ├── ob-shen.el │ ├── ob-shen.elc │ ├── ob-smiles.el │ ├── ob-smiles.elc │ ├── ob-spice.el │ ├── ob-spice.elc │ ├── ob-sql.el │ ├── ob-sql.elc │ ├── ob-sqlite.el │ ├── ob-sqlite.elc │ ├── ob-stan.el │ ├── ob-stan.elc │ ├── ob-stata.el │ ├── ob-stata.elc │ ├── ob-table.el │ ├── ob-table.elc │ ├── ob-tangle.el │ ├── ob-tangle.elc │ ├── ob-tcl.el │ ├── ob-tcl.elc │ ├── ob-vala.el │ ├── ob-vala.elc │ ├── ob-vbnet.el │ ├── ob-vbnet.elc │ ├── ob.el │ ├── ob.elc │ ├── org │ ├── org-agenda.el │ ├── org-agenda.elc │ ├── org-annotate-file.el │ ├── org-annotate-file.elc │ ├── org-archive.el │ ├── org-archive.elc │ ├── org-attach-embedded-images.el │ ├── org-attach-embedded-images.elc │ ├── org-attach.el │ ├── org-attach.elc │ ├── org-bbdb.el │ ├── org-bbdb.elc │ ├── org-bibtex-extras.el │ ├── org-bibtex-extras.elc │ ├── org-bibtex.el │ ├── org-bibtex.elc │ ├── org-bookmark.el │ ├── org-bookmark.elc │ ├── org-capture.el │ ├── org-capture.elc │ ├── org-checklist.el │ ├── org-checklist.elc │ ├── org-choose.el │ ├── org-choose.elc │ ├── org-clock.el │ ├── org-clock.elc │ ├── org-collector.el │ ├── org-collector.elc │ ├── org-colview.el │ ├── org-colview.elc │ ├── org-compat.el │ ├── org-compat.elc │ ├── org-contacts.el │ ├── org-contacts.elc │ ├── org-contribdir.el │ ├── org-contribdir.elc │ ├── org-crypt.el │ ├── org-crypt.elc │ ├── org-ctags.el │ ├── org-ctags.elc │ ├── org-datetree.el │ ├── org-datetree.elc │ ├── org-depend.el │ ├── org-depend.elc │ ├── org-docview.el │ ├── org-docview.elc │ ├── org-drill.el │ ├── org-drill.elc │ ├── org-duration.el │ ├── org-duration.elc │ ├── org-effectiveness.el │ ├── org-effectiveness.elc │ ├── org-eldoc.el │ ├── org-eldoc.elc │ ├── org-element.el │ ├── org-element.elc │ ├── org-elisp-symbol.el │ ├── org-elisp-symbol.elc │ ├── org-entities.el │ ├── org-entities.elc │ ├── org-eshell.el │ ├── org-eshell.elc │ ├── org-eval-light.el │ ├── org-eval-light.elc │ ├── org-eval.el │ ├── org-eval.elc │ ├── org-eww.el │ ├── org-eww.elc │ ├── org-expiry.el │ ├── org-expiry.elc │ ├── org-faces.el │ ├── org-faces.elc │ ├── org-feed.el │ ├── org-feed.elc │ ├── org-footnote.el │ ├── org-footnote.elc │ ├── org-git-link.el │ ├── org-git-link.elc │ ├── org-gnus.el │ ├── org-gnus.elc │ ├── org-goto.el │ ├── org-goto.elc │ ├── org-habit.el │ ├── org-habit.elc │ ├── org-id.el │ ├── org-id.elc │ ├── org-indent.el │ ├── org-indent.elc │ ├── org-info.el │ ├── org-info.elc │ ├── org-inlinetask.el │ ├── org-inlinetask.elc │ ├── org-install.el │ ├── org-interactive-query.el │ ├── org-interactive-query.elc │ ├── org-invoice.el │ ├── org-invoice.elc │ ├── org-irc.el │ ├── org-irc.elc │ ├── org-learn.el │ ├── org-learn.elc │ ├── org-license.el │ ├── org-license.elc │ ├── org-link-edit.el │ ├── org-link-edit.elc │ ├── org-lint.el │ ├── org-lint.elc │ ├── org-list.el │ ├── org-list.elc │ ├── org-loaddefs.el │ ├── org-mac-iCal.el │ ├── org-mac-iCal.elc │ ├── org-mac-link.el │ ├── org-mac-link.elc │ ├── org-macro.el │ ├── org-macro.elc │ ├── org-macs.el │ ├── org-macs.elc │ ├── org-mairix.el │ ├── org-mairix.elc │ ├── org-man.el │ ├── org-man.elc │ ├── org-mew.el │ ├── org-mew.elc │ ├── org-mhe.el │ ├── org-mhe.elc │ ├── org-mobile.el │ ├── org-mobile.elc │ ├── org-mouse.el │ ├── org-mouse.elc │ ├── org-notify.el │ ├── org-notify.elc │ ├── org-notmuch.el │ ├── org-notmuch.elc │ ├── org-panel.el │ ├── org-panel.elc │ ├── org-passwords.el │ ├── org-passwords.elc │ ├── org-pcomplete.el │ ├── org-pcomplete.elc │ ├── org-plot.el │ ├── org-plot.elc │ ├── org-plus-contrib-autoloads.el │ ├── org-plus-contrib-pkg.el │ ├── org-protocol.el │ ├── org-protocol.elc │ ├── org-registry.el │ ├── org-registry.elc │ ├── org-rmail.el │ ├── org-rmail.elc │ ├── org-screen.el │ ├── org-screen.elc │ ├── org-screenshot.el │ ├── org-screenshot.elc │ ├── org-secretary.el │ ├── org-secretary.elc │ ├── org-src.el │ ├── org-src.elc │ ├── org-static-mathjax.el │ ├── org-static-mathjax.elc │ ├── org-sudoku.el │ ├── org-sudoku.elc │ ├── org-table.el │ ├── org-table.elc │ ├── org-tempo.el │ ├── org-tempo.elc │ ├── org-timer.el │ ├── org-timer.elc │ ├── org-toc.el │ ├── org-toc.elc │ ├── org-track.el │ ├── org-track.elc │ ├── org-velocity.el │ ├── org-velocity.elc │ ├── org-version.el │ ├── org-vm.el │ ├── org-vm.elc │ ├── org-w3m.el │ ├── org-w3m.elc │ ├── org-wikinodes.el │ ├── org-wikinodes.elc │ ├── org-wl.el │ ├── org-wl.elc │ ├── org.el │ ├── org.elc │ ├── orgcard.pdf │ ├── orgtbl-sqlinsert.el │ ├── orgtbl-sqlinsert.elc │ ├── ox-ascii.el │ ├── ox-ascii.elc │ ├── ox-beamer.el │ ├── ox-beamer.elc │ ├── ox-bibtex.el │ ├── ox-bibtex.elc │ ├── ox-confluence.el │ ├── ox-confluence.elc │ ├── ox-deck.el │ ├── ox-deck.elc │ ├── ox-extra.el │ ├── ox-extra.elc │ ├── ox-freemind.el │ ├── ox-freemind.elc │ ├── ox-groff.el │ ├── ox-groff.elc │ ├── ox-html.el │ ├── ox-html.elc │ ├── ox-icalendar.el │ ├── ox-icalendar.elc │ ├── ox-koma-letter.el │ ├── ox-koma-letter.elc │ ├── ox-latex.el │ ├── ox-latex.elc │ ├── ox-man.el │ ├── ox-man.elc │ ├── ox-md.el │ ├── ox-md.elc │ ├── ox-odt.el │ ├── ox-odt.elc │ ├── ox-org.el │ ├── ox-org.elc │ ├── ox-publish.el │ ├── ox-publish.elc │ ├── ox-rss.el │ ├── ox-rss.elc │ ├── ox-s5.el │ ├── ox-s5.elc │ ├── ox-taskjuggler.el │ ├── ox-taskjuggler.elc │ ├── ox-texinfo.el │ ├── ox-texinfo.elc │ ├── ox.el │ └── ox.elc ├── paredit-20171127.205 │ ├── paredit-autoloads.el │ ├── paredit-pkg.el │ ├── paredit.el │ └── paredit.elc ├── pine-script-mode-readme.txt ├── pos-tip-20150318.1513 │ ├── pos-tip-autoloads.el │ ├── pos-tip-pkg.el │ ├── pos-tip.el │ └── pos-tip.elc ├── pythonic-20190714.729 │ ├── pythonic-autoloads.el │ ├── pythonic-pkg.el │ ├── pythonic.el │ └── pythonic.elc ├── s-20180406.808 │ ├── s-autoloads.el │ ├── s-pkg.el │ ├── s.el │ └── s.elc ├── swiper-20190722.1352 │ ├── swiper-autoloads.el │ ├── swiper-pkg.el │ ├── swiper.el │ └── swiper.elc ├── tj3-mode-20180519.1228 │ ├── tj3-mode-autoloads.el │ ├── tj3-mode-pkg.el │ ├── tj3-mode.el │ └── tj3-mode.elc ├── tj3-mode-readme.txt ├── transient-20190630.1359 │ ├── dir │ ├── transient-autoloads.el │ ├── transient-pkg.el │ ├── transient.el │ ├── transient.elc │ └── transient.info ├── typing-20180830.2203 │ ├── typing-autoloads.el │ ├── typing-pkg.el │ ├── typing.el │ └── typing.elc ├── typing-game-20160426.1220 │ ├── typing-game-autoloads.el │ ├── typing-game-pkg.el │ ├── typing-game.el │ └── typing-game.elc ├── typing-game-readme.txt ├── typing-readme.txt ├── vscode-icon-readme.txt ├── w3-readme.txt ├── wacspace-readme.txt ├── which-key-20190529.114 │ ├── which-key-autoloads.el │ ├── which-key-pkg.el │ ├── which-key.el │ └── which-key.elc ├── with-editor-20190715.2007 │ ├── dir │ ├── with-editor-autoloads.el │ ├── with-editor-pkg.el │ ├── with-editor.el │ ├── with-editor.elc │ └── with-editor.info ├── xkcd-readme.txt ├── yasnippet-20190630.1720 │ ├── yasnippet-autoloads.el │ ├── yasnippet-pkg.el │ ├── yasnippet.el │ └── yasnippet.elc └── yasnippet-snippets-20190714.904 │ ├── .nosearch │ ├── 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 │ ├── bazel-mode │ │ ├── alias │ │ ├── ccb │ │ ├── cci │ │ ├── ccinc │ │ ├── ccl │ │ ├── ccp │ │ ├── cct │ │ ├── fg │ │ ├── genq │ │ ├── jbin │ │ ├── jimp │ │ ├── jlib │ │ ├── jrun │ │ ├── jtest │ │ ├── pybin │ │ ├── pylib │ │ ├── pyrun │ │ ├── pytest │ │ ├── shbin │ │ ├── shlib │ │ ├── shtest │ │ └── ws │ ├── bibtex-mode │ │ ├── .yas-setup.el │ │ ├── .yas-setup.elc │ │ ├── article │ │ ├── book │ │ ├── booklet │ │ ├── conference │ │ ├── inbook │ │ ├── incollection │ │ ├── inproceedings │ │ ├── manual │ │ ├── masterthesis │ │ ├── misc │ │ ├── phdthesis │ │ ├── proceedings │ │ ├── techreport │ │ └── unpublished │ ├── c++-mode │ │ ├── .yas-parents │ │ ├── .yas-setup.el │ │ ├── .yas-setup.elc │ │ ├── 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 │ │ ├── function_doxygen_doc │ │ ├── ifdef │ │ ├── inc │ │ ├── inc.1 │ │ ├── main │ │ ├── math │ │ ├── once │ │ └── typedef │ ├── c-mode │ │ ├── .yas-parents │ │ ├── assert │ │ ├── compile │ │ ├── define │ │ ├── fgets │ │ ├── fprintf │ │ ├── malloc │ │ ├── packed │ │ ├── printf │ │ ├── scanf │ │ ├── stdio │ │ ├── stdlib │ │ ├── string │ │ ├── strstr │ │ ├── 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 │ │ ├── read │ │ ├── readline │ │ ├── region │ │ ├── trycatch │ │ ├── using │ │ ├── using.1 │ │ ├── using.2 │ │ ├── write │ │ └── writeline │ ├── 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 │ ├── d-mode │ │ ├── class │ │ ├── debug │ │ ├── debugm │ │ ├── enum │ │ ├── fe │ │ ├── fer │ │ ├── if │ │ ├── ife │ │ ├── im │ │ ├── main │ │ ├── me │ │ ├── r │ │ ├── struct │ │ ├── tc │ │ ├── tcf │ │ ├── tf │ │ ├── unit │ │ ├── version │ │ └── while │ ├── dart-mode │ │ ├── aclass │ │ ├── class │ │ ├── ext │ │ ├── for │ │ ├── fori │ │ ├── func │ │ ├── funca │ │ ├── getset │ │ ├── getter │ │ ├── impl │ │ ├── import │ │ ├── main │ │ ├── part │ │ └── setter │ ├── 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 │ │ ├── method │ │ ├── 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 │ ├── hy-mode │ │ ├── class │ │ ├── cond │ │ ├── def │ │ ├── defm │ │ ├── do │ │ ├── for │ │ ├── if │ │ ├── ifn │ │ ├── imp │ │ ├── let │ │ ├── main │ │ ├── req │ │ ├── s │ │ ├── unless │ │ └── when │ ├── java-mode │ │ ├── apr_assert │ │ ├── assert │ │ ├── assertEquals │ │ ├── cls │ │ ├── constructor │ │ ├── define test method │ │ ├── doc │ │ ├── equals │ │ ├── file_class │ │ ├── for │ │ ├── fori │ │ ├── getter │ │ ├── if │ │ ├── ife │ │ ├── import │ │ ├── iterator │ │ ├── javadoc │ │ ├── lambda │ │ ├── main │ │ ├── main_class │ │ ├── method │ │ ├── new │ │ ├── override │ │ ├── param │ │ ├── printf │ │ ├── println │ │ ├── return │ │ ├── test │ │ ├── testClass │ │ ├── this │ │ ├── toString │ │ ├── try │ │ └── value │ ├── js-mode │ │ ├── al │ │ ├── anfn │ │ ├── bnd │ │ ├── class │ │ ├── cmmb │ │ ├── com │ │ ├── console │ │ │ ├── .yas-make-groups │ │ │ ├── cas │ │ │ ├── ccl │ │ │ ├── cco │ │ │ ├── cdi │ │ │ ├── cer │ │ │ ├── cge │ │ │ ├── cgr │ │ │ ├── cin │ │ │ ├── clg │ │ │ ├── clo │ │ │ ├── cte │ │ │ └── cwa │ │ ├── const │ │ ├── dar │ │ ├── debugger │ │ ├── dob │ │ ├── each │ │ ├── edf │ │ ├── el │ │ ├── enf │ │ ├── exa │ │ ├── exd │ │ ├── exp │ │ ├── fin │ │ ├── fof │ │ ├── for │ │ ├── fre │ │ ├── function │ │ ├── if │ │ ├── ima │ │ ├── imd │ │ ├── ime │ │ ├── imn │ │ ├── imp │ │ ├── init │ │ ├── let │ │ ├── met │ │ ├── metb │ │ ├── multiline-comment │ │ ├── nfn │ │ ├── param-comment │ │ ├── pge │ │ ├── prom │ │ ├── pse │ │ ├── return-comment │ │ ├── sti │ │ ├── sto │ │ ├── switch │ │ ├── try-catch │ │ ├── type-inline-comment │ │ └── type-multiline-comment │ ├── js2-mode │ │ └── .yas-parents │ ├── js3-mode │ │ └── .yas-parents │ ├── kotlin-mode │ │ ├── anonymous │ │ ├── closure │ │ ├── exfun │ │ ├── exval │ │ ├── exvar │ │ ├── fun │ │ ├── ifn │ │ ├── inn │ │ ├── interface │ │ ├── iter │ │ ├── main │ │ ├── psvm │ │ ├── serr │ │ ├── singleton │ │ ├── sout │ │ ├── soutv │ │ └── void │ ├── latex-mode │ │ ├── acronym │ │ ├── alertblock │ │ ├── alg │ │ ├── align │ │ ├── article │ │ ├── begin │ │ ├── bigcap │ │ ├── bigcup │ │ ├── binom │ │ ├── block │ │ ├── capgls │ │ ├── caption │ │ ├── cite │ │ ├── code │ │ ├── columns │ │ ├── description │ │ ├── documentclass │ │ ├── emph │ │ ├── enumerate │ │ ├── equation │ │ ├── figure │ │ ├── frac │ │ ├── frame │ │ ├── german-quotes │ │ ├── german-quotes-single │ │ ├── gls │ │ ├── glspl │ │ ├── if │ │ ├── includegraphics │ │ ├── int │ │ ├── item │ │ ├── itemize │ │ ├── label │ │ ├── labelcref │ │ ├── left-right │ │ ├── listing │ │ ├── moderncv │ │ ├── moderncv-cvcomputer │ │ ├── moderncv-cventry │ │ ├── moderncv-cvlanguage │ │ ├── moderncv-cvline │ │ ├── moderncv-cvlistdoubleitem │ │ ├── moderncv-cvlistitem │ │ ├── movie │ │ ├── newcommand │ │ ├── newglossaryentry │ │ ├── note │ │ ├── prod │ │ ├── python │ │ ├── question │ │ ├── section │ │ ├── subf │ │ ├── subfigure │ │ ├── subsec │ │ ├── sum │ │ ├── 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 │ │ ├── back-quote │ │ ├── code │ │ ├── emphasis │ │ ├── h1.1 │ │ ├── h1.2 │ │ ├── h2.1 │ │ ├── h2.2 │ │ ├── h3 │ │ ├── h4 │ │ ├── h5 │ │ ├── h6 │ │ ├── highlight │ │ ├── hr.1 │ │ ├── hr.2 │ │ ├── hyphen │ │ ├── img │ │ ├── link │ │ ├── ordered-list │ │ ├── plus │ │ ├── rimg │ │ ├── rlb │ │ ├── rlink │ │ ├── strong-emphasis │ │ └── utf8 │ ├── nasm-mode │ │ └── function_doxygen_doc │ ├── 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 │ │ ├── author │ │ ├── center │ │ ├── date │ │ ├── description │ │ ├── dot │ │ ├── elisp │ │ ├── emacs-lisp │ │ ├── email │ │ ├── embedded │ │ ├── entry │ │ ├── exampleblock │ │ ├── export │ │ ├── figure │ │ ├── html │ │ ├── image │ │ ├── img │ │ ├── include │ │ ├── ipython │ │ ├── keywords │ │ ├── language │ │ ├── link │ │ ├── matrix │ │ ├── options │ │ ├── python │ │ ├── quote │ │ ├── rv_background │ │ ├── rv_image_background │ │ ├── setup │ │ ├── style │ │ ├── table │ │ ├── title │ │ ├── uml │ │ ├── verse │ │ └── video │ ├── perl-mode │ │ ├── .yas-parents │ │ ├── eval │ │ ├── for │ │ ├── fore │ │ ├── if │ │ ├── ife │ │ ├── ifee │ │ ├── sub │ │ ├── unless │ │ ├── while │ │ ├── xfore │ │ ├── xif │ │ ├── xunless │ │ └── xwhile │ ├── php-mode │ │ ├── .yas-setup.el │ │ ├── .yas-setup.elc │ │ ├── __call │ │ ├── __callStatic │ │ ├── catch │ │ ├── cls │ │ ├── clse │ │ ├── clsi │ │ ├── const │ │ ├── define │ │ ├── doc-comment-multiline │ │ ├── doc-comment-oneline │ │ ├── else │ │ ├── elseif │ │ ├── fn │ │ ├── foreach │ │ ├── foreach_value │ │ ├── function │ │ ├── function-return-type │ │ ├── get │ │ ├── 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 │ │ ├── set │ │ ├── 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 │ │ ├── .yas-setup.elc │ │ ├── comment │ │ ├── commentblock │ │ ├── commentline │ │ ├── fixme │ │ ├── todo │ │ └── xxx │ ├── protobuf-mode │ │ ├── message │ │ └── syntax │ ├── python-mode │ │ ├── .yas-parents │ │ ├── .yas-setup.el │ │ ├── .yas-setup.elc │ │ ├── __contains__ │ │ ├── __enter__ │ │ ├── __exit__ │ │ ├── __getitem__ │ │ ├── __len__ │ │ ├── __new__ │ │ ├── __setitem__ │ │ ├── all │ │ ├── arg │ │ ├── arg_positional │ │ ├── assert │ │ ├── assertEqual │ │ ├── assertFalse │ │ ├── assertIn │ │ ├── assertNotEqual │ │ ├── assertNotIn │ │ ├── assertRaises │ │ ├── assertRaises.with │ │ ├── assertTrue │ │ ├── bang │ │ ├── celery_pdb │ │ ├── class_doxygen_doc │ │ ├── classmethod │ │ ├── cls │ │ ├── dataclass │ │ ├── dec │ │ ├── deftest │ │ ├── django_test_class │ │ ├── doc │ │ ├── doctest │ │ ├── embed │ │ ├── enum │ │ ├── eq │ │ ├── for │ │ ├── from │ │ ├── function │ │ ├── function_docstring │ │ ├── function_docstring_numpy │ │ ├── function_doxygen_doc │ │ ├── if │ │ ├── ife │ │ ├── ifmain │ │ ├── import │ │ ├── init │ │ ├── init_docstring │ │ ├── init_docstring_numpy │ │ ├── interact │ │ ├── ipdbdebug │ │ ├── iter │ │ ├── lambda │ │ ├── list │ │ ├── logger_name │ │ ├── logging │ │ ├── main │ │ ├── metaclass │ │ ├── method │ │ ├── method_docstring │ │ ├── method_docstring_numpy │ │ ├── not_impl │ │ ├── np │ │ ├── parse_args │ │ ├── parser │ │ ├── pass │ │ ├── pl │ │ ├── print │ │ ├── prop │ │ ├── reg │ │ ├── repr │ │ ├── return │ │ ├── scls │ │ ├── script │ │ ├── self │ │ ├── self_without_dot │ │ ├── selfassign │ │ ├── setdef │ │ ├── setup │ │ ├── size │ │ ├── static │ │ ├── str │ │ ├── super │ │ ├── test_class │ │ ├── test_file │ │ ├── trace │ │ ├── try │ │ ├── tryelse │ │ ├── unicode │ │ ├── unicode_literals │ │ ├── utf8 │ │ ├── while │ │ ├── with │ │ └── with_statement │ ├── racket-mode │ │ ├── case │ │ ├── caselambda │ │ ├── cond │ │ ├── define │ │ ├── do │ │ ├── for │ │ ├── if │ │ ├── lambda │ │ ├── let │ │ ├── match │ │ ├── unless │ │ └── when │ ├── rjsx-mode │ │ ├── .yas-make-groups │ │ ├── .yasparents │ │ ├── GraphQL │ │ │ ├── expgql │ │ │ └── graphql │ │ ├── Jest │ │ │ ├── desc │ │ │ ├── snrtest │ │ │ ├── sntest │ │ │ ├── srtest │ │ │ ├── stest │ │ │ ├── test │ │ │ └── tit │ │ ├── React-Native │ │ │ ├── imrn │ │ │ ├── rnc │ │ │ ├── rnce │ │ │ ├── rncs │ │ │ ├── rnpc │ │ │ ├── rnpce │ │ │ └── rnstyle │ │ ├── React │ │ │ ├── cdm │ │ │ ├── cdup │ │ │ ├── cp │ │ │ ├── cref │ │ │ ├── cs │ │ │ ├── cwm │ │ │ ├── cwr │ │ │ ├── cwun │ │ │ ├── cwup │ │ │ ├── est │ │ │ ├── fref │ │ │ ├── gdsfp │ │ │ ├── gsbu │ │ │ ├── hoc │ │ │ ├── impt │ │ │ ├── imr │ │ │ ├── imrc │ │ │ ├── imrcp │ │ │ ├── imrd │ │ │ ├── imrm │ │ │ ├── imrmp │ │ │ ├── imrpc │ │ │ ├── imrpcp │ │ │ ├── imrr │ │ │ ├── props │ │ │ ├── pta │ │ │ ├── ptany │ │ │ ├── ptao │ │ │ ├── ptaor │ │ │ ├── ptar │ │ │ ├── ptb │ │ │ ├── ptbr │ │ │ ├── pte │ │ │ ├── ptel │ │ │ ├── ptelr │ │ │ ├── pter │ │ │ ├── ptet │ │ │ ├── ptetr │ │ │ ├── ptf │ │ │ ├── ptfr │ │ │ ├── pti │ │ │ ├── ptir │ │ │ ├── ptn │ │ │ ├── ptnd │ │ │ ├── ptndr │ │ │ ├── ptnr │ │ │ ├── pto │ │ │ ├── ptoo │ │ │ ├── ptoor │ │ │ ├── ptor │ │ │ ├── pts │ │ │ ├── ptsh │ │ │ ├── ptshr │ │ │ ├── ptsr │ │ │ ├── ptypes │ │ │ ├── rafc │ │ │ ├── rafce │ │ │ ├── rafcp │ │ │ ├── rcc │ │ │ ├── rccp │ │ │ ├── rce │ │ │ ├── rcep │ │ │ ├── rconst │ │ │ ├── rcontext │ │ │ ├── ren │ │ │ ├── rfc │ │ │ ├── rfce │ │ │ ├── rfcp │ │ │ ├── rmc │ │ │ ├── rmcp │ │ │ ├── rpc │ │ │ ├── rpce │ │ │ ├── rpcp │ │ │ ├── scu │ │ │ ├── ssf │ │ │ ├── sst │ │ │ └── state │ │ └── Redux │ │ │ ├── hocredux │ │ │ ├── rcredux │ │ │ ├── redux │ │ │ ├── reduxmap │ │ │ ├── rncredux │ │ │ ├── rxaction │ │ │ ├── rxconst │ │ │ ├── rxreducer │ │ │ └── rxselect │ ├── 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 │ │ ├── for │ │ ├── forin │ │ ├── formula │ │ ├── if │ │ ├── ife │ │ ├── inc │ │ ├── init │ │ ├── inject │ │ ├── map │ │ ├── mm │ │ ├── mod │ │ ├── pry │ │ ├── r │ │ ├── rb │ │ ├── red │ │ ├── reject │ │ ├── rel │ │ ├── req │ │ ├── rpry │ │ ├── rw │ │ ├── select │ │ ├── str │ │ ├── test class │ │ ├── tim │ │ ├── to_ │ │ ├── tu │ │ ├── until │ │ ├── upt │ │ ├── w │ │ ├── when │ │ ├── while │ │ ├── y │ │ └── zip │ ├── rust-mode │ │ ├── allow │ │ ├── allow! │ │ ├── assert │ │ ├── asserteq │ │ ├── case │ │ ├── cfg │ │ ├── cfg= │ │ ├── closure │ │ ├── crate │ │ ├── deny │ │ ├── deny! │ │ ├── derive │ │ ├── display │ │ ├── drop │ │ ├── enum │ │ ├── eprint │ │ ├── eprintln │ │ ├── fn │ │ ├── fnr │ │ ├── fns │ │ ├── fnw │ │ ├── for │ │ ├── from │ │ ├── fromstr │ │ ├── if │ │ ├── ife │ │ ├── ifl │ │ ├── impl │ │ ├── implt │ │ ├── let │ │ ├── letm │ │ ├── lett │ │ ├── lettm │ │ ├── loop │ │ ├── macro │ │ ├── main │ │ ├── match │ │ ├── new │ │ ├── pfn │ │ ├── pfnr │ │ ├── pfns │ │ ├── pfnw │ │ ├── print │ │ ├── println │ │ ├── result │ │ ├── spawn │ │ ├── static │ │ ├── struct │ │ ├── test │ │ ├── testmod │ │ ├── trait │ │ ├── type │ │ ├── union │ │ ├── warn │ │ ├── warn! │ │ ├── while │ │ └── whilel │ ├── scala-mode │ │ ├── app │ │ ├── case │ │ ├── cc │ │ ├── co │ │ ├── cons │ │ ├── def │ │ ├── doc │ │ ├── docfun │ │ ├── for │ │ ├── if │ │ ├── ls │ │ ├── main │ │ ├── match │ │ ├── ob │ │ ├── throw │ │ ├── try │ │ └── valueclass │ ├── sh-mode │ │ ├── args │ │ ├── bang │ │ ├── for loop │ │ ├── function │ │ ├── if │ │ ├── ife │ │ ├── safe-bang │ │ ├── script-dir │ │ ├── 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 │ │ ├── .yas-make-groups │ │ ├── data │ │ ├── google │ │ │ ├── app_engine_resources │ │ │ │ └── google_app_engine_application │ │ │ ├── bigquery_resources │ │ │ │ ├── google_bigquery_dataset │ │ │ │ └── google_bigquery_table │ │ │ ├── bigtable_resources │ │ │ │ ├── google_bigtable_instance │ │ │ │ └── google_bigtable_table │ │ │ ├── binary_authorization_resources │ │ │ │ ├── google_binary_authorization_attestor │ │ │ │ └── google_binary_authorization_policy │ │ │ ├── cloud_build_resources │ │ │ │ └── google_cloudbuild_trigger │ │ │ ├── cloud_composer_resources │ │ │ │ └── google_composer_environment │ │ │ ├── cloud_functions_resources │ │ │ │ └── google_cloudfunctions_function │ │ │ ├── compute_engine_resources │ │ │ │ ├── google_compute_address │ │ │ │ ├── google_compute_attached_disk │ │ │ │ ├── google_compute_autoscaler │ │ │ │ ├── google_compute_backend_bucket │ │ │ │ ├── google_compute_backend_service │ │ │ │ ├── google_compute_disk │ │ │ │ ├── google_compute_firewall │ │ │ │ ├── google_compute_forwarding_rule │ │ │ │ ├── google_compute_global_address │ │ │ │ ├── google_compute_global_forwarding_rule │ │ │ │ ├── google_compute_health_check │ │ │ │ ├── google_compute_http_health_check │ │ │ │ ├── google_compute_https_health_check │ │ │ │ ├── google_compute_image │ │ │ │ ├── google_compute_instance │ │ │ │ ├── google_compute_instance_from_template │ │ │ │ ├── google_compute_instance_group │ │ │ │ ├── google_compute_instance_group_manager │ │ │ │ ├── google_compute_instance_template │ │ │ │ ├── google_compute_interconnect_attachment │ │ │ │ ├── google_compute_network │ │ │ │ ├── google_compute_network_peering │ │ │ │ ├── google_compute_project_metadata │ │ │ │ ├── google_compute_project_metadata_item │ │ │ │ ├── google_compute_region_autoscaler │ │ │ │ ├── google_compute_region_backend_service │ │ │ │ ├── google_compute_region_disk │ │ │ │ ├── google_compute_region_instance_group_manager │ │ │ │ ├── google_compute_route │ │ │ │ ├── google_compute_router │ │ │ │ ├── google_compute_router_interface │ │ │ │ ├── google_compute_router_nat │ │ │ │ ├── google_compute_router_peer │ │ │ │ ├── google_compute_security_policy │ │ │ │ ├── google_compute_shared_vpc_host_project │ │ │ │ ├── google_compute_shared_vpc_service_project │ │ │ │ ├── google_compute_snapshot │ │ │ │ ├── google_compute_ssl_certificate │ │ │ │ ├── google_compute_ssl_policy │ │ │ │ ├── google_compute_subnetwork │ │ │ │ ├── google_compute_subnetwork_iam_binding │ │ │ │ ├── google_compute_subnetwork_iam_member │ │ │ │ ├── google_compute_subnetwork_iam_policy │ │ │ │ ├── google_compute_target_http_proxy │ │ │ │ ├── google_compute_target_https_proxy │ │ │ │ ├── google_compute_target_pool │ │ │ │ ├── google_compute_target_ssl_proxy │ │ │ │ ├── google_compute_target_tcp_proxy │ │ │ │ ├── google_compute_url_map │ │ │ │ ├── google_compute_vpn_gateway │ │ │ │ └── google_compute_vpn_tunnel │ │ │ ├── container_analysis_resources │ │ │ │ └── google_container_analysis_note │ │ │ ├── container_engine_resources │ │ │ │ ├── google_container_cluster │ │ │ │ └── google_container_node_pool │ │ │ ├── data_sources │ │ │ │ ├── google_active_folder │ │ │ │ ├── google_billing_account │ │ │ │ ├── google_client_config │ │ │ │ ├── google_cloudfunctions_function_data │ │ │ │ ├── google_compute_address_data │ │ │ │ ├── google_compute_backend_service_data │ │ │ │ ├── google_compute_default_service_account │ │ │ │ ├── google_compute_forwarding_rule_data │ │ │ │ ├── google_compute_global_address_data │ │ │ │ ├── google_compute_image_data │ │ │ │ ├── google_compute_instance_data │ │ │ │ ├── google_compute_instance_group_data │ │ │ │ ├── google_compute_lb_ip_ranges │ │ │ │ ├── google_compute_network_data │ │ │ │ ├── google_compute_region_instance_group │ │ │ │ ├── google_compute_regions │ │ │ │ ├── google_compute_ssl_policy_data │ │ │ │ ├── google_compute_subnetwork_data │ │ │ │ ├── google_compute_vpn_gateway_data │ │ │ │ ├── google_compute_zones │ │ │ │ ├── google_container_cluster_data │ │ │ │ ├── google_container_engine_versions │ │ │ │ ├── google_container_registry_image │ │ │ │ ├── google_container_registry_repository │ │ │ │ ├── google_dns_managed_zone_data │ │ │ │ ├── google_folder_data │ │ │ │ ├── google_iam_policy │ │ │ │ ├── google_iam_role │ │ │ │ ├── google_kms_secret │ │ │ │ ├── google_netblock_ip_ranges │ │ │ │ ├── google_organization │ │ │ │ ├── google_project_data │ │ │ │ ├── google_project_services_data │ │ │ │ ├── google_service_account_data │ │ │ │ ├── google_service_account_key_data │ │ │ │ ├── google_storage_object_signed_url │ │ │ │ └── google_storage_project_service_account │ │ │ ├── dataflow_resources │ │ │ │ └── google_dataflow_job │ │ │ ├── dataproc_resources │ │ │ │ ├── google_dataproc_cluster │ │ │ │ └── google_dataproc_job │ │ │ ├── dns_resources │ │ │ │ ├── google_dns_managed_zone │ │ │ │ └── google_dns_record_set │ │ │ ├── endpoints_resources │ │ │ │ └── google_endpoints_service │ │ │ ├── filestore_resources │ │ │ │ └── google_filestore_instance │ │ │ ├── gcp_resources │ │ │ │ ├── google_billing_account_iam_binding │ │ │ │ ├── google_billing_account_iam_member │ │ │ │ ├── google_billing_account_iam_policy │ │ │ │ ├── google_folder │ │ │ │ ├── google_folder_iam_binding │ │ │ │ ├── google_folder_iam_member │ │ │ │ ├── google_folder_iam_policy │ │ │ │ ├── google_folder_organization_policy │ │ │ │ ├── google_organization_iam_binding │ │ │ │ ├── google_organization_iam_custom_role │ │ │ │ ├── google_organization_iam_member │ │ │ │ ├── google_organization_iam_policy │ │ │ │ ├── google_organization_policy │ │ │ │ ├── google_project │ │ │ │ ├── google_project_iam_binding │ │ │ │ ├── google_project_iam_custom_role │ │ │ │ ├── google_project_iam_member │ │ │ │ ├── google_project_iam_policy │ │ │ │ ├── google_project_organization_policy │ │ │ │ ├── google_project_service │ │ │ │ ├── google_project_services │ │ │ │ ├── google_project_usage_export_bucket │ │ │ │ ├── google_resource_manager_lien │ │ │ │ ├── google_service_account │ │ │ │ ├── google_service_account_iam_binding │ │ │ │ ├── google_service_account_iam_member │ │ │ │ ├── google_service_account_iam_policy │ │ │ │ └── google_service_account_key │ │ │ ├── iot_core │ │ │ │ └── google_cloudiot_registry │ │ │ ├── key_management_service_resources │ │ │ │ ├── google_kms_crypto_key │ │ │ │ ├── google_kms_crypto_key_iam_binding │ │ │ │ ├── google_kms_crypto_key_iam_member │ │ │ │ ├── google_kms_key_ring │ │ │ │ ├── google_kms_key_ring_iam_binding │ │ │ │ ├── google_kms_key_ring_iam_member │ │ │ │ └── google_kms_key_ring_iam_policy │ │ │ ├── pubsub_resources │ │ │ │ ├── google_pubsub_subscription │ │ │ │ ├── google_pubsub_subscription_iam_binding │ │ │ │ ├── google_pubsub_subscription_iam_member │ │ │ │ ├── google_pubsub_subscription_iam_policy │ │ │ │ ├── google_pubsub_topic │ │ │ │ ├── google_pubsub_topic_iam_binding │ │ │ │ ├── google_pubsub_topic_iam_member │ │ │ │ └── google_pubsub_topic_iam_policy │ │ │ ├── redis_resources │ │ │ │ └── google_redis_instance │ │ │ ├── runtimeconfig_resources │ │ │ │ ├── google_runtimeconfig_config │ │ │ │ └── google_runtimeconfig_variable │ │ │ ├── service_networking_resources │ │ │ │ └── google_service_networking_connection │ │ │ ├── source_repositories_resources │ │ │ │ └── google_sourcerepo_repository │ │ │ ├── spanner_resources │ │ │ │ ├── google_spanner_database │ │ │ │ ├── google_spanner_database_iam_binding │ │ │ │ ├── google_spanner_database_iam_member │ │ │ │ ├── google_spanner_database_iam_policy │ │ │ │ ├── google_spanner_instance │ │ │ │ ├── google_spanner_instance_iam_binding │ │ │ │ ├── google_spanner_instance_iam_member │ │ │ │ └── google_spanner_instance_iam_policy │ │ │ ├── sql_resources │ │ │ │ ├── google_sql_database │ │ │ │ ├── google_sql_database_instance │ │ │ │ ├── google_sql_ssl_cert │ │ │ │ └── google_sql_user │ │ │ ├── stackdriver_logging_resources │ │ │ │ ├── google_logging_billing_account_exclusion │ │ │ │ ├── google_logging_billing_account_sink │ │ │ │ ├── google_logging_folder_exclusion │ │ │ │ ├── google_logging_folder_sink │ │ │ │ ├── google_logging_organization_exclusion │ │ │ │ ├── google_logging_organization_sink │ │ │ │ ├── google_logging_project_exclusion │ │ │ │ └── google_logging_project_sink │ │ │ ├── stackdriver_monitoring_resources │ │ │ │ ├── google_monitoring_alert_policy │ │ │ │ ├── google_monitoring_group │ │ │ │ ├── google_monitoring_notification_channel │ │ │ │ └── google_monitoring_uptime_check_config │ │ │ └── storage_resources │ │ │ │ ├── google_storage_bucket │ │ │ │ ├── google_storage_bucket_acl │ │ │ │ ├── google_storage_bucket_iam_binding │ │ │ │ ├── google_storage_bucket_iam_member │ │ │ │ ├── google_storage_bucket_iam_policy │ │ │ │ ├── google_storage_bucket_object │ │ │ │ ├── google_storage_default_object_access_control │ │ │ │ ├── google_storage_default_object_acl │ │ │ │ ├── google_storage_notification │ │ │ │ ├── google_storage_object_access_control │ │ │ │ └── google_storage_object_acl │ │ ├── locals │ │ ├── module │ │ ├── output │ │ ├── provider │ │ ├── resource │ │ ├── terraform │ │ └── 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 │ ├── typescript-mode │ │ └── .yas-parents │ ├── udev-mode │ │ ├── ENV │ │ ├── GOTO │ │ ├── KERNEL │ │ ├── add │ │ ├── env$ │ │ └── run │ ├── web-mode │ │ └── .yas-parents │ └── yaml-mode │ │ ├── entry │ │ ├── list │ │ └── section │ ├── yasnippet-snippets-autoloads.el │ ├── yasnippet-snippets-pkg.el │ ├── yasnippet-snippets.el │ └── yasnippet-snippets.elc ├── eshell ├── history └── lastdir ├── init.el ├── settings.el ├── settings.org ├── snapshot ├── snap(1).jpg ├── snap(10).jpg ├── snap(12).jpg ├── snap(14).jpg ├── snap(15).jpg ├── snap(2).jpg ├── snap(3).jpg ├── snap(4).jpg ├── snap(5).jpg ├── snap(6).jpg ├── snap(7).jpg ├── snap(8).jpg ├── snap(9).jpg └── snap.jpg ├── transient └── history.el └── url └── cookies /anaconda-mode/0.1.13/jedi-0.13.1-py2.7.egg/jedi/common/__init__.py: -------------------------------------------------------------------------------- 1 | from jedi.common.context import BaseContextSet, BaseContext 2 | -------------------------------------------------------------------------------- /anaconda-mode/0.1.13/jedi-0.13.1-py2.7.egg/jedi/evaluate/compiled/fake/datetime.pym: -------------------------------------------------------------------------------- 1 | class datetime(): 2 | @staticmethod 3 | def now(): 4 | return datetime() 5 | -------------------------------------------------------------------------------- /anaconda-mode/0.1.13/jedi-0.13.1-py2.7.egg/jedi/evaluate/compiled/fake/posix.pym: -------------------------------------------------------------------------------- 1 | def getcwd(): 2 | return '' 3 | 4 | def getcwdu(): 5 | return '' 6 | -------------------------------------------------------------------------------- /anaconda-mode/0.1.13/parso-0.3.1-py2.7.egg/EGG-INFO/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.29.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /anaconda-mode/0.1.13/parso-0.3.1-py2.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | parso 2 | -------------------------------------------------------------------------------- /anaconda-mode/0.1.13/service_factory-0.1.5-py2.7.egg/EGG-INFO/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.29.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | 6 | -------------------------------------------------------------------------------- /anaconda-mode/0.1.13/service_factory-0.1.5-py2.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | service_factory 2 | -------------------------------------------------------------------------------- /anaconda-mode/0.1.13/service_factory-0.1.5-py2.7.egg/service_factory/providers/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import ( 2 | absolute_import, unicode_literals, division, print_function, 3 | ) 4 | -------------------------------------------------------------------------------- /auto-save-list/.saves-6007-ShritamaAndMe~: -------------------------------------------------------------------------------- 1 | /home/aritra/.emacs.d/elpa/org-plus-contrib-20181230/org-loaddefs.el 2 | /home/aritra/.emacs.d/elpa/org-plus-contrib-20181230/#org-loaddefs.el# 3 | -------------------------------------------------------------------------------- /elpa/anaconda-mode-readme.txt: -------------------------------------------------------------------------------- 1 | See the README for more details. 2 | -------------------------------------------------------------------------------- /elpa/archives/gnu/archive-contents.signed: -------------------------------------------------------------------------------- 1 | Good signature from 474F05837FBDEF9B GNU ELPA Signing Agent (2014) (trust undefined) created at 2019-09-06T14:35:05+0530 using DSA -------------------------------------------------------------------------------- /elpa/company-anaconda-readme.txt: -------------------------------------------------------------------------------- 1 | See the README for more details. 2 | -------------------------------------------------------------------------------- /elpa/company-quickhelp-readme.txt: -------------------------------------------------------------------------------- 1 | When idling on a completion candidate the documentation for the 2 | candidate will pop up after `company-quickhelp-idle-delay' seconds. 3 | -------------------------------------------------------------------------------- /elpa/csv-mode-1.7.signed: -------------------------------------------------------------------------------- 1 | Good signature from 474F05837FBDEF9B GNU ELPA Signing Agent (trust undefined) created at 2017-12-06T03:40:01+0530 using DSA -------------------------------------------------------------------------------- /elpa/exotica-theme-readme.txt: -------------------------------------------------------------------------------- 1 | Bright colors over dark background with option to enable italics 2 | Inspired by Molokai-theme, Dracula-theme 3 | -------------------------------------------------------------------------------- /elpa/gnupg/pubring.kbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analyzeninvest/configuring-emacs-from-scratch/be5373f3439310206f4805fec4bccd5eb2b27fab/elpa/gnupg/pubring.kbx -------------------------------------------------------------------------------- /elpa/gnupg/pubring.kbx~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analyzeninvest/configuring-emacs-from-scratch/be5373f3439310206f4805fec4bccd5eb2b27fab/elpa/gnupg/pubring.kbx~ -------------------------------------------------------------------------------- /elpa/gnupg/tofu.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analyzeninvest/configuring-emacs-from-scratch/be5373f3439310206f4805fec4bccd5eb2b27fab/elpa/gnupg/tofu.db -------------------------------------------------------------------------------- /elpa/gnupg/trustdb.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analyzeninvest/configuring-emacs-from-scratch/be5373f3439310206f4805fec4bccd5eb2b27fab/elpa/gnupg/trustdb.gpg -------------------------------------------------------------------------------- /elpa/ido-describe-bindings-readme.txt: -------------------------------------------------------------------------------- 1 | Yet another `describe-bindings' with `ido'. 2 | See the README.md for more details. 3 | -------------------------------------------------------------------------------- /elpa/one-themes-readme.txt: -------------------------------------------------------------------------------- 1 | A port of the Vim/Atom One colorscheme to Emacs. 2 | 3 | Credits 4 | 5 | This theme is heavily inspired by the Vim port of One created by 6 | Ramzi Akremi. 7 | -------------------------------------------------------------------------------- /elpa/typing-game-readme.txt: -------------------------------------------------------------------------------- 1 | typing-game is a simple typing game in Emacs. You can customize 2 | which characters to practice, how fast the characters failing and 3 | something else. 4 | -------------------------------------------------------------------------------- /elpa/vscode-icon-readme.txt: -------------------------------------------------------------------------------- 1 | This package provides a utility function that returns vscode style icons. 2 | The entry point is `vscode-icon-for-file'. 3 | -------------------------------------------------------------------------------- /elpa/wacspace-readme.txt: -------------------------------------------------------------------------------- 1 | Provides context-aware workspace management for Emacs. See 2 | http://github.com/shosti/wacspace.el for full documentation. 3 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/.nosearch: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/antlr-mode/property: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: property 3 | # key: prop 4 | # -- 5 | 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/apples-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | prog-mode -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/apples-mode/comment: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: comment 3 | # -- 4 | (* 5 | $0 6 | *) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/apples-mode/considering: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: considering 3 | # -- 4 | considering $1 5 | $0 6 | end considering -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/apples-mode/display-dialog: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: display-dialog 3 | # -- 4 | display dialog "$0" -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/apples-mode/if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if 3 | # -- 4 | if $1 then 5 | $2 6 | else 7 | $0 8 | end if -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/apples-mode/ignoring: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: ignoring 3 | # -- 4 | ignoring $1 5 | $0 6 | end ignoring -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/apples-mode/on: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: on 3 | # -- 4 | on $1 5 | $0 6 | end $1 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/apples-mode/repeat: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: repeat 3 | # -- 4 | repeat $1 5 | $0 6 | end repeat -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/apples-mode/repeat-until: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: repeat-until 3 | # -- 4 | repeat until $1 5 | $0 6 | end repeat -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/apples-mode/repeat-while: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: repeat-while 3 | # -- 4 | repeat while $1 5 | $0 6 | end repeat -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/apples-mode/repeat-with: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: repeat-with 3 | # -- 4 | repeat with $1 5 | $0 6 | end repeat -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/apples-mode/tell-application: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: tell-application 3 | # -- 4 | tell application "$1" 5 | $0 6 | end tell -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/apples-mode/try: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: try 3 | # -- 4 | try 5 | $1 6 | on error $2 7 | $0 8 | end try -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/apples-mode/with-transaction: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: with-transaction 3 | # -- 4 | with transaction 5 | $0 6 | end transaction -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/applescript-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | prog-mode -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/applescript-mode/comment: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: comment 3 | # -- 4 | (* 5 | $0 6 | *) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/applescript-mode/considering: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: considering 3 | # -- 4 | considering $1 5 | $0 6 | end considering -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/applescript-mode/display-dialog: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: display-dialog 3 | # -- 4 | display dialog "$0" -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/applescript-mode/if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if 3 | # -- 4 | if $1 then 5 | $2 6 | else 7 | $0 8 | end if -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/applescript-mode/ignoring: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: ignoring 3 | # -- 4 | ignoring $1 5 | $0 6 | end ignoring -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/applescript-mode/on: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: on 3 | # -- 4 | on $1 5 | $0 6 | end $1 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/applescript-mode/repeat: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: repeat 3 | # -- 4 | repeat $1 5 | $0 6 | end repeat -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/applescript-mode/repeat-until: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: repeat-until 3 | # -- 4 | repeat until $1 5 | $0 6 | end repeat -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/applescript-mode/repeat-while: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: repeat-while 3 | # -- 4 | repeat while $1 5 | $0 6 | end repeat -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/applescript-mode/repeat-with: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: repeat-with 3 | # -- 4 | repeat with $1 5 | $0 6 | end repeat -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/applescript-mode/tell-application: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: tell-application 3 | # -- 4 | tell application "$1" 5 | $0 6 | end tell -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/applescript-mode/try: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: try 3 | # -- 4 | try 5 | $1 6 | on error $2 7 | $0 8 | end try -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/applescript-mode/with-transaction: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: with-transaction 3 | # -- 4 | with transaction 5 | $0 6 | end transaction -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/bazel-mode/alias: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: alias 3 | # key: alias 4 | # -- 5 | alias( 6 | name = "$0", 7 | actual = "$1" 8 | ) 9 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/bazel-mode/cci: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: cc_import 3 | # key: cci 4 | # -- 5 | cc_import( 6 | name = "$0", 7 | hdrs = ["$1"] 8 | ) 9 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/bazel-mode/fg: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: filegroup 3 | # key: fg 4 | # -- 5 | filegroup( 6 | name = "$0", 7 | srcs = "$1" 8 | ) 9 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/bazel-mode/ws: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: workspace 3 | # key: ws 4 | # -- 5 | workspace(name = "$0") 6 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | cc-mode 2 | c-lang-common 3 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/assert: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: assert 3 | # key: ass 4 | # -- 5 | assert($0); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/beginend: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: v.begin(), v.end() 3 | # key: beginend 4 | # -- 5 | ${1:v}.begin(), $1.end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/cerr: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: cerr 3 | # key: err 4 | # -- 5 | cerr << $0; 6 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/cin: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: cin 3 | # key: cin 4 | # -- 5 | cin >> $0; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/cstd: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: cstd 3 | # key: cstd 4 | # -- 5 | #include -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/d+=: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: d+= 3 | # key: d+= 4 | # -- 5 | ${1:Name}& operator+=(${2:const $1 &}); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/d_operator[]: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: d_operator[] 3 | # key: [ 4 | # -- 5 | ${1:Name}& operator[](${2:int index}); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/delete: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: delete 3 | # key: dl 4 | # -- 5 | delete ${1:pointer}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/delete[]: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: delete[] 3 | # key: dla 4 | # -- 5 | delete[] ${1:arr}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/doc: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: doc 3 | # key: doc 4 | # -- 5 | /** 6 | * $0 7 | */ -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/dynamic_casting: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: dynamic_casting 3 | # key: cast 4 | # -- 5 | check_and_cast<${1:Name} *>(${2:msg}); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/enum: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: enum 3 | # key: enum 4 | # -- 5 | enum ${1:NAME}{ 6 | $0 7 | }; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/fil: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: fill 3 | # key: fil 4 | # -- 5 | std::fill(std::begin(${1:container}), std::end($1), $2); 6 | $0 7 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/fln: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: fill_n 3 | # key: fln 4 | # -- 5 | std::fill_n(std::begin(${1:container}), $2, $3); 6 | $0 7 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/friend: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: friend 3 | # key: fr 4 | # -- 5 | friend $0; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/fun_declaration: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: fun_declaration 3 | # key: f 4 | # -- 5 | ${1:type} ${2:name}(${3:args})${4: const}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/gtest: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: gtest 3 | # key: gtest 4 | # group: testing 5 | # -- 6 | #include -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/inline: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: inline 3 | # key: il 4 | # -- 5 | inline $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/io: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: io 3 | # key: io 4 | # -- 5 | #include -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/ita: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: iota 3 | # key: ita 4 | # -- 5 | std::iota(std::begin(${1:container}), std::end($1), $2); 6 | $0 7 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/iterator: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: iterator 3 | # key: iter 4 | # -- 5 | ${1:std::}${2:vector}::iterator ${3:iter}; 6 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/map: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: map 3 | # key: map 4 | # -- 5 | std::map<${1:type1}$0> ${2:var}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/module: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: module 3 | # key: mod 4 | # -- 5 | class ${1:Name} : public cSimpleModule 6 | { 7 | $0 8 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/ns: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: namespace ... 3 | # key: ns 4 | # -- 5 | namespace -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/ostream: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: ostream 3 | # key: os 4 | # -- 5 | #include -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/rvr: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: reverse 3 | # key: rvr 4 | # -- 5 | std::reverse(std::begin(${1:container}), std::end($1)); 6 | $0 7 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/srt: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: sort 3 | # key: srt 4 | # -- 5 | std::sort(std::begin(${1:container}), std::end($1)); 6 | $0 7 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/sstream: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: 3 | # key: ss 4 | # -- 5 | #include -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/std: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: std 3 | # key: std 4 | # -- 5 | using namespace std; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/std_colon: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: std:: 3 | # key: st 4 | # -- 5 | std::$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/sti: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: cin 3 | # key: sti 4 | # -- 5 | std::cin >> 6 | $0 7 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/sto: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: cout 3 | # key: sto 4 | # -- 5 | std::cout << 6 | $0 7 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/str: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: str 3 | # key: str 4 | # -- 5 | #include -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/stv: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: vector 3 | # key: stv 4 | # -- 5 | std::vector<$2> $3 6 | $0 7 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/this: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: this 3 | # key: th 4 | # -- 5 | this -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/throw: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: throw 3 | # key: throw 4 | # -- 5 | throw ${1:MyError}($0); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/using: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: using namespace ... 3 | # key: using 4 | # -- 5 | using namespace ${std}; 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c++-mode/vector: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: vector 3 | # key: vec 4 | # -- 5 | std::vector<${1:Class}> ${2:var}${3:(${4:10}, $1($5))}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-lang-common/fopen: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: FILE *fp = fopen(..., ...); 3 | # key: fopen 4 | # -- 5 | FILE *${fp} = fopen(${"file"}, "${r}"); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-lang-common/ifdef: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: ifdef 3 | # key: ifdef 4 | # -- 5 | #ifdef ${1:MACRO} 6 | 7 | $0 8 | 9 | #endif // $1 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-lang-common/inc: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: #include <...> 3 | # key : incs 4 | # -- 5 | #include <$1> -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-lang-common/inc.1: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: #include "..." 3 | # key : incl 4 | # -- 5 | #include "$1" -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-lang-common/math: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: math 3 | # key: math 4 | # -- 5 | #include 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-lang-common/typedef: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: typedef 3 | # key: typedef 4 | # -- 5 | typedef ${1:type} ${2:alias}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | cc-mode 2 | c-lang-common 3 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-mode/assert: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: assert 3 | # key: ass 4 | # -- 5 | #include 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-mode/define: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: define 3 | # key: d 4 | # -- 5 | #define $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-mode/fgets: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: fgets 3 | # key: fgets 4 | # -- 5 | fgets(${1:variable}, ${2:size}, ${3:stdin}); 6 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-mode/malloc: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: malloc 3 | # key: malloc 4 | # -- 5 | malloc(sizeof($1)${2: * ${3:3}}); 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-mode/packed: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: packed 3 | # key: packed 4 | # -- 5 | __attribute__((__packed__))$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-mode/printf: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: printf 3 | # key: pr 4 | # -- 5 | printf("${1:format string}"${2: ,a0,a1}); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-mode/scanf: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: scanf 3 | # key: scanf 4 | # -- 5 | scanf("${1:format string}", ${2:&variable}); 6 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-mode/stdio: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: stdio 3 | # key: io 4 | # -- 5 | #include -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-mode/stdlib: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: stdlib 3 | # key: std 4 | # -- 5 | #include -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-mode/string: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: string 3 | # key: str 4 | # -- 5 | #include -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-mode/strstr: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: strstr 3 | # key: strstr 4 | # -- 5 | strstr(${1:string}, ${2:string}); 6 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-mode/union: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: union 3 | # key: union 4 | # -- 5 | typedef union { 6 | $0 7 | } ${1:name}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/c-mode/unistd: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: unistd 3 | # key: uni 4 | # -- 5 | #include -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cc-mode/do: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: do { ... } while (...) 3 | # key: do 4 | # -- 5 | do 6 | { 7 | $0 8 | } while (${1:condition}); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cc-mode/else: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: else { ... } 3 | # key: else 4 | # -- 5 | else${1: { 6 | $0 7 | }} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cc-mode/for: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: for 3 | # key: for 4 | # -- 5 | for (${1:i = 0}; ${2:i < N}; ${3:++i}) { 6 | $0 7 | } 8 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cc-mode/if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if (...) { ... } 3 | # key: if 4 | # -- 5 | if (${1:condition}) ${2:{ 6 | $0 7 | }} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cc-mode/struct: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: struct ... { ... } 3 | # key: struct 4 | # -- 5 | struct ${1:name} 6 | { 7 | $0 8 | }; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cc-mode/ternary: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: ternary 3 | # key: ? 4 | # -- 5 | (${1:cond}) ? ${2:then} : ${3:else}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cc-mode/while: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: while 3 | # key: while 4 | # -- 5 | while (${1:condition}) { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/chef-mode/action: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: action 3 | # key: action 4 | # -- 5 | action: ${0:nothing} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/chef-mode/env: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: env 3 | # key: env 4 | # -- 5 | env "${1:RAILS_ENV}" do 6 | value "${2:production}" 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/chef-mode/ignore_failure: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: ignore_failure 3 | # key: ignore_failure 4 | # -- 5 | ignore_failure ${0:true} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/chef-mode/inc: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: inc 3 | # key: inc 4 | # -- 5 | include_recipe "${1:example::recipe}" -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/chef-mode/link: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: link 3 | # key: link 4 | # -- 5 | link "${1:/tmp/passwd}" do 6 | to "${2:/etc/passwd}" 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/chef-mode/log: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: log 3 | # key: log 4 | # -- 5 | log ("${1:your string to log}") { level :${2:debug} } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/chef-mode/not_if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: not_if 3 | # key: not_if 4 | # -- 5 | not_if "${1}" -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/chef-mode/notifies: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: notifies 3 | # key: notifies 4 | # -- 5 | notifies :${1:restart}, "${2:service}[${3:name}]" -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/chef-mode/only_if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: only_if 3 | # key: only_if 4 | # -- 5 | only_if "${1}" -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/chef-mode/provider: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: provider 3 | # key: provider 4 | # -- 5 | provider Chef::Provider::${0:Package::Rubygems} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/chef-mode/retries: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: retries 3 | # key: retries 4 | # -- 5 | retries ${1:1} 6 | retry_delay ${2:2} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cider-repl-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | clojure-mode 2 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | prog-mode 2 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/bp: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: bp 3 | # key: bp 4 | # -- 5 | (swank.core/break) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/def: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: def 3 | # key: def 4 | # -- 5 | (def $0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/defm: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: defmacro 3 | # key: defm 4 | # -- 5 | (defmacro $1 6 | "$2"$> 7 | [$3]$> 8 | $0)$> -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/defn: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: defn 3 | # key: defn 4 | # -- 5 | (defn $1 6 | "$2"$> 7 | [$3]$> 8 | $0)$> -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/deft: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: deftype 3 | # key: deft 4 | # -- 5 | (deftype 6 | ^{"$1"}$> 7 | $2$> 8 | [$3]$> 9 | $0)$> -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/doseq: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: doseq 3 | # key: doseq 4 | # -- 5 | (doseq [$1 $2] 6 | $3)$> 7 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/fn: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: fn 3 | # key: fn 4 | # -- 5 | (fn [$1] 6 | $0)$> -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/for: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: for 3 | # key: for 4 | # -- 5 | (for [$1 $2] 6 | $3)$> -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # -*- coding: utf-8 -*- 3 | # name: if 4 | # key: if 5 | # -- 6 | (if $1 7 | $2$> 8 | $3)$> 9 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/ifl: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # -*- coding: utf-8 -*- 3 | # name: ifl 4 | # key: ifl 5 | # -- 6 | (if-let [$1 $2] 7 | $3)$> 8 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/is: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # -*- coding: utf-8 -*- 3 | # name: is 4 | # key: is 5 | # -- 6 | (is (= $1 $2)) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/let: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # -*- coding: utf-8 -*- 3 | # name: let 4 | # key: let 5 | # -- 6 | (let [$1 $2]$> 7 | $3)$> 8 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/map: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # -*- coding: utf-8 -*- 3 | # name: map 4 | # key: map 5 | # -- 6 | (map $1 $2) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/map.lambda: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # -*- coding: utf-8 -*- 3 | # name: map lambda 4 | # key: map 5 | # -- 6 | (map #($1) $2)$> -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/mdoc: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # -*- coding: utf-8 -*- 3 | # name: mdoc 4 | # key: mdoc 5 | # -- 6 | ^{:doc "$1"} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/opts: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # key: opts 3 | # name: opts 4 | # -- 5 | {:keys [$1]$> 6 | :or {$2}$> 7 | :as $3}$> -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/pr: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # -*- coding: utf-8 -*- 3 | # name: pr 4 | # key: pr 5 | # -- 6 | (prn $1) 7 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/print: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # -*- coding: utf-8 -*- 3 | # name: print 4 | # key: print 5 | # -- 6 | (println $1) 7 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/reduce: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # -*- coding: utf-8 -*- 3 | # name: reduce 4 | # key: reduce 5 | # -- 6 | (reduce ${1:(fn [p n] $0)} $2) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/test: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: test 3 | # key: test 4 | # -- 5 | (deftest $1 6 | (is (= $2))$> 7 | $0)$> -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/try: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: try 3 | # key: try 4 | # -- 5 | (try 6 | $1$> 7 | (catch ${2:Exception} e$> 8 | $3$>))$> -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/clojure-mode/when: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # -*- coding: utf-8 -*- 3 | # name: when 4 | # key: when 5 | # -- 6 | (when $1 7 | $2)$> 8 | $0$> -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cmake-mode/function: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: function 3 | # key: fun 4 | # -- 5 | function(${1:name}) 6 | $2 7 | endfunction($1)$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cmake-mode/if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if 3 | # key: if 4 | # -- 5 | if(${1:cond}) 6 | $2 7 | endif($1)$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cmake-mode/include: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: include 3 | # key: inc 4 | # -- 5 | include($0) 6 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cmake-mode/macro: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: macro 3 | # key: macro 4 | # -- 5 | macro(${1:name}${2: args}) 6 | $2 7 | endmacro($1)$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cmake-mode/message: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: message 3 | # key: msg 4 | # -- 5 | message(${1:STATUS }"$0") -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cmake-mode/option: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: option 3 | # key: opt 4 | # -- 5 | option(${1:OPT} "${2:docstring}" ${3:value}) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cmake-mode/project: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: project 3 | # key: proj 4 | # -- 5 | project($0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cmake-mode/set: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: set 3 | # key: set 4 | # -- 5 | set(${1:var} ${2:value}) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/conf-unix-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | text-mode -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cperl-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | perl-mode 2 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cpp-omnet-mode/EV: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: EV 3 | # key: ev 4 | # -- 5 | EV << "${1:string}"$0; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cpp-omnet-mode/emit_signal: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: emit_signal 3 | # key: emit 4 | # -- 5 | emit(${1:signal_id}, ${2:long}); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cpp-omnet-mode/intuniform: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: intuniform 3 | # key: intuni 4 | # -- 5 | intuniform(${1:0}, ${2:1}) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cpp-omnet-mode/math: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: math 3 | # key: math 4 | # -- 5 | #include -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cpp-omnet-mode/nan: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: nan 3 | # key: nan 4 | # -- 5 | isnan(${1:x}) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cpp-omnet-mode/omnet: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: omnet 3 | # key: omnet 4 | # -- 5 | #include -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cpp-omnet-mode/parameter_omnetpp: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: parameter_omnetpp 3 | # key: par 4 | # -- 5 | ${1:var} = par("${2:par}"); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cpp-omnet-mode/scheduleAt: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: scheduleAt 3 | # key: sched 4 | # -- 5 | scheduleAt(simTime()+${1:1.0}, ${2:event}); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/cpp-omnet-mode/uniform: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: uniform 3 | # key: uni 4 | # uniform distribution 5 | # -- 6 | uniform(${1:0}, ${2:1}) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/csharp-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | cc-mode 2 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/csharp-mode/main: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: main 3 | # key: main 4 | # -- 5 | static void Main(string[] args) 6 | { 7 | $0 8 | } 9 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/css-mode/bg: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: background-color: ... 3 | # -- 4 | background-color: #${1:DDD}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/css-mode/bg.1: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: background-image: ... 3 | # -- 4 | background-image: url($1); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/css-mode/bor: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: border size style color 3 | # -- 4 | border: ${1:1px} ${2:solid} #${3:999}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/css-mode/cl: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor : rejeep 3 | # name: clear: ... 4 | # -- 5 | clear: $1; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/css-mode/disp.block: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor : rejeep 3 | # name: display: block 4 | # -- 5 | display: block; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/css-mode/disp.none: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor : rejeep 3 | # name: display: none 4 | # -- 5 | display: none; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/css-mode/ff: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor : rejeep 3 | # name: font-family: ... 4 | # -- 5 | font-family: $1; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/css-mode/fs: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor : rejeep 3 | # name: font-size: ... 4 | # -- 5 | font-size: ${12px}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/css-mode/mar.left: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor : rejeep 3 | # name: margin-left: ... 4 | # -- 5 | margin-left: $1; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/css-mode/mar.mar: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor : rejeep 3 | # name: margin: ... 4 | # -- 5 | margin: $1; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/css-mode/mar.top: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor : rejeep 3 | # name: margin-top: ... 4 | # -- 5 | margin-top: $1; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/css-mode/pad.pad: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor : rejeep 3 | # name: padding: ... 4 | # -- 5 | padding: $1; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/css-mode/pad.top: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor : rejeep 3 | # name: padding-top: ... 4 | # -- 5 | padding-top: $1; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/d-mode/debug: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: debug 3 | # key: debug 4 | # -- 5 | debug 6 | { 7 | $0 8 | } 9 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/d-mode/debugm: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: debugm 3 | # key: debugm 4 | # -- 5 | debugm (${1:module}) 6 | { 7 | $0 8 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/d-mode/enum: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: enum … { … } 3 | # key: enum 4 | # -- 5 | enum ${1:name} 6 | { 7 | $0 8 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/d-mode/fe: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: foreach (e ; …) { … } 3 | # key: fe 4 | # -- 5 | foreach (${1:e} ; $2) 6 | { 7 | $0 8 | } 9 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/d-mode/if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if … 3 | # key: if 4 | # -- 5 | if ($1) 6 | { 7 | $2 8 | } 9 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/d-mode/im: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: import … 3 | # key: import 4 | # -- 5 | import ${1:module}; 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/d-mode/r: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: return … 3 | # key: return 4 | # -- 5 | return $0; 6 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/d-mode/unit: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: unittest { … } 3 | # key: unittest 4 | # -- 5 | @("${1:test name}") unittest 6 | { 7 | $0 8 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/d-mode/while: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: while (…) { … } 3 | # key: while 4 | # -- 5 | while (${1:condition}) 6 | { 7 | $0 8 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/dart-mode/aclass: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: aclass 3 | # key: acls 4 | # -- 5 | abstract class ${1:Name} { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/dart-mode/class: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: class 3 | # key: cls 4 | # -- 5 | class ${1:Name} { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/dart-mode/ext: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: ext 3 | # key: ext 4 | # -- 5 | extends ${1:Name}$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/dart-mode/func: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: fun 3 | # key: fun 4 | # -- 5 | ${1:Type} ${2:Name}($3) { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/dart-mode/funca: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: funca 3 | # key: afun 4 | # -- 5 | Future<${1:Type}> ${2:Name}($3) async { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/dart-mode/getter: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: getter 3 | # key: get 4 | # -- 5 | ${1:Type} _${2:Name}; 6 | $1 get $2 => _$2;$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/dart-mode/impl: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: impl 3 | # key: impl 4 | # -- 5 | implements ${1:Name}$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/dart-mode/import: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: import 3 | # key: imp 4 | # -- 5 | import '${1:Library}';$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/dart-mode/main: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: main 3 | # key: main 4 | # -- 5 | main(List args) { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/dart-mode/part: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: part 3 | # key: part 4 | # -- 5 | part of ${1:Part}$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/dart-mode/setter: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: setter 3 | # key: set 4 | # -- 5 | ${1:Type} _${2:Name}; 6 | set $2($1 $2) => _$2 = $2; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | prog-mode 2 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/after: -------------------------------------------------------------------------------- 1 | ## -*- mode: snippet -*- 2 | # name: after 3 | # key: after 4 | # -- 5 | after ${1:500} -> 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/call: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: call 3 | # key: call 4 | # -- 5 | GenServer.call(${1:__MODULE__}, $0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/case: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: case 3 | # key: case 4 | # -- 5 | case $1 do 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/cast: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: cast 3 | # key: cast 4 | # -- 5 | GenServer.cast(${1:__MODULE__}, $0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/cond: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: cond 3 | # key: cond 4 | # -- 5 | cond do 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/def: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: def 3 | # key: def 4 | # -- 5 | def ${1:function}${2:(${3:args})} do 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/defmacro: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: defmacro 3 | # key: defmacro 4 | # -- 5 | defmacro $1 do 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/defmacrop: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: defmacrop 3 | # key: defmacrop 4 | # -- 5 | defmacrop $1 do 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/defmodule: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: defmodule 3 | # key: defmodule 4 | # -- 5 | defmodule $1 do 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/defp: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: defp 3 | # key: defp 4 | # -- 5 | defp $1 do 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/do: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: do 3 | # key: do 4 | # -- 5 | do 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/doc: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: doc 3 | # key: doc 4 | # -- 5 | @doc """ 6 | $0 7 | """ -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/fn: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: fn 3 | # key: fn 4 | # -- 5 | fn ${1:x} -> $1$0 end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/for: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: for 3 | # key: for 4 | # -- 5 | for ${2:x} <- ${1:enum} do 6 | $2$0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/hcall: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: hcall 3 | # key: hcall 4 | # -- 5 | def handle_call($1, _from, ${2:state}) do 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/hcast: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: hcast 3 | # key: hcast 4 | # -- 5 | def handle_cast($1, ${2:state}) do 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/hinfo: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: hinfo 3 | # key: hinfo 4 | # -- 5 | def handle_info($1, ${2:state}) do 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if 3 | # key: if 4 | # -- 5 | if ${1:condition} do 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/ife: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if-else 3 | # key: ife 4 | # -- 5 | if ${1:condition} do 6 | $2 7 | else 8 | $3 9 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/io: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: io 3 | # key: io 4 | # -- 5 | IO.puts("$1")$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/iop: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: iop 3 | # key: iop 4 | # -- 5 | IO.puts("$1 #{inspect $1}")$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/mdoc: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: moduledoc 3 | # key: mdoc 4 | # -- 5 | @moduledoc """ 6 | $0 7 | """ -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/pry: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: pry 3 | # key: pry 4 | # group: debug 5 | # -- 6 | require IEx; IEx.pry -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/receive: -------------------------------------------------------------------------------- 1 | ## -*- mode: snippet -*- 2 | # name: receive 3 | # key: rcv 4 | # -- 5 | receive do 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/test: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: test 3 | # key: test 4 | # -- 5 | test "$1" do 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/elixir-mode/unless: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: unless 3 | # key: unless 4 | # -- 5 | unless ${1:condition} do 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/emacs-lisp-mode/and: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Xah Lee (XahLee.org) 3 | # name: and 4 | # key: and 5 | # key: a 6 | # -- 7 | (and $0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/emacs-lisp-mode/const: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: defconst 3 | # key: const 4 | # -- 5 | (defconst ${1:name} ${2:value}${3: "${4:docstring}"})$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/emacs-lisp-mode/defvar: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: defvar 3 | # key: defvar 4 | # -- 5 | (defvar ${1:symbol} ${2:initvalue} "${3:docstring}") -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/emacs-lisp-mode/fboundp: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Xah Lee (XahLee.org) 3 | # name: fboundp 4 | # key: fboundp 5 | # -- 6 | (fboundp '$0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/emacs-lisp-mode/kbd: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Xah Lee (XahLee.org) 3 | # name: kbd 4 | # key: kbd 5 | # -- 6 | (kbd "$0") -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/emacs-lisp-mode/not: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Xah Lee (XahLee.org) 3 | # name: not 4 | # key: not 5 | # key: n 6 | # -- 7 | (not $0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/emacs-lisp-mode/or: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Xah Lee (XahLee.org) 3 | # name: or 4 | # key: or 5 | # key: o 6 | # -- 7 | (or $0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/emacs-lisp-mode/setq: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Xah Lee (XahLee.org) 3 | # name: setq 4 | # key: setq 5 | # key: s 6 | # -- 7 | (setq $0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/emacs-lisp-mode/should: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Raghav Kumar Gautam 3 | # name: should 4 | # key: sh 5 | # -- 6 | (should $0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/emacs-lisp-mode/string=: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Xah Lee (XahLee.org) 3 | # name: string= 4 | # key: string= 5 | # -- 6 | (string= $0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/emacs-lisp-mode/when: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Xah Lee (XahLee.org) 3 | # name: when 4 | # key: w 5 | # -- 6 | (when $0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/emacs-lisp-mode/word_regexp: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: word_regexp 3 | # key: < 4 | # -- 5 | "\\_<${1:word}\\_>" -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/enh-ruby-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | ruby-mode 2 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ensime-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | scala-mode 2 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/erc-mode/blist: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: blist 3 | # key: b 4 | # -- 5 | blist 6 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/erc-mode/help: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: help 3 | # key: h 4 | # -- 5 | help $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/erlang-mode/after: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: after ... -> 3 | # -- 4 | after 5 | $1 -> $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/erlang-mode/begin: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: begin ... end 3 | # -- 4 | begin 5 | $0 6 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/erlang-mode/beh: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: -behaviour(...). 3 | # -- 4 | -behaviour(${1:gen_server}). 5 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/erlang-mode/case: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: case ... of ... end 3 | # -- 4 | case $1 of 5 | $0 6 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/erlang-mode/compile: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: -compile(...). 3 | # -- 4 | -compile([${1:export_all}]). 5 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/erlang-mode/def: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: -define(...,...). 3 | # -- 4 | -define($1,$2). 5 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/erlang-mode/fun: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: fun (...) -> ... end 3 | # -- 4 | fun ($1) -> $0 end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/erlang-mode/if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if ... -> ... ; true -> ... end 3 | # -- 4 | if 5 | $1 -> $2; 6 | true -> $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/erlang-mode/ifdef: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: -ifdef(...). ... -endif. 3 | # -- 4 | -ifdef($1). 5 | $0 6 | -endif. -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/erlang-mode/ifndef: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: -ifndef(...). ... -endif. 3 | # -- 4 | -ifndef($1). 5 | $0 6 | -endif. -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/erlang-mode/inc: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: -include("..."). 3 | # -- 4 | -include("$1"). 5 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/erlang-mode/inc.lib: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: -include_lib("..."). 3 | # -- 4 | -include_lib("$1"). 5 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/erlang-mode/rcv: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: receive ... -> ... end 3 | # -- 4 | receive 5 | $1 -> $0 6 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/erlang-mode/rcv.after: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: receive after ... -> ... end 3 | # -- 4 | receive 5 | after 6 | $1 -> $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/erlang-mode/rec: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: -record(...,{...}). 3 | # -- 4 | -record($1,{$2}). 5 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/erlang-mode/try: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: try ... of ... catch after end 3 | # -- 4 | try $1 of 5 | $0 6 | catch 7 | after 8 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/erlang-mode/undef: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: -undef(...). 3 | # -- 4 | -undef($1). 5 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/f90-mode/bd: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Li Zhu 3 | # name: block data 4 | # -- 5 | block data $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/f90-mode/c: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Li Zhu 3 | # name: continue 4 | # -- 5 | continue $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/f90-mode/ch: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Li Zhu 3 | # name: character 4 | # -- 5 | character $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/f90-mode/cx: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Li Zhu 3 | # name: complex 4 | # -- 5 | complex $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/f90-mode/dc: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Li Zhu 3 | # name: double complex 4 | # -- 5 | double complex $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/f90-mode/dp: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Li Zhu 3 | # name: double precision 4 | # -- 5 | double precision $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/f90-mode/in: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Li Zhu 3 | # name: implicit none 4 | # -- 5 | implicit none -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/f90-mode/inc: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Li Zhu 3 | # name: include 4 | # -- 5 | include $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/f90-mode/intr: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Li Zhu 3 | # name: intrinsic 4 | # -- 5 | intrinsic $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/f90-mode/l: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Li Zhu 3 | # name: logical 4 | # -- 5 | logical $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/f90-mode/pa: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Li Zhu 3 | # name: parameter 4 | # -- 5 | parameter $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/f90-mode/re: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Li Zhu 3 | # name: read (*,*) 4 | # -- 5 | read (${1:*},${2:*}) $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/f90-mode/wr: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor: Li Zhu 3 | # name: write (*,*) 4 | # -- 5 | write (${1:*},${2:*}) $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/button: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: button 3 | # key: bu 4 | # -- 5 | button("$1")$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/case: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: case 3 | # key: ca 4 | # -- 5 | case { 6 | $1 7 | }; 8 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/checkbox: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: checkbox 3 | # key: ch 4 | # -- 5 | checkbox("$1")$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/component: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: component 3 | # key: co 4 | # -- 5 | component("$1.dsp")$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/declare: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: declare 3 | # key: de 4 | # -- 5 | declare ${1:key} "${2:value}"; 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/declareauthor: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: declare author 3 | # key: da 4 | # -- 5 | declare author "$1"; 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/declarename: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: declare name 3 | # key: dn 4 | # -- 5 | declare name "$1"; 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/declareversion: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: declare version 3 | # key: dv 4 | # -- 5 | declare version "${1:0.1}"; 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/hbargraph: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: hbargraph 3 | # key: hb 4 | # -- 5 | hbargraph("${1:name}", ${2:min}, ${3:max})$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/hgroup: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: hgroup 3 | # key: hg 4 | # -- 5 | hgroup("${1:name}", ${2:expression})$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/import: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: import 3 | # key: im 4 | # -- 5 | import("$1.lib");$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/par: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: par 3 | # key: pa 4 | # -- 5 | par(${1:i}, ${2:Nr}, ${3:expression})$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/process: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: process 3 | # key: pr 4 | # -- 5 | process = $1; 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/processx: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: processx 3 | # key: px 4 | # -- 5 | process(${1:x}) = ${2:expression}($1); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/prod: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: prod 3 | # key: mu 4 | # -- 5 | prod(${1:i}, ${2:Nr}, ${3:expression})$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/rule: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: rule 3 | # key: ru 4 | # -- 5 | (${1:pattern}) => ${2:expression}; 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/seq: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: seq 3 | # key: se 4 | # -- 5 | seq(${1:i}, ${2:Nr}, ${3:expression})$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/sum: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: sum 3 | # key: su 4 | # -- 5 | sum(${1:i}, ${2:Nr}, ${3:expression})$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/tgroup: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: tgroup 3 | # key: tg 4 | # -- 5 | tgroup("${1:name}", ${2:expression})$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/vbargraph: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: vbargraph 3 | # key: vb 4 | # -- 5 | vbargraph("${1:name}", ${2:min}, ${3:max})$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/vgroup: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: vgroup 3 | # key: vg 4 | # -- 5 | vgroup("${1:name}", ${2:expression})$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/faust-mode/with: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: with 3 | # key: wi 4 | # -- 5 | with { 6 | ${1:expression} 7 | }; 8 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/git-commit-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | text-mode -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/git-commit-mode/fixes: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: fixes 3 | # key: fix 4 | # -- 5 | fixes #${1:100} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/git-commit-mode/references: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: references 3 | # key: ref 4 | # -- 5 | references #${1:100} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/const: -------------------------------------------------------------------------------- 1 | # -*- mode:snippet -*- 2 | # name: const 3 | # key: const 4 | # -- 5 | const ${1:name type} = ${2:val} 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/const(: -------------------------------------------------------------------------------- 1 | # -*- mode:snippet -*- 2 | # name: const (...) 3 | # key: const 4 | # -- 5 | const ( 6 | ${1:name type} = ${2:val} 7 | ) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/dd: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: debug fmt.Printf 3 | # key: dd 4 | # -- 5 | fmt.Printf("%+v\n", $1) // output for debug 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/default: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: default 3 | # key: def 4 | # -- 5 | default: 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/else: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: else 3 | # key: el 4 | # -- 5 | else { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/error: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: error 3 | # key: err 4 | # contributor : @atotto 5 | # -- 6 | if err != nil { 7 | $0 8 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/for: -------------------------------------------------------------------------------- 1 | # -*- mode:snippet -*- 2 | # name: for 3 | # key: for 4 | # -- 5 | for $1 { 6 | $0 7 | } 8 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/func: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: func 3 | # key: func 4 | # -- 5 | // $1 ${4:...} 6 | func ${1:name}(${2:args}) $3 { 7 | $0 8 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if 3 | # key: if 4 | # -- 5 | if $1 { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/iferr: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if error 3 | # key: iferr 4 | # -- 5 | if err != $1 { 6 | $0 7 | } 8 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/import: -------------------------------------------------------------------------------- 1 | # -*- mode:snippet -*- 2 | # name: import 3 | # key: imp 4 | # -- 5 | import "$1" 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/import(: -------------------------------------------------------------------------------- 1 | # -*- mode:snippet -*- 2 | # name: import (...) 3 | # key: imp 4 | # -- 5 | import ( 6 | "$0" 7 | ) 8 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/lambda: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: lambda func 3 | # key: lambda 4 | # -- 5 | func(${1:args}) $2 { 6 | $0 7 | }() -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/map: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: map 3 | # key: map 4 | # -- 5 | map[${1:type}]${2:type} 6 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/printf: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: fmt.Printf(...) 3 | # key: pr 4 | # -- 5 | fmt.Printf("${1:%s}\n", ${2:args}) 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/select: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: select 3 | # key: sel 4 | # -- 5 | select { 6 | case $1: 7 | $0 8 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/switch: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: switch 3 | # key: sw 4 | # -- 5 | switch $1 { 6 | case $2: 7 | $0 8 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/type: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: type 3 | # key: type 4 | # -- 5 | type $1 $2 { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/var: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: var 3 | # key: var 4 | # -- 5 | var ${1:name} ${2:type} 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/go-mode/var(: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: var (...) 3 | # key: var 4 | # -- 5 | var ( 6 | ${1:name} ${2:type} 7 | ) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/groovy-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | java-mode -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/groovy-mode/class: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: class 3 | # key: class 4 | # -- 5 | class ${1:Class} { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/groovy-mode/def: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: def 3 | # key: def 4 | # -- 5 | def ${1:method}(${2:args}) { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/groovy-mode/dict: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: dict 3 | # key: dict 4 | # -- 5 | ${1:dict} = [${2:key} : ${3:value}$0] -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/groovy-mode/for: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: for 3 | # key: for 4 | # -- 5 | for (${1:var} in ${2:iter}) { 6 | $0 7 | } 8 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/groovy-mode/println: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: println 3 | # key: pr 4 | # -- 5 | println ${1:"string"} 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/groovy-mode/times: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: times 3 | # key: times 4 | # -- 5 | ${1:10}.times { 6 | $0 7 | } . -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/haskell-mode/data: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: data 3 | # key: da 4 | # -- 5 | data ${1:Type} = $2 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/haskell-mode/doc: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: doc 3 | # key: d 4 | # -- 5 | {- 6 | $0 7 | -} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/haskell-mode/module: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: module 3 | # key: mod 4 | # -- 5 | module ${1:Module} where 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/haskell-mode/pragma: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: pragma 3 | # key: prag 4 | # -- 5 | {-# ${1:PRAGMA} #-} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/haskell-mode/print: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: print 3 | # key: pr 4 | # -- 5 | print $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/html-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | nxml-mode 2 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/html-mode/doctype.html5: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: Doctype HTML 5 3 | # group : meta 4 | # -- 5 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/hy-mode/do: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name:do 3 | # key:do 4 | # binding: direct-keybinding 5 | # -- 6 | (do $0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/hy-mode/for: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: for 3 | # key: for 4 | # binding: direct-keybinding 5 | # -- 6 | (for [${1:item items}] $0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/hy-mode/let: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: let 3 | # key: let 4 | # binding: direct-keybinding 5 | # -- 6 | (let [${1:arg}] 7 | $0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/hy-mode/main: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name:main 3 | # key:main 4 | # binding: direct-keybinding 5 | # -- 6 | (defmain [&rest ${1:args}] 7 | $0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/hy-mode/req: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name:req 3 | # key:req 4 | # binding: direct-keybinding 5 | # -- 6 | (req [${1:module-name} [${2:exposing}]]) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/hy-mode/s: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: s 3 | # key: s 4 | # binding: direct-keybinding 5 | # -- 6 | (setv $0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/hy-mode/unless: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name:unless 3 | # key:unless 4 | # binding: direct-keybinding 5 | # -- 6 | (unless ${1:condition} 7 | $0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/hy-mode/when: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name:when 3 | # key:when 4 | # binding: direct-keybinding 5 | # -- 6 | (when ${1:condition} 7 | $0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/assert: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet; require-final-newline: nil -*- 2 | # name: assert 3 | # key: as 4 | # -- 5 | assert ${1:expression}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/cls: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: cls 3 | # key: cls 4 | # -- 5 | class ${1:Class} { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/doc: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: doc 3 | # key: /* 4 | # -- 5 | /** 6 | * ${1:documentation} 7 | */ -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/equals: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: equals 3 | # key: eq 4 | # -- 5 | public boolean equals(${1:Class} other) { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/for: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: for 3 | # key: for 4 | # -- 5 | for (${1:int i = 0}; ${2:i < N}; ${3:i++}) { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/fori: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: fori 3 | # key: fori 4 | # -- 5 | for (${1:Object el} : ${2:iterator}) { 6 | $0 7 | } 8 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if 3 | # key: if 4 | # -- 5 | if (${1:condition}) { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/import: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: import 3 | # key: imp 4 | # -- 5 | import ${1:System.}; 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/javadoc: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: javadoc 3 | # key: doc 4 | # -- 5 | /** 6 | * $0 7 | * 8 | */ -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/lambda: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet; require-final-newline: nil -*- 2 | # name: lambda 3 | # key: \ 4 | # -- 5 | (${1:args}) -> ${2:expression}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/main: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: main 3 | # key: main 4 | # -- 5 | public static void main(String[] args) { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/new: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: new 3 | # key: new 4 | # -- 5 | ${1:Type} ${2:obj} = new ${3:Constr}(${4:args}); 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/override: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet; require-final-newline: nil -*- 2 | # name: override 3 | # key: o 4 | # -- 5 | @Override 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/param: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: param 3 | # key: param 4 | # -- 5 | @param ${1:paramater} $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/printf: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: printf 3 | # key: printf 4 | # -- 5 | System.out.printf("$0%n"); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/println: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: println 3 | # key: pr 4 | # -- 5 | System.out.println("${1:text}"); 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/return: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet; require-final-newline: nil -*- 2 | # name: return 3 | # key: r 4 | # -- 5 | return $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/test: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: test 3 | # key: test 4 | # -- 5 | @Test 6 | public void test_${1:Case}() { 7 | $0 8 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/this: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet; require-final-newline: nil -*- 2 | # name: this 3 | # key: . 4 | # -- 5 | this.$1 = $1; 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/toString: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: toString 3 | # key: toStr 4 | # -- 5 | public String toString() { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/java-mode/value: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet; require-final-newline: nil -*- 2 | # name: value 3 | # key: val 4 | # -- 5 | final ${1:int} ${2:n} = $0; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/js-mode/al: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: alert 3 | # -- 4 | alert($0); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/js-mode/com: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: comment (/* ... */) 3 | # -- 4 | /* 5 | * $0 6 | */ -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/js-mode/debugger: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet; require-final-newline: nil -*- 2 | # name: debugger 3 | # key: dbg 4 | # -- 5 | debugger; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/js-mode/el: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: else 3 | # -- 4 | else { 5 | $0 6 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/js-mode/if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if 3 | # -- 4 | if (${1:condition}) { 5 | $0 6 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/js-mode/let: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet; require-final-newline: nil -*- 2 | # name: let declaration 3 | # key: let 4 | # -- 5 | let ${1:name} = ${2:initial}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/js-mode/met: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet; require-final-newline: nil -*- 2 | # name: method 3 | # key: met 4 | # -- 5 | ${1:name}(${2:arg}) { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/js-mode/multiline-comment: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: multiline-comment 3 | # key: /** 4 | # -- 5 | /** 6 | * $0 7 | */ -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/js2-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | js-mode 2 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/js3-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | js-mode 2 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/kotlin-mode/anonymous: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: Anonymous class 3 | # key: object 4 | # -- 5 | object: $1 { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/kotlin-mode/closure: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: Closure (function without name) 3 | # key: closure 4 | # -- 5 | { $1 -> $0 } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/kotlin-mode/exfun: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: Extension function 3 | # key: exfun 4 | # -- 5 | fun $1.$2($3): $4 { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/kotlin-mode/fun: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: Function with no parameters 3 | # key: fun0 4 | # -- 5 | fun $1($2): $3 { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/kotlin-mode/ifn: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: Inserts 'if null' expression 3 | # key: ifn 4 | # -- 5 | if ($1 == null) { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/kotlin-mode/inn: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: Inserts 'if not null' expression 3 | # key: inn 4 | # -- 5 | if ($1 != null) { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/kotlin-mode/interface: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: Interface 3 | # key: interface 4 | # -- 5 | interface $1 { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/kotlin-mode/main: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: main() function 3 | # key: main 4 | # -- 5 | fun main(args: Array) { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/kotlin-mode/psvm: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: psvm 3 | # key: psvm 4 | # -- 5 | fun main(args: Array) { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/kotlin-mode/serr: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: Prints a string to System.err 3 | # key: serr 4 | # -- 5 | System.err.println($0) 6 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/kotlin-mode/singleton: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: Singleton 3 | # key: singleton 4 | # -- 5 | object $1 { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/kotlin-mode/sout: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: Prints a string to System.out 3 | # key: sout 4 | # -- 5 | println($0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/kotlin-mode/soutv: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: Prints a value to System.out 3 | # key: soutv 4 | # -- 5 | println("$0 = ${$0}") -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/kotlin-mode/void: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: Function returning nothing 3 | # key: void 4 | # -- 5 | fun $1($2) { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/acronym: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: acronym 3 | # key: ac 4 | # -- 5 | \newacronym{${1:label}}{${1:$(upcase yas-text)}}{${2:Name}} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/alg: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: alg 3 | # key: alg 4 | # -- 5 | \begin{algorithmic} 6 | $0 7 | \end{algorithmic} 8 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/align: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: align 3 | # key: ali 4 | # -- 5 | \begin{align} 6 | \label{$0} 7 | $1 8 | \end{align} 9 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/begin: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: begin 3 | # key: begin 4 | # -- 5 | \begin{${1:environment}} 6 | $0 7 | \end{$1} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/bigcap: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: bigcap 3 | # key: bigcap 4 | # -- 5 | \bigcap_{$1}^{$2}$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/bigcup: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: bigcup 3 | # key: bigcup 4 | # -- 5 | \bigcup_{$1}^{$2}$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/binom: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: binom 3 | # key: binom 4 | # -- 5 | \binom{${1:n}}{${2:k}}$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/block: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: block 3 | # key: bl 4 | # -- 5 | \begin{block}{$1} 6 | $0 7 | \end{block} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/capgls: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: Gls 3 | # key: G 4 | # -- 5 | \Gls{${1:label}} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/caption: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: caption 3 | # key: ca 4 | # -- 5 | \caption{$0} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/cite: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: cite 3 | # key: c 4 | # -- 5 | \cite{$1} $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/code: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: code 3 | # key: code 4 | # -- 5 | \begin{lstlisting} 6 | $0 7 | \end{lstlisting} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/documentclass: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: documentclass 3 | # key: doc 4 | # -- 5 | \documentclass[${1:options}]{$2} 6 | $0 7 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/emph: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: emph 3 | # key: e 4 | # -- 5 | \emph{$1}$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/enumerate: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: enumerate 3 | # key: enum 4 | # -- 5 | \begin{enumerate} 6 | \item $0 7 | \end{enumerate} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/frac: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: frac 3 | # key: frac 4 | # -- 5 | \frac{${1:numerator}}{${2:denominator}}$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/german-quotes: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: German quotes 3 | # key: gqq 4 | # -- 5 | \glqq{}$0\grqq{} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/german-quotes-single: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: German single quotes 3 | # key: gq 4 | # -- 5 | \glq{}$0\grq{} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/gls: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: gls 3 | # key: g 4 | # -- 5 | \gls{${1:label}} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/glspl: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: glspl 3 | # key: gp 4 | # -- 5 | \glspl{${1:label}} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if 3 | # key: if 4 | # -- 5 | \IF {$${1:cond}$} 6 | $0 7 | \ELSE 8 | \ENDIF 9 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/includegraphics: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: includegraphics 3 | # key: ig 4 | # -- 5 | \includegraphics${1:[$2]}{$0} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/int: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: int 3 | # key: int 4 | # -- 5 | \int_{$1}^{$2}$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/item: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: item 3 | # key: - 4 | # -- 5 | \item $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/itemize: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: itemize 3 | # key: it 4 | # -- 5 | \begin{itemize} 6 | \item $0 7 | \end{itemize} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/label: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: label 3 | # key: lab 4 | # -- 5 | \label{$0} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/labelcref: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: labelcref 3 | # key: lref 4 | # -- 5 | \labelcref{$0} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/left-right: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: left and right 3 | # key: lr 4 | # -- 5 | \left( $0 \right) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/moderncv-cvlistitem: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: moderncv-cvlistitem 3 | # key: cvitem 4 | # -- 5 | \cvlistitem{${1:item}} 6 | $0 7 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/newcommand: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: newcommand 3 | # key: cmd 4 | # -- 5 | \newcommand{\\${1:name}}${2:[${3:0}]}{$0} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/note: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: note 3 | # key: no 4 | # -- 5 | \note{$0} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/prod: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: prod 3 | # key: prod 4 | # -- 5 | \prod_{$1}^{$2}$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/question: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: question 3 | # key: q 4 | # -- 5 | \question{$0} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/section: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: section 3 | # key: sec 4 | # -- 5 | \section{${1:name}} 6 | \label{sec:${2:label}} 7 | 8 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/subsec: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: subsec 3 | # key: sub 4 | # -- 5 | \subsection{${1:name}} 6 | \label{subsec:${2:label}} 7 | 8 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/sum: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: sum 3 | # key: sum 4 | # -- 5 | \sum_{$1}^{$2}$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/textbf: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: textbf 3 | # key: b 4 | # -- 5 | \textbf{$1}$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/latex-mode/usepackage: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: usepackage 3 | # key: pkg 4 | # -- 5 | \usepackage{$0} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/lisp-interaction-mode/defun: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: defun 3 | # key: defun 4 | # -- 5 | (defun ${1:fun} (${2:args}) 6 | $0 7 | ) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/lisp-mode/comment: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: comment 3 | # key: /* 4 | # -- 5 | #|${1:type the comment here}|# 6 | $0 7 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/lisp-mode/for: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: do 3 | # key: for 4 | # -- 5 | (dotimes (${1:var} ${2:count-form}) 6 | ${3:body}) 7 | $0 8 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/lisp-mode/format: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: format 3 | # key: print 4 | # -- 5 | (format t "~& $0 ~%") 6 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/lisp-mode/if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if 3 | # key: if 4 | # -- 5 | (when (${1:condition}) 6 | (${2:then-do-this})) 7 | $0 8 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/lisp-mode/typecast: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: typecast 3 | # name: cast 4 | # -- 5 | (coerce ${1:object} ${2:type}) 6 | $0 7 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/lua-mode/do: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: do 3 | # key: do 4 | # -- 5 | do 6 | $0 7 | end 8 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/lua-mode/fun: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: fun 3 | # key: fun 4 | # -- 5 | function ($1) 6 | $0 7 | end 8 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/lua-mode/if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if 3 | # key: if 4 | # -- 5 | if $1 then 6 | $0 7 | end 8 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/lua-mode/ife: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if else 3 | # key: ife 4 | # -- 5 | if $1 then 6 | $2 7 | else 8 | $0 9 | end 10 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/lua-mode/repeat: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: repeat util 3 | # key: repeat 4 | # -- 5 | repeat 6 | $0 7 | until $1 8 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/lua-mode/require: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: require 3 | # key: require 4 | # -- 5 | local $1 = require "$2" 6 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/lua-mode/while: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: while 3 | # key: while 4 | # -- 5 | while $1 do 6 | $0 7 | end 8 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/m4-mode/def: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: def 3 | # key: def 4 | # -- 5 | define(\`${1:macro}',\`${2:subst}'). 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/makefile-automake-mode/noinst_HEADERS: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: noinst_HEADERS 3 | # key: noinst 4 | # -- 5 | noinst_HEADERS = $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/makefile-bsdmake-mode/PHONY: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: PHONY 3 | # key: phony 4 | # -- 5 | .PHONY: $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/makefile-bsdmake-mode/echo: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: echo 3 | # key: echo 4 | # -- 5 | @echo ${1:"message to output"} 6 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/makefile-bsdmake-mode/if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if 3 | # key: if 4 | # -- 5 | @if [ ${1:cond} ] 6 | then $0 7 | fi 8 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/makefile-bsdmake-mode/var: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: var 3 | # key: $ 4 | # -- 5 | $(${1:VAR})$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/makefile-gmake-mode/patsubst: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: patsubst 3 | # key: ps 4 | # -- 5 | $(patsubst ${1:from},${2:to},${3:src}) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/makefile-gmake-mode/phony: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: phony 3 | # key: ph 4 | # -- 5 | .PHONY = $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/makefile-gmake-mode/shell: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet; require-final-newline: nil -*- 2 | # name: shell 3 | # key: sh 4 | # -- 5 | \$(shell ${1:command})$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/makefile-gmake-mode/wildcard: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: wildcard 3 | # key: wl 4 | # -- 5 | $(wildcard $0) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/makefile-mode/all: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: all 3 | # key: all 4 | # -- 5 | all: 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/malabar-mode/variable: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet; require-final-newline: nil -*- 2 | # name: variable 3 | # key: var 4 | # -- 5 | ${1:int} ${2:n} = $0; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/markdown-mode/code: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: Code block 3 | # key: code 4 | # -- 5 | \`\`\`$1 6 | $0 7 | \`\`\` 8 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ned-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | prog-mode -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ned-mode/for: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: for 3 | # key: for 4 | # -- 5 | for ${1:i}=${2:0}..${3:sizeof(port)-1} { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ned-mode/import: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: import 3 | # key: imp 4 | # -- 5 | import ned.${1:Package}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ned-mode/submodules: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: submodules 3 | # key: sub 4 | # -- 5 | submodules: 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nesc-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | text-mode cc-mode -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nesc-mode/TOSSIM: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: TOSSIM 3 | # key: tossim 4 | # -- 5 | #ifndef TOSSIM 6 | $0 7 | #endif -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nesc-mode/command: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: command 3 | # key: command 4 | # -- 5 | command ${1:void} ${2:naMe}($3) { 6 | 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nesc-mode/dbg: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: dbg 3 | # key: dbg 4 | # -- 5 | dbg("${1:Module}", "${2:message}"${3:, ${4:var list}}); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nesc-mode/event: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: event 3 | # key: event 4 | # -- 5 | event ${1:void} ${2:On.Event}($3) { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nesc-mode/ifdef: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: ifdef 3 | # key: ifdef 4 | # -- 5 | #ifdef ${1:Macro} 6 | $2 7 | ${3:#else} 8 | $4 9 | #endif -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nesc-mode/interface: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: interface 3 | # key: int 4 | # -- 5 | interface ${1:Interface} { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nesc-mode/nx: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: nx 3 | # key: nx 4 | # -- 5 | nx_uint${1:8}_t ${2:var}; 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nesc-mode/provides: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: provides 3 | # key: provides 4 | # -- 5 | provides interface ${1:Interface}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nesc-mode/sim: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: sim 3 | # key: sim 4 | # -- 5 | #ifdef TOSSIM 6 | $0 7 | #endif -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nesc-mode/uint8_t: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: uint8_t 3 | # key: u8 4 | # -- 5 | uint8_t ${1:var}; 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nesc-mode/uses: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: uses 3 | # key: uses 4 | # -- 5 | uses interface ${1:Interface}${2: as ${3:alias}}; 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nix-mode/buildPhase: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: buildPhase 3 | # key: bp 4 | # -- 5 | buildPhase= '' 6 | $1 7 | ''; 8 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nix-mode/checkPhase: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: checkPhase 3 | # key: ch 4 | # -- 5 | checkPhase= '' 6 | $1 7 | ''; 8 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nix-mode/configurePhase: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: configurePhase 3 | # key: cp 4 | # -- 5 | configurePhase= '' 6 | $1 7 | ''; 8 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nix-mode/distPhase: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: distPhase 3 | # key: dp 4 | # -- 5 | distPhase= '' 6 | $1 7 | ''; 8 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nix-mode/fixPhase: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: fixPhase 3 | # key: fp 4 | # -- 5 | fixPhase= '' 6 | $1 7 | ''; 8 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nix-mode/installCheckPhase: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: installCheckPhase 3 | # key: ic 4 | # -- 5 | installCheckPhase= '' 6 | $1 7 | ''; 8 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nix-mode/patchPhase: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: patchPhase 3 | # key: pp 4 | # -- 5 | patchPhase = '' 6 | $1 7 | ''; 8 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nix-mode/unpackPhase: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: unpackPhase 3 | # key: up 4 | # -- 5 | unpackPhase = '' 6 | $1 7 | ''; 8 | $0 9 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nsis-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | prog-mode -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nsis-mode/define: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: define 3 | # key: def 4 | # -- 5 | !define ${1:CONSTANT} ${2:value} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nsis-mode/function: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: function 3 | # key: fun 4 | # -- 5 | Function ${1:Name} 6 | $0 7 | FunctionEnd -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nsis-mode/include: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: include 3 | # key: inc 4 | # -- 5 | !include "${Library.nsh}" -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nsis-mode/insert_macro: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: insert_macro 3 | # key: im 4 | # -- 5 | !insertmacro ${1:Name} ${2:"args"} 6 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nsis-mode/instdir: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: instdir 3 | # key: $ 4 | # -- 5 | $INSTDIR -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nsis-mode/macro: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: macro 3 | # key: macro 4 | # -- 5 | !macro ${1:Name} UN 6 | $0 7 | 8 | !macroend -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nsis-mode/message: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: message 3 | # key: msg 4 | # -- 5 | MessageBox MB_OK "${1:hello}" -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nsis-mode/outdir: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: outdir 3 | # key: $ 4 | # -- 5 | $OUTDIR -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nsis-mode/outfile: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: outfile 3 | # key: out 4 | # -- 5 | outFile "${1:setup}.exe" -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nsis-mode/section: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: section 3 | # key: sec 4 | # -- 5 | Section "${1:Program}" 6 | $0 7 | SectionEnd -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/nxml-mode/br: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # contributor : Anders Bach Nielsen 3 | # name:
4 | # -- 5 |
-------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/octave-mode/for: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: for 3 | # key: for 4 | # -- 5 | for ${1:var} = ${2:expr} 6 | $0 7 | endfor -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/org-mode/author: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: author 3 | # key: -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/org-mode/title: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: title 3 | # key: 3 | # group : general 4 | # -- 5 | # => -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/=b: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: =begin rdoc ... =end 3 | # group : general 4 | # -- 5 | =begin rdoc 6 | $0 7 | =end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/GLOB: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: GLOB 3 | # key: $ 4 | # -- 5 | $${1:GLOBAL} = $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/all: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: all? { |...| ... } 3 | # group : collections 4 | # -- 5 | all? { |${e}| $0 } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/any: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: any? { |...| ... } 3 | # group : collections 4 | # -- 5 | any? { |${e}| $0 } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/attribute: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: attribute 3 | # key: @ 4 | # -- 5 | @${1:attr} = $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/cla: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: class << self ... end 3 | # group : definitions 4 | # -- 5 | class << ${self} 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/collect: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: collect { |...| ... } 3 | # group : collections 4 | # -- 5 | collect { |${e}| $0 } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/dee: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: deep_copy(...) 3 | # group : general 4 | # -- 5 | Marshal.load(Marshal.dump($0)) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/def: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: def ... end 3 | # key: def 4 | # -- 5 | def ${1:method}${2:(${3:args})} 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/deli: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: delete_if { |...| ... } 3 | # group : collections 4 | # -- 5 | delete_if { |${e}| $0 } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/det: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: detect { |...| ... } 3 | # group : collections 4 | # -- 5 | detect { |${e}| $0 } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/ea: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: each { |...| ... } 3 | # group : collections 4 | # -- 5 | each { |${e}| $0 } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/eai: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: each_index { |i| ... } 3 | # group : collections 4 | # -- 5 | each_index { |${i}| $0 } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/eav: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: each_value { |val| ... } 3 | # group : collections 4 | # -- 5 | each_value { |${val}| $0 } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/for: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: for 3 | # key: for 4 | # -- 5 | for ${1:el} in ${2:collection} 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if ... end 3 | # group : control structure 4 | # -- 5 | if ${1:condition} 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/inc: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: include Module 3 | # key: inc 4 | # group: general 5 | # -- 6 | include ${1:Module} 7 | $0 8 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/init: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: init 3 | # key: init 4 | # -- 5 | def initialize(${1:args}) 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/map: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: map { |...| ... } 3 | # group : collections 4 | # -- 5 | map { |${e}| $0 } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/pry: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: binding.pry 3 | # key: pry 4 | # -- 5 | require 'pry'; binding.pry 6 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/r: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: attr_reader ... 3 | # group : definitions 4 | # -- 5 | attr_reader : -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/rb: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: /usr/bin/ruby -wU 3 | # group : general 4 | # -- 5 | #!/usr/bin/ruby -wU -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/reject: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: reject { |...| ... } 3 | # group : collections 4 | # -- 5 | reject { |${1:element}| $0 } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/rel: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: require_relative 3 | # group : general 4 | # -- 5 | require_relative '$0' -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/req: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: require "..." 3 | # group : general 4 | # -- 5 | require '$0' -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/rpry: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: binding.pry_remote 3 | # key: rpry 4 | # -- 5 | require 'pry-remote'; binding.remote_pry -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/rw: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: attr_accessor ... 3 | # group : definitions 4 | # -- 5 | attr_accessor : -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/select: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: select { |...| ... } 3 | # group : collections 4 | # -- 5 | select { |${1:element}| $0 } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/str: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: str 3 | # key: s 4 | # -- 5 | #{$0} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/tim: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: times { |n| ... } 3 | # group : control structure 4 | # -- 5 | times { |${n}| $0 } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/to_: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: to_ 3 | # key: to_ 4 | # -- 5 | def to_s 6 | "${1:string}" 7 | end 8 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/tu: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: tu 3 | # key: tu 4 | # -- 5 | require 'test/unit' -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/until: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: until ... end 3 | # group: control structure 4 | # -- 5 | until ${condition} 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/w: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: attr_writer ... 3 | # group : definitions 4 | # -- 5 | attr_writer : -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/when: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: when ... end 3 | # group : control structure 4 | # -- 5 | when ${condition} 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/while: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: while ... end 3 | # group : control structure 4 | # -- 5 | while ${condition} 6 | $0 7 | end -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/y: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: :yields: arguments (rdoc) 3 | # group : general 4 | # -- 5 | :yields: $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/ruby-mode/zip: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: zip(...) { |...| ... } 3 | # group : collections 4 | # -- 5 | zip(${enums}) { |${row}| $0 } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/allow: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: #[allow(lint)] 3 | # key: allow 4 | # -- 5 | #[allow(${1:lint})] -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/allow!: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: #![allow(lint)] 3 | # key: allow! 4 | # -- 5 | #![allow(${1:lint})] -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/assert: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: assert!(predicate); 3 | # key: ass 4 | # -- 5 | assert!(${1:predicate}); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/case: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: pattern => expression, 3 | # key: case 4 | # -- 5 | ${1:pattern} => ${2:expression}, -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/cfg: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: #[cfg(option)] 3 | # key: cfg 4 | # -- 5 | #[cfg(${1:option})] -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/cfg=: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: #[cfg(option = "value")] 3 | # key: cfg= 4 | # -- 5 | #[cfg(${1:option} = "${2:value}")] -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/closure: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: closure 3 | # key: || 4 | # -- 5 | |${1:arguments}| { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/crate: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: extern crate 3 | # key: ec 4 | # -- 5 | extern crate ${0:name}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/deny: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: #[deny(lint)] 3 | # key: deny 4 | # -- 5 | #[deny(${1:lint})] -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/deny!: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: #![deny(lint)] 3 | # key: deny! 4 | # -- 5 | #![deny(${1:lint})] -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/derive: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: #[derive(Trait)] 3 | # key: derive 4 | # -- 5 | #[derive(${1:Trait})] -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/enum: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: enum Type { ... } 3 | # key: enum 4 | # -- 5 | enum ${1:Type} { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/eprint: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: eprint!("{}", value); 3 | # key: eprint 4 | # -- 5 | eprint!("${1:{}}", $2); 6 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/eprintln: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: eprintln!("{}", value); 3 | # key: eprintln 4 | # -- 5 | eprintln!("${1:{}}", $2); 6 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/fn: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: fn name() { ... } 3 | # key: fn 4 | # -- 5 | fn ${1:name}($2) { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/fns: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: fn name(&self) -> Type; 3 | # key: fns 4 | # -- 5 | fn ${1:name}(${2:&self}) -> ${3:Type}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if expr { ... } 3 | # key: if 4 | # -- 5 | if ${1:expression} { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/impl: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: impl Type { ... } 3 | # key: impl 4 | # -- 5 | impl ${1:Type} { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/let: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: let pattern = expression; 3 | # key: let 4 | # -- 5 | let ${1:pattern} = ${2:expression}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/loop: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: loop { ... } 3 | # key: loop 4 | # -- 5 | loop { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/main: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: fn main() { ... } 3 | # key: main 4 | # -- 5 | fn main() { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/pfn: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: pub fn name() { ... } 3 | # key: pfn 4 | # -- 5 | pub fn ${1:name}($2) { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/print: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: print!("{}", value); 3 | # key: print 4 | # -- 5 | print!("${1:{}}", $2); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/println: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: println!("{}", value); 3 | # key: println 4 | # -- 5 | println!("${1:{}}", $2); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/spawn: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: spawn(proc() { ... }); 3 | # key: spawn 4 | # -- 5 | spawn(proc() { 6 | $0 7 | }); -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/trait: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: trait Type { ... } 3 | # key: trait 4 | # -- 5 | trait ${1:Type} { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/type: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: type TypeName = TypeName; 3 | # key: type 4 | # -- 5 | type ${1:TypeName} = ${2:TypeName}; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/union: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: union Type { ... } 3 | # key: union 4 | # -- 5 | union ${1:Type} { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/warn: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: #[warn(lint)] 3 | # key: warn 4 | # -- 5 | #[warn(${1:lint})] -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/rust-mode/warn!: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: #![warn(lint)] 3 | # key: warn! 4 | # -- 5 | #![warn(${1:lint})] -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/sh-mode/args: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name:args 3 | # key: args 4 | # -- 5 | if [ $# -lt ${1:2} ] 6 | then $0 7 | fi -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/sh-mode/bang: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: bang 3 | # key: ! 4 | # -- 5 | #!/usr/bin/env bash 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/sh-mode/for loop: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: for loop 3 | # key: for 4 | # -- 5 | for ${1:var} in ${2:stuff}; do 6 | $0 7 | done -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/sh-mode/function: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: function 3 | # key: f 4 | # -- 5 | function ${1:name} { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/sh-mode/if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if 3 | # key: if 4 | # -- 5 | if ${1:[ -f file]} 6 | then ${2:do} 7 | fi 8 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/sh-mode/ife: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: ife 3 | # key: ife 4 | # -- 5 | if ${1:cond} 6 | then ${2:stuff} 7 | else ${3:other} 8 | fi 9 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/sh-mode/until: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: until loop 3 | # key: until 4 | # -- 5 | until ${1:cond}; do 6 | $0 7 | done -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/sh-mode/while: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: while loop 3 | # key: while 4 | # -- 5 | while ${1:cond}; do 6 | $0 7 | done -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/snippet-mode/cont: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: cont 3 | # key: cont 4 | # -- 5 | # contributor: `user-full-name` -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/snippet-mode/elisp: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: elisp 3 | # key: ` 4 | # -- 5 | \`$0\` -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/snippet-mode/group: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: group 3 | # key: group 4 | # -- 5 | # group : ${1:group} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/swift-mode/available: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: available 3 | # key: available 4 | # -- 5 | @available(iOS $1, *) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/swift-mode/forcase: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: forcase 3 | # key: forcase 4 | # -- 5 | for case let $1 in $2 as $3 { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/swift-mode/fori: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: fori 3 | # key: fori 4 | # -- 5 | for $1 in $2 { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/swift-mode/func: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: func 3 | # key: func 4 | # -- 5 | func $1() -> $2 { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/swift-mode/if: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: if (...) { ... } 3 | # key: if 4 | # -- 5 | if $1 { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/swift-mode/let: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: let 3 | # key: let 4 | # -- 5 | let $1: $2 = $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/swift-mode/mark: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: mark 3 | # key: mark 4 | # -- 5 | // MARK: - $1 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/swift-mode/var: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: var 3 | # key: var 4 | # -- 5 | var $1: $2 = $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/swift-mode/while: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: while 3 | # key: while 4 | # -- 5 | while $1 { 6 | $0 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/terraform-mode/data: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: data 3 | # key: data 4 | # -- 5 | data "${1:type}" "${2:name}" { 6 | $0 7 | } 8 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/terraform-mode/locals: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: locals 3 | # key: locals 4 | # -- 5 | locals { 6 | {$1:name} = ${2:value} 7 | } -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/terraform-mode/provider: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: provider 3 | # key: prov 4 | # -- 5 | provider "${1:name}" { 6 | $0 7 | } 8 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/text-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | fundamental-mode 2 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/tuareg-mode/assert: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: assert 3 | # key: as 4 | # -- 5 | assert $0;; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/tuareg-mode/docstring: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: docstring 3 | # key: d 4 | # -- 5 | (* $0 *) -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/tuareg-mode/for: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: for 3 | # key: for 4 | # -- 5 | for ${1:cond} do 6 | $0 7 | done -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/tuareg-mode/fun: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: fun 3 | # key: fun 4 | # -- 5 | fun ${1:args} -> $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/tuareg-mode/guard: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: guard 3 | # key: | 4 | # -- 5 | | ${1:match} -> $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/tuareg-mode/ifthen: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: ifthen 3 | # key: if 4 | # -- 5 | if ${1:cond} then 6 | $0 7 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/tuareg-mode/ifthenelse: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: ifthenelse 3 | # key: if 4 | # -- 5 | if ${1:cond} then 6 | $2 7 | else 8 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/tuareg-mode/let: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: let 3 | # key: let 4 | # -- 5 | let ${1:var} $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/tuareg-mode/list_comprehension: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: list_comprehension 3 | # key: l 4 | # -- 5 | [? $1 | $0 ?] -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/tuareg-mode/main: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: main 3 | # key: m 4 | # -- 5 | let main = 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/tuareg-mode/match: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: match 3 | # key: match 4 | # -- 5 | match ${1:to_match} with 6 | | ${2:matching} -> $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/tuareg-mode/open: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: open 3 | # key: op 4 | # -- 5 | open ${1:Module} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/tuareg-mode/printf: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: printf 3 | # key: pr 4 | # -- 5 | Printf.printf "${1:string}" ${2:vals};; -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/tuareg-mode/rec: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: rec 3 | # key: rec 4 | # -- 5 | let rec ${1:fun} ${2:args} = 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/tuareg-mode/try: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: try 3 | # key: try 4 | # -- 5 | try 6 | $0 7 | with 8 | $1 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/tuareg-mode/type: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: type_record 3 | # key: type 4 | # -- 5 | type ${1:name} = {${2:var}: ${3:int}$0} -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/tuareg-mode/type_type: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: type_type 3 | # key: type 4 | # -- 5 | type ${1:expr} = 6 | | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/tuareg-mode/val: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: val 3 | # key: val 4 | # -- 5 | val ${1:fun} : $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/tuareg-mode/while: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: while 3 | # key: wh 4 | # -- 5 | while ${1:cond} do 6 | $0 7 | done -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/typerex-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | tuareg-mode 2 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/typescript-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | js-mode 2 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/udev-mode/ENV: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: ENV 3 | # key: env 4 | # -- 5 | ENV{$1}$0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/udev-mode/GOTO: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: GOTO 3 | # key: goto 4 | # -- 5 | GOTO="$1" 6 | $0 7 | 8 | LABEL="$1" -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/udev-mode/KERNEL: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: KERNEL 3 | # key: ker 4 | # -- 5 | KERNEL!="$0" -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/udev-mode/add: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: add 3 | # key: add 4 | # -- 5 | ACTION=="add", $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/udev-mode/env$: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: env$ 3 | # key: $ 4 | # -- 5 | $env{$1} $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/udev-mode/run: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: run 3 | # key: run 4 | # -- 5 | RUN+="$0" -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/web-mode/.yas-parents: -------------------------------------------------------------------------------- 1 | html-mode 2 | -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/yaml-mode/entry: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: entry 3 | # key: entry 4 | # -- 5 | ${1:entry}: ${2:value} 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/yaml-mode/list: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: list 3 | # key: list 4 | # -- 5 | [$1] 6 | $0 -------------------------------------------------------------------------------- /elpa/yasnippet-snippets-20190714.904/snippets/yaml-mode/section: -------------------------------------------------------------------------------- 1 | # -*- mode: snippet -*- 2 | # name: section 3 | # key: -- 4 | # -- 5 | --- # ${1:section} 6 | $0 -------------------------------------------------------------------------------- /snapshot/snap(1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analyzeninvest/configuring-emacs-from-scratch/be5373f3439310206f4805fec4bccd5eb2b27fab/snapshot/snap(1).jpg -------------------------------------------------------------------------------- /snapshot/snap(10).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analyzeninvest/configuring-emacs-from-scratch/be5373f3439310206f4805fec4bccd5eb2b27fab/snapshot/snap(10).jpg -------------------------------------------------------------------------------- /snapshot/snap(12).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analyzeninvest/configuring-emacs-from-scratch/be5373f3439310206f4805fec4bccd5eb2b27fab/snapshot/snap(12).jpg -------------------------------------------------------------------------------- /snapshot/snap(14).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analyzeninvest/configuring-emacs-from-scratch/be5373f3439310206f4805fec4bccd5eb2b27fab/snapshot/snap(14).jpg -------------------------------------------------------------------------------- /snapshot/snap(15).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analyzeninvest/configuring-emacs-from-scratch/be5373f3439310206f4805fec4bccd5eb2b27fab/snapshot/snap(15).jpg -------------------------------------------------------------------------------- /snapshot/snap(2).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analyzeninvest/configuring-emacs-from-scratch/be5373f3439310206f4805fec4bccd5eb2b27fab/snapshot/snap(2).jpg -------------------------------------------------------------------------------- /snapshot/snap(3).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analyzeninvest/configuring-emacs-from-scratch/be5373f3439310206f4805fec4bccd5eb2b27fab/snapshot/snap(3).jpg -------------------------------------------------------------------------------- /snapshot/snap(4).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analyzeninvest/configuring-emacs-from-scratch/be5373f3439310206f4805fec4bccd5eb2b27fab/snapshot/snap(4).jpg -------------------------------------------------------------------------------- /snapshot/snap(5).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analyzeninvest/configuring-emacs-from-scratch/be5373f3439310206f4805fec4bccd5eb2b27fab/snapshot/snap(5).jpg -------------------------------------------------------------------------------- /snapshot/snap(6).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analyzeninvest/configuring-emacs-from-scratch/be5373f3439310206f4805fec4bccd5eb2b27fab/snapshot/snap(6).jpg -------------------------------------------------------------------------------- /snapshot/snap(7).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analyzeninvest/configuring-emacs-from-scratch/be5373f3439310206f4805fec4bccd5eb2b27fab/snapshot/snap(7).jpg -------------------------------------------------------------------------------- /snapshot/snap(8).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analyzeninvest/configuring-emacs-from-scratch/be5373f3439310206f4805fec4bccd5eb2b27fab/snapshot/snap(8).jpg -------------------------------------------------------------------------------- /snapshot/snap(9).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analyzeninvest/configuring-emacs-from-scratch/be5373f3439310206f4805fec4bccd5eb2b27fab/snapshot/snap(9).jpg -------------------------------------------------------------------------------- /snapshot/snap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/analyzeninvest/configuring-emacs-from-scratch/be5373f3439310206f4805fec4bccd5eb2b27fab/snapshot/snap.jpg -------------------------------------------------------------------------------- /transient/history.el: -------------------------------------------------------------------------------- 1 | ((magit-commit nil) 2 | (magit-dispatch nil) 3 | (magit-push nil)) 4 | --------------------------------------------------------------------------------