diff --git a/manual.html b/manual.html new file mode 100644 index 0000000..af34928 --- /dev/null +++ b/manual.html @@ -0,0 +1,1705 @@ + + + + +Yet another snippet extension + + + + + + + + + + + + + + +
+ +
+ +
+

Yet another snippet extension

+ + + + + + +
+

Table of Contents

+ +
+ +
+

1 Quick start

+
+ + +

+ YASnippet is a template system for Emacs. It allows you to type an + abbreviation and automatically expand it into function templates. Bundled + language templates includes: C, C++, C#, Perl, Python, Ruby, SQL, LaTeX, HTML, + CSS and more. The snippet syntax is inspired from TextMate's syntax, you can + even import most TextMate snippets +

+

+ YASnippet is an original creation of http://pluskid.lifegoo.org who also wrote its predecessor + http://code.google.com/p/smart-snippet. +

+ +
+ +
+

1.1 Watch a demo

+
+ + +

+ On youtube. +

+
+ +
+ +
+

1.2 Installation

+
+ + +

+ Clone this repository somewhere +

+ + + +
$ cd ~/.emacs.d/plugins
+$ git clone https://github.com/capitaomorte/yasnippet
+
+ + +

+ Add the following in your .emacs file: +

+ + + +
(add-to-list 'load-path
+              "~/.emacs.d/plugins/yasnippet")
+(require 'yasnippet)
+(yas-global-mode 1)
+
+ + +

+ Add your own snippets to ~/.emacs.d/snippets by placing files there or + invoking yas-new-snippet. +

+
+ +
+ +
+

1.3 Import textmate snippets (rails example)

+
+ + +

+ YASnippet lets you use TextMate bundles directly: +

+ + + +
$ cd ~/.emacs.d/plugins
+$ git clone https://github.com/capitaomorte/yasnippet
+$ cd yasnippet
+$ git submodule init
+$ git submodule update
+$ gem install plist trollop
+$ rake convert_bundles             # will convert ruby, rails and html bundles from drnic
+
+ + +

+ Then, in your .emacs file +

+ + + +
(add-to-list 'load-path
+              "~/.emacs.d/plugins/yasnippet")
+(require 'yasnippet)
+(setq yas-snippet-dirs '("~/.emacs.d/snippets" "~/.emacs.d/extras/imported"))
+(yas-global-mode 1)
+
+ + +

+ Open some rails file (model, app, etc) and start using the textmate + snippets. Consider that this is a work-in-progress and many snippets/commands + might not work. Patches welcome! +

+
+ +
+ +
+

1.4 Contributing snippets

+
+ + +

+ Please do not ask me to add snippets to the default collection under + /snippets. This collection is considered frozen. By customizing + yas-snippet-dirs you can point yasnippet to good + snippet collections out there. +

+

+ The extras/textmate-import.rb tool can import many actual Textmate + snippets. I'm focusing on developing it and the accompanying yas-setup.el + files that guide it with more difficult importations. The idea is to deprecate + /snippets and replace it with extras/imported. +

+
+ +
+ +
+

1.5 Documentation, issues, etc

+
+ + +

+ Please refer to the comprehensive documentation for full + customization and support. If you think you've found a bug, please report it + on the GitHub issue tracker. (please **do not** submit new + issues to the old googlecode tracker) +

+

+ If you run into problems using YASnippet, or have snippets to contribute, + post to the yasnippet forum. Thank you very much for using + YASnippet! +

+
+
+ +
+ +
+

2 Organizing snippets

+
+ + + +
+ +
+

2.1 Basic structure

+
+ + +

+ Snippet collections can be stored in plain text files. They are arranged by + sub-directories naming snippet tables. These mostly name Emacs major names. +

+ + + +
.
+|-- c-mode
+|   `-- printf
+|-- java-mode
+|   `-- println
+`-- text-mode
+    |-- email
+    `-- time
+
+ + +

+ The collections are loaded into snippet tables which the triggering + mechanism (see Expanding snippets) looks up and + (hopefully) cause the right snippet to be expanded for you. +

+
+ +
+ +
+

2.2 Setting up yas-snippet-dirs

+
+ + +

+ The emacs variable yas-snippet-dirs tells YASnippet + which collections to consider. It's used when you activate + yas-global-mode or call + yas-reload-all interactively. +

+

+ The default considers: +

+
    +
  • a personal collection that lives in ~/.emacs.d/snippets +
  • +
  • the bundled collection, taken as a relative path to yasnippet.el localtion +
  • +
+ + +

+ When you come across other snippet collections, do the following to try them + out: +

+ + + +
;; Develop in ~/emacs.d/mysnippets, but also
+;; try out snippets in ~/Downloads/interesting-snippets
+(setq yas-snippet-dirs '("~/emacs.d/mysnippets"
+                           "~/Downloads/interesting-snippets"))
+
+;; OR, keeping yasnippet's defaults try out ~/Downloads/interesting-snippets
+(setq yas-snippet-dirs (append yas-snippet-dirs
+                               '("~/Downloads/interesting-snippets")))
+
+ + +

+ Collections appearing earlier in the list shadow snippets with same names + appearing in collections later in the list. yas-new-snippet always stores + snippets in the first collection. +

+
+ +
+ +
+

2.3 The .yas-parents file

+
+ + +

+ It's very useful to have certain modes share snippets between themselves. To do + this, choose a mode subdirectory and place a .yas-parents containing a + whitespace-separated list of other mode names. When you reload those modes + become parents of the original mode. +

+ + + +
.
+|-- c-mode
+|   |-- .yas-parents    # contains "cc-mode text-mode"
+|   `-- printf
+|-- cc-mode
+|   |-- for
+|   `-- while
+|-- java-mode
+|   |-- .yas-parents    # contains "cc-mode text-mode"
+|   `-- println
+`-- text-mode
+    |-- email
+    `-- time
+
+ + +
+ +
+ +
+

2.4 TODO The .yas-make-groups file

+
+ + +

+ If you place an empty plain text file .yas-make-groups inside one of the + mode directories, the names of these sub-directories are considered groups of + snippets and the menu is organized much more cleanly: +

+

+ (TODO image) +

+

+ Another alternative way to achieve this is to place a # group: directive + inside the snippet definition. See Writing Snippets +

+ + + +
$ tree ruby-mode/
+ruby-mode/
+|-- .yas-make-groups
+|-- collections
+|   |-- each
+|   `-- ...
+|-- control structure
+|   |-- forin
+|   `-- ...
+|-- definitions
+|   `-- ...
+`-- general
+   `-- ...
+
+ + +

+ Yet another way to create a nice snippet menu is to write into + .yas-make-groups a menu definition. TODO +

+
+ +
+ +
+

2.5 TODO The .yas-setup.el file

+
+ + + +
+ +
+

2.5.1 TODO

+
+ + +
+
+ +
+ +
+

2.6 TODO The .yas-compiled-snippet.el file

+
+ + + +
+ +
+

2.6.1 TODO

+
+ + +
+
+ +
+ +
+

2.7 The .yas-skip file

+
+ + +
+
+ +
+ +
+

3 Expanding Snippets

+
+ + + +

+ This section describes how YASnippet chooses snippets for expansion at point. +

+

+ Maybe, you'll want some snippets to be expanded in a particular + mode, or only under certain conditions, or be prompted using +

+ +
+ +
+

3.1 Triggering expansion

+
+ + +

+ To make a snippet expand after the cursor: +

+
    +
  • Type the snippet's trigger key then calling yas-expand. It's bound to + TAB and <tab> by default, to change it use +
  • +
+ + + + + +
(define-key yas-minor-mode-map (kbd "<tab>") nil)
+(define-key yas-minor-mode-map (kbd "TAB") nil)
+(define-key yas-minor-mode-map (kbd "<the new key>") 'yas-expand)
+
+ + +
    +
  • Use the snippet's keybinding. + +
  • +
  • Call yas-insert-snippet (use M-x yas-insert-snippet= or its keybinding C-c & C-s). + +
  • +
  • By expanding directly from the "YASnippet" menu in the menu-bar + +
  • +
  • Using hippie-expand + +
  • +
  • Use m2m's excellent auto-complete +
  • +
+ + +
+
+ +
+ +
+

4 Reference

+
+ + + + + +
+ +
+

4.1 Interactive functions

+
+ + +
+ +
+

4.1.1 yas-skip-and-clear-or-delete-char (&optional field)

+
+ +

/WARNING/: no doc for symbol yas-skip-and-clear-or-delete-char +

+
+ +
+ +
+

4.1.2 yas-exit-all-snippets ()

+
+ +

/WARNING/: no doc for symbol yas-exit-all-snippets +

+
+ +
+ +
+

4.1.3 yas-exit-snippet (snippet)

+
+ +

/WARNING/: no doc for symbol yas-exit-snippet +

+
+ +
+ +
+

4.1.4 yas-abort-snippet (&optional snippet)

+
+ +

/WARNING/: no doc for symbol yas-abort-snippet +

+
+ +
+ +
+

4.1.5 yas-prev-field ()

+
+ +

/WARNING/: no doc for symbol yas-prev-field +

+
+ +
+ +
+

4.1.6 yas-next-field (&optional arg)

+
+ +

/WARNING/: no doc for symbol yas-next-field +

+
+ +
+ +
+

4.1.7 yas-next-field-or-maybe-expand ()

+
+ +

/WARNING/: no doc for symbol yas-next-field-or-maybe-expand +

+
+ +
+ +
+

4.1.8 yas-describe-tables (&optional choose)

+
+ +

/WARNING/: no doc for symbol yas-describe-tables +

+
+ +
+ +
+

4.1.9 yas-tryout-snippet (&optional debug)

+
+ +

/WARNING/: no doc for symbol yas-tryout-snippet +

+
+ +
+ +
+

4.1.10 yas-load-snippet-buffer (table &optional interactive)

+
+ +

/WARNING/: no doc for symbol yas-load-snippet-buffer +

+
+ +
+ +
+

4.1.11 yas-new-snippet (&optional no-template)

+
+ +

/WARNING/: no doc for symbol yas-new-snippet +

+
+ +
+ +
+

4.1.12 yas-visit-snippet-file ()

+
+ +

/WARNING/: no doc for symbol yas-visit-snippet-file +

+
+ +
+ +
+

4.1.13 yas-insert-snippet (&optional no-condition)

+
+ +

/WARNING/: no doc for symbol yas-insert-snippet +

+
+ +
+ +
+

4.1.14 yas-expand-from-keymap ()

+
+ +

Expand/run snippets from keymaps, possibly falling back to original binding. +

+ +
+ +
+ +
+

4.1.15 yas-expand-from-trigger-key (&optional field)

+
+ +

/WARNING/: no doc for symbol yas-expand-from-trigger-key +

+
+ +
+ +
+

4.1.16 yas-about ()

+
+ +

/WARNING/: no doc for symbol yas-about +

+
+ +
+ +
+

4.1.17 yas-recompile-all ()

+
+ +

/WARNING/: no doc for symbol yas-recompile-all +

+
+ +
+ +
+

4.1.18 yas-compile-directory (top-level-dir)

+
+ +

/WARNING/: no doc for symbol yas-compile-directory +

+
+ +
+ +
+

4.1.19 yas-reload-all (&optional interactive)

+
+ +

/WARNING/: no doc for symbol yas-reload-all +

+
+ +
+ +
+

4.1.20 yas-load-directory (top-level-dir &optional use-jit interactive)

+
+ +

/WARNING/: no doc for symbol yas-load-directory +

+
+ +
+ +
+

4.1.21 yas-minor-mode-on ()

+
+ +

/WARNING/: no doc for symbol yas-minor-mode-on +

+
+ +
+ +
+

4.1.22 yas-direct-keymaps-reload ()

+
+ +

/WARNING/: no doc for symbol yas-direct-keymaps-reload +

+
+ +
+ +
+

4.1.23 yas-global-mode (&optional arg)

+
+ +

Non-nil if Yas-Global mode is enabled. +See the command yas-global-mode for a description of this minor mode. +Setting this variable directly does not take effect; +either customize it (see the info node `Easy Customization') +or call the function yas-global-mode. +

+
+ +
+ +
+

4.1.24 yas-minor-mode (&optional arg)

+
+ +

Non-nil if yas minor mode is enabled. +Use the command yas-minor-mode to change this variable. +

+
+ +
+ +
+

4.1.25 yas-expand (&optional field)

+
+ +

Expand a snippet before point. If no snippet +expansion is possible, call command org-self-insert-command. +

+

+Optional argument FIELD is for non-interactive use and is an +object satisfying yas–field-p to restrict the expansion to. +

+
+ +
+ +
+

4.2 Customization variables

+
+ + +
+ +
+

4.2.1 yas-expand-only-for-last-commands

+
+ + +

+List of last-command values to restrict tab-triggering to, or nil. +

+

+Leave this set at nil (the default) to be able to trigger an +expansion simply by placing the cursor after a valid tab trigger, +using whichever commands. +

+

+Optionally, set this to something like '(self-insert-command) if +you to wish restrict expansion to only happen when the last +letter of the snippet tab trigger was typed immediately before +the trigger key itself. +

+
+ +
+ +
+

4.2.2 yas-visit-from-menu

+
+ + +

+If non-nil visit snippets's files from menu, instead of expanding them. +

+

+This can only work when snippets are loaded from files. +

+
+ +
+ +
+

4.2.3 yas-good-grace

+
+ + +

+If non-nil, don't raise errors in inline elisp evaluation. +

+

+An error string "[yas] error" is returned instead. +

+
+ +
+ +
+

4.2.4 yas-wrap-around-region

+
+ + +

+If non-nil, snippet expansion wraps around selected region. +

+

+The wrapping occurs just before the snippet's exit marker. This +can be overridden on a per-snippet basis. +

+
+ +
+ +
+

4.2.5 yas-trigger-symbol

+
+ + +

+The text that will be used in menu to represent the trigger. +

+
+ +
+ +
+

4.2.6 yas-use-menu

+
+ + +

+Display a /YAS/nippet menu in the menu bar. +

+

+When non-nil, submenus for each snippet table will be listed +under the menu "Yasnippet". +

+
    +
  • If set to abbreviate, only the current major-mode +
  • +
+ +

menu and the modes set in yas-extra-modes are listed. +

+
    +
  • If set to full, every submenu is listed + +
  • +
  • It set to nil, don't display a menu at all (this requires a + yas-reload-all call if the menu is already visible). +
  • +
+ + +

+Any other non-nil value, every submenu is listed. +

+
+ +
+ +
+

4.2.7 yas-choose-tables-first

+
+ + +

+If non-nil, and multiple eligible snippet tables, prompts user for tables first. +

+

+Otherwise, user chooses between the merging together of all +eligible tables. +

+

+This affects yas-insert-snippet, yas-visit-snippet-file +

+
+ +
+ +
+

4.2.8 yas-choose-keys-first

+
+ + +

+If non-nil, prompt for snippet key first, then for template. +

+

+Otherwise prompts for all possible snippet names. +

+

+This affects yas-insert-snippet and yas-visit-snippet-file. +

+
+ +
+ +
+

4.2.9 yas-fallback-behavior

+
+ + +

+How to act when yas-expand does not expand a snippet. +

+
    +
  • call-other-command means try to temporarily disable /YAS/nippet + and call the next command bound to whatever key was used to + invoke yas-expand. + +
  • +
  • nil or the symbol return-nil mean do nothing. (and + yas-expand returns nil) + +
  • +
  • A Lisp form (apply COMMAND . ARGS) means interactively call + COMMAND, if ARGS is non-nil, call COMMAND non-interactively + with ARGS as arguments. +
  • +
+ + +
+ +
+ +
+

4.2.10 yas-triggers-in-field

+
+ + +

+If non-nil, allow stacked expansions (snippets inside snippets). +

+

+Otherwise yas-next-field-or-maybe-expand just moves on to the +next field +

+
+ +
+ +
+

4.2.11 yas-snippet-revival

+
+ + +

+Non-nil means re-activate snippet fields after undo/redo. +

+
+ +
+ +
+

4.2.12 yas-also-auto-indent-first-line

+
+ + +

+Non-nil means also auto indent first line according to mode. +

+

+Naturally this is only valid when yas-indent-line is auto +

+
+ +
+ +
+

4.2.13 yas-indent-line

+
+ + +

+Controls indenting applied to a recent snippet expansion. +

+

+The following values are possible: +

+
    +
  • fixed Indent the snippet to the current column; + +
  • +
  • auto Indent each line of the snippet with indent-according-to-mode +
  • +
+ + +

+Every other value means don't apply any snippet-side indentation +after expansion (the manual per-line "$>" indentation still +applies). +

+
+ +
+ +
+

4.2.14 yas-prompt-functions

+
+ + +

+Functions to prompt for keys, templates, etc interactively. +

+

+These functions are called with the following arguments: +

+
    +
  • PROMPT: A string to prompt the user + +
  • +
  • CHOICES: a list of strings or objects. + +
  • +
  • optional DISPLAY-FN : A function that, when applied to each of +
  • +
+ +

the objects in CHOICES will return a string. +

+

+The return value of any function you put here should be one of +the objects in CHOICES, properly formatted with DISPLAY-FN (if +that is passed). +

+
    +
  • To signal that your particular style of prompting is +
  • +
+ +

unavailable at the moment, you can also have the function return +nil. +

+
    +
  • To signal that the user quit the prompting process, you can +
  • +
+ +

signal quit with +

+

+ (signal 'quit "user quit!"). +

+
+ +
+ +
+

4.2.15 yas-snippet-dirs ()

+
+ +

Directory or list of snippet dirs for each major mode. +

+

+The directory where user-created snippets are to be stored. Can +also be a list of directories. In that case, when used for +bulk (re)loading of snippets (at startup or via +yas-reload-all), directories appearing earlier in the list +shadow other dir's snippets. Also, the first directory is taken +as the default for storing the user's new snippets. +

+
+ +
+ +
+

4.3 Useful functions

+
+ + +
+ +
+

4.3.1 yas-active-keys ()

+
+ +

/WARNING/: no doc for symbol yas-active-keys +

+
+ +
+ +
+

4.3.2 yas-hippie-try-expand (first-time?)

+
+ +

/WARNING/: no doc for symbol yas-hippie-try-expand +

+
+ +
+ +
+

4.3.3 yas-define-condition-cache (func doc &rest body)

+
+ +

/WARNING/: no doc for symbol yas-define-condition-cache +

+
+ +
+ +
+

4.3.4 yas-unimplemented (&optional missing-feature)

+
+ +

/WARNING/: no doc for symbol yas-unimplemented +

+
+ +
+ +
+

4.3.5 yas-inside-string ()

+
+ +

/WARNING/: no doc for symbol yas-inside-string +

+
+ +
+ +
+

4.3.6 yas-default-from-field (number)

+
+ +

/WARNING/: no doc for symbol yas-default-from-field +

+
+ +
+ +
+

4.3.7 yas-selected-text ()

+
+ +

The selected region deleted on the last snippet expansion. +

+
+ +
+ +
+

4.3.8 yas-text ()

+
+ +

Contains current field text. +

+
+ +
+ +
+

4.3.9 yas-field-value (number)

+
+ +

/WARNING/: no doc for symbol yas-field-value +

+
+ +
+ +
+

4.3.10 yas-verify-value (possibilities)

+
+ +

/WARNING/: no doc for symbol yas-verify-value +

+
+ +
+ +
+

4.3.11 yas-throw (text)

+
+ +

/WARNING/: no doc for symbol yas-throw +

+
+ +
+ +
+

4.3.12 yas-key-to-value (alist)

+
+ +

/WARNING/: no doc for symbol yas-key-to-value +

+
+ +
+ +
+

4.3.13 yas-choose-value (&rest possibilities)

+
+ +

/WARNING/: no doc for symbol yas-choose-value +

+
+ +
+ +
+

4.3.14 yas-substr (str pattern &optional subexp)

+
+ +

/WARNING/: no doc for symbol yas-substr +

+
+ +
+ +
+

4.3.15 yas-text ()

+
+ +

Contains current field text. +

+
+ +
+ +
+

4.3.16 yas-define-menu (mode menu &optional omit-items)

+
+ +

/WARNING/: no doc for symbol yas-define-menu +

+
+ +
+ +
+

4.3.17 yas-define-snippets (mode snippets)

+
+ +

/WARNING/: no doc for symbol yas-define-snippets +

+
+ +
+ +
+

4.3.18 yas-expand-snippet (content &optional start end expand-env)

+
+ +

/WARNING/: no doc for symbol yas-expand-snippet +

+
+ +
+ +
+

4.3.19 yas-dropdown-prompt (prompt choices &optional display-fn)

+
+ +

/WARNING/: no doc for symbol yas-dropdown-prompt +

+
+ +
+ +
+

4.3.20 yas-completing-prompt (prompt choices &optional display-fn completion-fn)

+
+ +

/WARNING/: no doc for symbol yas-completing-prompt +

+
+ +
+ +
+

4.3.21 yas-no-prompt (prompt choices &optional display-fn)

+
+ +

/WARNING/: no doc for symbol yas-no-prompt +

+
+ +
+ +
+

4.3.22 yas-ido-prompt (prompt choices &optional display-fn)

+
+ +

/WARNING/: no doc for symbol yas-ido-prompt +

+
+ +
+ +
+

4.3.23 yas-x-prompt (prompt choices &optional display-fn)

+
+ +

/WARNING/: no doc for symbol yas-x-prompt +

+
+ +
+ +
+

4.4 Useful variables

+
+ + +
+ +
+

4.4.1 yas-moving-away-p

+
+ + +

+Non-nil if user is about to exit field. +

+
+ +
+ +
+

4.4.2 yas-modified-p

+
+ + +

+Non-nil if field has been modified by user or transformation. +

+
+ +
+ +
+

4.4.3 yas-snippet-end

+
+ + +

+End position of the last snippet committed. +

+
+ +
+ +
+

4.4.4 yas-snippet-beg

+
+ + +

+Beginning position of the last snippet committed. +

+
+ +
+ +
+

4.4.5 yas-dont-activate

+
+ + +

+If non-nil don't let yas-global-mode affect some buffers. +

+

+If a function of zero arguments, then its result is used. +

+

+If a list of functions, then all functions must return nil to +activate yas for this buffer. +

+

+In Emacsen <= 23, this variable is buffer-local. Because +yas-minor-mode-on is called by yas-global-mode after +executing the buffer's major mode hook, setting this variable +there is an effective way to define exceptions to the "global" +activation behaviour. +

+

+In Emacsen > 23, only the global value is used. To define +per-mode exceptions to the "global" activation behaviour, call +yas-minor-mode with a negative argument directily in the major +mode's hook. +

+
+ +
+ +
+

4.4.6 yas-buffer-local-condition

+
+ + +

+Snippet expanding condition. +

+

+This variable is a Lisp form which is evaluated every time a +snippet expansion is attempted: +

+
    +
  • If it evaluates to nil, no snippets can be expanded. + +
  • +
  • If it evaluates to the a cons (require-snippet-condition + . REQUIREMENT) + +
      +
    • Snippets bearing no "# condition:" directive are not + considered + +
    • +
    • Snippets bearing conditions that evaluate to nil (or + produce an error) won't be considered. + +
    • +
    • If the snippet has a condition that evaluates to non-nil + RESULT: + +
        +
      • If REQUIREMENT is t, the snippet is considered + +
      • +
      • If REQUIREMENT is eq RESULT, the snippet is + considered + +
      • +
      • Otherwise, the snippet is not considered. + +
      • +
      + +
    • +
    + +
  • +
  • If it evaluates to the symbol 'always, all snippets are + considered for expansion, regardless of any conditions. + +
  • +
  • If it evaluates to t or some other non-nil value + +
      +
    • Snippet bearing no conditions, or conditions that + evaluate to non-nil, are considered for expansion. + +
    • +
    • Otherwise, the snippet is not considered. +
    • +
    + +
  • +
+ + +

+Here's an example preventing snippets from being expanded from +inside comments, in python-mode only, with the exception of +snippets returning the symbol 'force-in-comment in their +conditions. +

+

+ (add-hook 'python-mode-hook + '(lambda () + (setq yas-buffer-local-condition + '(if (python-in-string/comment) + '(require-snippet-condition . force-in-comment) + t)))) +

+

+The default value is similar, it filters out potential snippet +expansions inside comments and string literals, unless the +snippet itself contains a condition that returns the symbol +force-in-comment. +

+
+ +
+ +
+

4.4.7 yas-before-expand-snippet-hook

+
+ + +

+Hooks to run just before expanding a snippet. +

+
+ +
+ +
+

4.4.8 yas-after-exit-snippet-hook

+
+ + +

+Hooks to run after a snippet exited. +

+

+The hooks will be run in an environment where some variables bound to +proper values: +

+

+yas-snippet-beg : The beginning of the region of the snippet. +

+

+yas-snippet-end : Similar to beg. +

+

+Attention: These hooks are not run when exiting nested/stacked snippet expansion! +

+
+ +
+ +
+

4.4.9 yas-key-syntaxes

+
+ + +

+List of character syntaxes used to find a trigger key before point. +The list is tried in the order while scanning characters +backwards from point. For example, if the list is '("w" "w_") +first look for trigger keys which are composed exclusively of +"word"-syntax characters, and then, if that fails, look for +keys which are either of "word" or "symbol" +syntax. Triggering after +

+

+foo-bar +

+

+will, according to the "w" element first try "bar". If that +isn't a trigger key, "foo-bar" is tried, respecting a second +"w_" element. +

+
+ +
+ +
+

4.4.10 yas-extra-modes

+
+ + +

+A list of modes for which to also lookup snippets. +

+

+This variable probably makes more sense as buffer-local, so +ensure your use make-local-variable when you set it. +

+
+ +
+ +
+

4.4.11 yas-verbosity

+
+ + +

+Log level for yas–message 4 means trace most anything, 0 means nothing. +

+
+ +
+ +
+

4.4.12 yas-keymap

+
+ + +

+The active keymap while a snippet expansion is in progress. +

+
+
+
+
+
+ +
+

Date: 2013-11-24T12:11-0500

+

Author: Noam Postavsky

+

Org version 7.9.3f with Emacs version 24

+Validate XHTML 1.0 + +
+ + diff --git a/stylesheets/styles.css b/stylesheets/styles.css new file mode 100644 index 0000000..a158012 --- /dev/null +++ b/stylesheets/styles.css @@ -0,0 +1,93 @@ +@media all +{ + body { + margin: 1em auto; + /*margin: 10px 18% 10px 18%;*/ + font-family: Arial; + /*text-align: justify;*/ + font-size: 14pt; + padding: 10px; + line-height: 1.2em; + max-width: 600pt; + } + + div#table-of-contents { + position: fixed; + left: 0%; + right: 0%; + top: 0px; + z-index: 100; + background: black; + } + + div#table-of-contents h2 { + display: none; + } + + div#table-of-contents a { + text-decoration: none; + color: white; + } + + div#table-of-contents a:visited { + color: white; + } + + div#table-of-contents a:hover { + color: orange; + } + + div.outline-2 h2{ + padding-top: 50px; + } + + div#text-table-of-contents { + text-color: white; + text-align: center; + margin-left: 30%; + margin-right: 30%; + } + + div#text-table-of-contents ul { + height: 2em; + width: 500px; + list-style: none; + margin: auto; + } + + div#text-table-of-contents ul li { + float: left; + margin-left:auto; + margin-right: auto; + padding-left: 10px; + } + + div#postamble{ + position: fixed; + width: 800px; + height: 250px; + left: 50%; + right: 50%; + margin:-75px 0 0 -400px; + bottom: -20px; + font-size: 10pt; + color: grey; + background: url('siscog-bottom-logo.png') no-repeat; + /* background-size: 100% 100%; */ + } + + div#postamble *{ + display: none; + } + + div#postamble p.date{ + position: relative; + bottom: -200px; + text-align: center; + display: block; + } + + + + +} \ No newline at end of file