Skip to content

Commit

Permalink
Update README and add update message.
Browse files Browse the repository at this point in the history
  • Loading branch information
skuroda committed Mar 14, 2014
1 parent 7fc0836 commit 61fd2db
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
7 changes: 4 additions & 3 deletions AdvancedNewFile.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,10 @@
// The key values for this object should be a file extension. The value may either
// be a string of the content to be inserted or a list of paths. If a list of paths
// is specified, the name of the file will be displayed during selection. The paths
// must either be absolute, or be from the home directory of the user (`~/`). If a
// string is used, or the list contains a single entry, it will be automatically
// inserted into any newly created files.
// must either be absolute, from the home directory of the user (`~/`), or relative
// to the Packages directory. These relative files should have the form
// "Packages/User/mytest.sublime-snippet". If a string is used, or the list contains
// a single entry, it will be automatically inserted into any newly created files.
"file_templates": {},

// Setting this value to true will allow you to escape characters as you normally
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ Setting to control if VCS management is used when moving and removing files.

`file_templates`:

An object containing information to use for templates when creating new files. The key values for this object should be a file extension. The value may either be a string of the content to be inserted or a list of paths. If a list of paths is specified, the name of the file will be displayed during selection. The paths must either be absolute, or be from the home directory of the user (`~/`). The file format should match that of a ST snippet. If a string is used, or the list contains a single entry, it will be automatically inserted into any newly created files.
An object containing information to use for templates when creating new files. The key values for this object should be a file extension. The value may either be a string of the content to be inserted or a list of paths. If a list of paths is specified, the name of the file will be displayed during selection. The paths must either be absolute, from the home directory of the user (`~/`), or relative to the Packages directory. These relative files should have the form "Packages/User/mytest.sublime-snippet". If a string is used, or the list contains a single entry, it will be automatically inserted into any newly created files.

`posix_input`:

Expand Down
3 changes: 2 additions & 1 deletion messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@
"1.0.0": "messages/8.txt",
"1.1.0": "messages/1.1.0.txt",
"1.1.1": "messages/1.1.1.txt",
"1.2.0": "messages/1.2.0.txt"
"1.2.0": "messages/1.2.0.txt",
"1.2.1": "messages/1.2.1.txt"
}
3 changes: 3 additions & 0 deletions messages/1.2.1.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Fix issue with shell input breaking auto complete functionality.
- Support template files to be specified relative to the packages directory in the form "Packages/User/sample.template"
- Add new setting "append_extension_on_move". This setting will, when set to true, automatically append the extension of the source file when moving if one is not specified.

0 comments on commit 61fd2db

Please sign in to comment.