backing up sublime settings

This commit is contained in:
2014-04-04 11:21:58 -04:00
commit 2cbece8593
274 changed files with 23793 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
SublimeLinter 3.0.10
---------------------
- Linting unsaved files works correctly now.
- When a linter plugin is loaded successfully, the console will say "<linter> activated" instead of "linter enabled". In addition, if the linter is disabled in your settings at load time, it will say so in the activation message, to make it clear the linter is active but not currently enabled.
- Non-string values may be used for lists of values in linter settings.
- When loading the first python-based linter on Windows, a command prompt window briefly opened. This has been fixed.

View File

@@ -0,0 +1,10 @@
SublimeLinter 3.0.11
---------------------
- Support was added for ruby-based linters via a new RubyLinter class.
This class makes ruby-based linters work with rbenv and (hopefully)
rvm. It also preserves your GEM_HOME when running ruby-based linters.
See the documentation for more info.
- Some linters use html entitities in the error messages, so html
entities in error messages are now decoded.

View File

@@ -0,0 +1,6 @@
SublimeLinter 3.0.12
---------------------
- A new Linter method was added, get_user_args, to make it easy
for linter plugins to get the "args" setting and be sure
it's a list.

View File

@@ -0,0 +1,22 @@
SublimeLinter 3.0.15
---------------------
- A new method was added, persist.debug_mode, to make it easier
for linter plugins to determine if the user has debug mode
turned on. Returns True if "debug" setting is on.
- Linters can now declare themselves as universal by setting
the syntax to '*'. '*' can also be used as a key in selectors.
See the SublimeLinter-annotations plugin for an example.
- When specifying a list setting as a string, for example:
"annotations": {
"warnings": "FOO, BAR",
}
in non-inline setting you can now put whitespace around
the separator. Note that space may not be used around the
separator if the setting is inline.
- Fixed some problems related to unexpected ST3 behavior.

View File

@@ -0,0 +1,7 @@
SublimeLinter 3.0.16
---------------------
- Fixed crashes related to missing settings.
- If the PATH output from your shell cannot be parsed,
an error message is printed to the console.

View File

