Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-09-02 | Support 'wildcard_constraints' keyword | Kyle Meyer | |
wildcard_constraints was added in Snakemake v3.8.0 (feb6aee). | |||
2016-05-27 | Bump versionv0.5.1 | Kyle Meyer | |
2016-05-26 | Add snakemake-rx macro | Kyle Meyer | |
2016-05-25 | snakemake-rule-or-subworkflow-re: Simplify | Kyle Meyer | |
2016-05-24 | indentation: Account for trailing comments | Kyle Meyer | |
2016-05-24 | Fix indentation for continued lines under naked rule | Kyle Meyer | |
2016-05-17 | Bump versionv0.5.0 | Kyle Meyer | |
2016-05-16 | Don't use prog-widen and prog-first-column | Kyle Meyer | |
These functions aren't in Emacs 24.* and have been removed from the emacs-25 branch. See Emacs 124c486 (Remove prog-indentation-context, 2016-03-28). | |||
2016-05-11 | Extend snakemake-block-bounds function | Kyle Meyer | |
Include name and block type. | |||
2016-05-11 | Fix add-log-current-defun-function assignment | Kyle Meyer | |
2016-05-11 | Define function for add-log-current-defun-function | Kyle Meyer | |
2016-05-11 | Define defun navigation commands | Kyle Meyer | |
2016-05-11 | Add snakemake-block-bounds function | Kyle Meyer | |
2016-05-11 | Rework indentation | Kyle Meyer | |
The previous implementation did not support some legal syntax: * spaces between rule lines * indented rule blocks (e.g., a rule defined under an if-statement) * top-level commands like "include" when the value started on the second line (re: #16) | |||
2016-05-04 | snakemake-toplevel-command-re: Allow leading spaces | Kyle Meyer | |
Fixes #17. | |||
2016-05-03 | Be more lenient with spacing in regexps | Kyle Meyer | |
2016-05-03 | Allow spaces after rule/subworkflow name | Kyle Meyer | |
2016-05-03 | mode: Add ".rules" as a file suffix | Kyle Meyer | |
Closes #15. | |||
2016-04-22 | Declare MMM mode functions | Kyle Meyer | |
2016-04-22 | Syntax-highlight embedded R code | Endre Bakken Stovner | |
2016-04-18 | Bump versionv0.4.0 | Kyle Meyer | |
2016-04-16 | Add wrapper keyword | Kyle Meyer | |
This keyword was added in Snakemake version 3.5.5. | |||
2016-04-16 | Support anonymous rule blocks | Kyle Meyer | |
2016-04-15 | mode: Unset indent-region-function | Kyle Meyer | |
Don't use python-indent-region for indent-region-function. At first glance, setting indent-region-function to nil (that is, running indent-according-to-mode on each line) seems to indent rule blocks fine, though it will probably fail on more complex "run" values. However, this does mean that python-indent-region is no longer used when indent-region is called with a region that doesn't include a rule block, so it's probably worth adding a snakemake-indent-region function that calls python-indent-region in this case. Re: #8 | |||
2016-03-12 | mode: Add ".snakefile" as a file suffix | Kyle Meyer | |
https://groups.google.com/d/msg/snakemake/segLE-RlV_s/nQCTxH_TJwAJ | |||
2016-02-28 | Fix rule recognition at beginning of buffer | Kyle Meyer | |
2016-02-28 | Add popup interface for compilation | Kyle Meyer | |
2016-02-27 | snakemake-mode.el: Remove local variables footer | Kyle Meyer | |
2016-02-09 | imenu: Use same order as buffer | Kyle Meyer | |
2016-02-07 | Bump versionv0.3.0 | Kyle Meyer | |
2016-02-07 | Add 'script' keyword | Kyle Meyer | |
This keyword was added in Snakemake 3.5. | |||
2016-02-07 | Reorganize keyword lists | Kyle Meyer | |
2016-02-07 | Rely on implicit group for defcustom's | Kyle Meyer | |
2016-01-17 | Update copyright years | Kyle Meyer | |
2016-01-17 | Highlight Snakefile errors in compilation buffers | Kyle Meyer | |
2016-01-17 | commentary: Update URL for Snakemake's new home | Kyle Meyer | |
2015-12-24 | Recognize blank lines in rule docstrings | Kyle Meyer | |
2015-12-24 | Use lexical binding | Kyle Meyer | |
2015-11-03 | Add shadow keyword for rules | Simon Ye | |
2015-06-10 | Recognize touch function | Kyle Meyer | |
The touch flag was just recently documented: https://groups.google.com/d/msg/Snakemake/ZxUo20DV2KE/0S1rBj0XzwQJ | |||
2015-06-03 | Coexist with Python mode Imenu items | Kyle Meyer | |
2015-06-03 | Expose --touch flag in snakemake-compile-rule | Kyle Meyer | |
2015-04-09 | Fix broken regexps | Kyle Meyer | |
When switching to rx in the last commit (38e5bfec0147), I unintentionally changed two regular expressions, which broke imenu indexing and highlighting for top-level keywords and rules. | |||
2015-04-08 | Use rx to make regular expressions | Kyle Meyer | |
2015-04-08 | snakemake-builtin-function-re: Reword docstring | Kyle Meyer | |
2015-04-08 | Remove leftover concat | Kyle Meyer | |
2015-04-08 | Use font-lock-defaults | Kyle Meyer | |
Major modes should set font-lock-defaults: (info "(elisp)Font Lock Basics") | |||
2015-03-07 | Rework indentation | Kyle Meyer | |
- Change continued field values to support Python indentation. This is useful when the value is using something like format (but only applies to naked field keys). - Don't move back to the start of the line when in a continued field value. - When on the first line of block, only indent to main offset. - Move to current indentation if point is before it. Unless there is one possible value for indentation, don't adjust indentation any further. | |||
2015-03-07 | Use syntax code for whitespace regex | Kyle Meyer | |
2015-03-06 | Fix 'version' keyword typo | Kyle Meyer | |