@@ -0,0 +1,14 @@
SublimeLinter 3.0.17
--------------------
- Fixed possible hang if a long-running process was started
in the shell startup files. (SublimeLinter3-#30)
- If unable to read the shell PATH, you are warned that
linters will most likely not work.
- Re-added ability to use @ filename placeholder in the cmd
when the linter accepts stdin. (SublimeLinter-#618)
- Fixed the character offset of highlights on the first
line of a selector region. (annotations-#1)

View File

@@ -0,0 +1,11 @@
SublimeLinter 3.0.18
---------------------
- Hopefully dealing correctly with gems under rbenv/rvm now.
- Added Linter.config_file attribute for automating config file
lookup. See the Writing Linters docs for more info.
- @ may be used as a prefix for arguments in the Linter.defaults attribute.
It suppresses output of the arg name, allowing you to use a named
inline setting/override and only have the values passed in the
linter command. See the Writing Linters docs for more info.

View File

@@ -0,0 +1,8 @@
SublimeLinter 3.0.19
---------------------
- Previously, when a linter plugin name had a dash in it, for example
SublimeLinter-foo-bar, the inline setting name was "foobar",
which could lead to confusion. Now both "foobar" and "foo-bar"
are recognized as inline setting names.
- Fixed a bug with argument generation in some linters.

View File

@@ -0,0 +1,10 @@
SublimeLinter 3.0.20
---------------------
- When using the "Create Linter Plugin" command, an executable name
with dashes will be converted into a camel-case class name. For
example, scss-lint becomes ScssLint.
- Added .gitignore with .DS_Store to the linter plugin template.
- You may now define a linter as file-only by setting its tempfile_suffix
to '-', which means that linter will only run when its view is not dirty.

View File

@@ -0,0 +1,12 @@
******************
* Exciting news! *
******************
After another week of hard work, I'm very happy
and excited to announce that the SublimeLinter 3
documentation has gone to a much better place...
http://sublimelinter.readthedocs.org
It's indexed, searchable, mobile-ready, and
beautiful. Read those docs!

View File

@@ -0,0 +1,15 @@
SublimeLinter 3.0.23
---------------------
- If no gutter marks are showing and there is no column in
an error message, the entire line is highlighted.
- When specifying inline settings, "SublimeLinter" is now
case-insensitive, so for example both "[SublimeLinter flake8-ignore:E201]"
and "[sublimelinter flake8-ignore:E201]" will work.
- If you are using a node-based linter (like jshint), nvm,
zsh, and oh-my-zsh, do **not** install the nvm plugin for
oh-my-zsh. It interferes with SublimeLinters ability to
find the path to node.
- Fixed some bugs relating to default settings.

View File

@@ -0,0 +1,13 @@
SublimeLinter 3.0.24
---------------------
- A new linter setting has been added, "ignore_match",
which allows you to ignore errors based on the error message.
For more information, please see the documentation:
http://sublimelinter.readthedocs.org/en/latest/linter_settings.html#ignore-match
- A Dash doc feed is now available so you can read the
SublimeLinter docs within Dash and they will always stay
up to date with the latest version.
dash-feed://https%3A//media.readthedocs.org/dash/sublimelinter/latest/sublimelinter.xml

View File

@@ -0,0 +1,17 @@
SublimeLinter 3.0.25
---------------------
- If you have multiple views of the same buffer open, even in multiple
windows, the highlights, gutter marks and status messages are kept in sync.
- On Mac OS X, a syntax file will load even if the capitalization of its
filename extension is not ".tmLanguage". On other platforms it will not
load. But since it at least works on Mac OS X, SublimeLinter will allow
it when resolving syntaxes.
- Added CONTRIBUTING.md, so github issues will showing something about
the guidelines for contributing.
- Linter.config_file now allows for an abitrary number of auxiliary
search directories to be searched, and '~' is expanded. This allows
for linters like jshint to provide the native functionality of
searching the file hierarchy and the home directory.

View File

@@ -0,0 +1,9 @@
SublimeLinter 3.0.26
---------------------
- I have switched back to .zshenv as the recommended place
to put PATH augmentations for zsh. On Ubuntu, shells are
not started as login shells by default in terminals, which
prevented .zprofile from loading. If anyone has trouble
using .zshenv, let me know.
- Added Retina icons for the Default and Circle gutter themes.

View File

@@ -0,0 +1,5 @@
SublimeLinter 3.0.27
---------------------
- Added fixed HTML (Rails) syntax to correctly support ERB files.
- Fixed the path for the Default gutter theme.

View File

@@ -0,0 +1,28 @@
SublimeLinter 3.0.28
---------------------
I am very grateful to everyone who has created linter plugins and made
the commitment to maintain and support them.
SublimeLinter is only as good as its linters, so I feel every linter
released to the public should be up to the standards I am holding
myself to with SublimeLinter. As a result, I have taken the following
step:
- We have moved all of the SublimeLinter linter plugins to a private channel.
In the future, any requests for publishing through Package Control will
be vetted for basic correctness.
- Linter plugins that are not in the SublimeLinter org on github have
been renamed to SublimeLinter-contrib-*, so users can know that these
are user-contributed, vs. the "official" linters in the SublimeLinter
org.
- When creating a linter plugin using the "Create Linter Plugin" command,
the name is SublimeLinter-contrib-* name.
Of course I want as many linters as possible in the SublimeLinter org.
Anyone who is willing to have their plugin vetted and is willing to
maintain and support their linter will be welcome in the org.
Thank you for your support!

View File

@@ -0,0 +1,3 @@
SublimeLinter 3.0.29
---------------------
- Debug mode is now logged at startup.

View File

@@ -0,0 +1,7 @@
SublimeLinter 3.0.30
---------------------
- When module import fails, the log message is more specific about
the consequences of that failure.
- Fixed the case where non-version-sensitive python linters would fail
to lint when a python 3 module was not available.

View File

@@ -0,0 +1,7 @@
SublimeLinter 3.0.31
---------------------
- When reading PATH from the shell, the default timeout has been increased
to 10 seconds. If that is not sufficient, a new setting, "shell_timeout",
has been added, which can be set to the desired amount of time in seconds.
- When searching for executables, ~ is expanded in PATH components.

View File

@@ -0,0 +1,68 @@
SublimeLinter 3.0.5
--------------------
*** IMPORTANT! ***
PLEASE read this entire message!
*** BUG REPORTING ***
Before running for help, please take the time to read the Troubleshooting
guide, which has been greatly expanded in this version.
http://sublimelinter.readthedocs.org/en/latest/troubleshooting.html
If you still have a problem, please use github issues only for verified bugs.
If you have a general usage question, or are having trouble with installation
or configuration, please use the SublimeLinter google group. That way everyone will
benefit from the answer.
Even if you suspect there is a bug, it's better to ask on the group first
and then file an issue on github only after it has been confirmed that it's a bug.
https://groups.google.com/forum/#!forum/sublimelinter
*** HAVE YOU READ THE DOCS? ***
If not, you are probably missing out on a lot of great new features in
SublimeLinter 3. At least read the Usage docs.
A searchable version of docs with a Table of Contents is in the works.
*** KEYBOARD CHANGES ***
The Mac OS X keyboard equivalent for Show All Errors is now Control+Command+A.
*** LIVE GUTTER THEME PREVIEW! ***
You can now preview gutter themes in the chooser! For more info, see:
http://sublimelinter.readthedocs.org/en/latest/gutter_themes.html#choosing-a-gutter-theme
*** LINTER PLUGIN AUTHORS ***
If you have already written a linter plugin, thank you! Please note
that the usage of error_stream has changed a bit, please read:
http://sublimelinter.readthedocs.org/en/latest/linter_attributes.html#error-stream
*** KEEP SUBLIMELINTER ALIVE! ***
I have now spent two solid months on SublimeLinter, and there is still lots to do.
I am very grateful to everyone who has donated so far to support
SublimeLinter. But many have not. If everyone who relies on SublimeLinter
donated even a few dollars, I wouldn't have to worry. But the reality is
that without more financial support, I simply cannot continue to provide
the same level of support for SublimeLinter.
I'm sorry to have to beg for donations, but open source software is not free
-- the developers usually end up paying for it!
Thank you for your support!

View File

@@ -0,0 +1,10 @@
SublimeLinter 3.0.6
--------------------
- Fixed a bug in setting mark style and lint mode
through the Command Palette.
- Show All Errors moves the selection to the highlighted error
as you move through the items.
- Live preview of mark styles when choosing from the Command Palette.

View File

@@ -0,0 +1,8 @@
SublimeLinter 3.0.9
--------------------
- There are new commands to toggle, enable, or disable a linter.
No need to go hunting through the settings.
- Please note that the recommended place for PATH changes with zsh
is .zshenv instead of .zprofile.

View File

@@ -0,0 +1,48 @@
____ _ _ _ _ _ _
/ ___| _ _| |__ | (_)_ __ ___ ___| | (_)_ __ | |_ ___ _ __
\___ \| | | | '_ \| | | '_ ` _ \ / _ \ | | | '_ \| __/ _ \ '__|
___) | |_| | |_) | | | | | | | | __/ |___| | | | | || __/ |
|____/ \__,_|_.__/|_|_|_| |_| |_|\___|_____|_|_| |_|\__\___|_|
Welcome to SublimeLinter, a linter framework for Sublime Text 3.
* * * IMPORTANT! * * *
SublimeLinter 3 is NOT a drop-in replacement for
earlier versions.
Linters *NOT* included with SublimeLinter 3, they
must be installed separately.
Settings are different.
* * * READ THE DOCS! * * *
Otherwise you will never know how to install linters, nor will
you know about all of the great new features in SublimeLinter 3.
For complete documentation on how to install and use SublimeLinter,
please see:
http://sublimelinter.readthedocs.org
_ _ _ _
| | | | ___| |_ __ | |
| |_| |/ _ \ | '_ \| |
| _ | __/ | |_) |_|
|_| |_|\___|_| .__/(_)
|_|
I spent hundreds of hours writing and documenting SublimeLinter
to make it the best it can be — easy to use, easy to configure,
easy to update, easy to extend. If you use SublimeLinter and feel
it is making your coding life better and easier, please consider
making a donation to help fund development and support.
To donate: https://github.com/SublimeLinter/SublimeLinter3#share-the-love
Thank you!