Supporting files for development

This commit is contained in:
Mark Griffiths 2014-08-30 12:21:46 +01:00
parent 2445ac4a53
commit ced471d4ce
5 changed files with 1958 additions and 6 deletions

13
.editorconfig Normal file
View file

@ -0,0 +1,13 @@
# fish-shell config: http://EditorConfig.org
# top-most EditorConfig file
root = true
# Unix-style newlines with a newline ending every file
[*]
charset = utf8
end_of_line = lf
insert_final_newline = true
indent_brace_style = Allman
indent_style = spaces
indent_size = 4

6
.gitignore vendored
View file

@ -31,7 +31,6 @@ share/man/
toc.txt
user_doc/
xcuserdata
fish.xccheckout
tests/*tmp.*
tests/foo.txt
FISH-BUILD-VERSION-FILE
@ -42,8 +41,3 @@ lexicon.txt
lexicon_filter
lexicon.log
Fish-Shell.sublime-workspace
Fish-Shell.sublime-project
.editorconfig
doc_src/.editorconfig

View file

@ -0,0 +1,71 @@
{
"build_systems":
[
{
"cmd":
[
"make",
"user_doc"
],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"name": "Make Fish-Shell",
"path": "/Users/Mark/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Applications/Xcode.app/Contents/Developer/usr/bin:/opt/X11/bin",
"selector": "source.Makefile",
"variants":
[
{
"cmd":
[
"make",
"clean"
],
"name": "Clean"
},
{
"cmd":
[
"make",
"user_doc"
],
"name": "User Docs"
},
{
"cmd":
[
"make",
"doc"
],
"name": "Dev Docs"
},
{
"cmd":
[
"make",
"test"
],
"name": "Test"
}
],
"working_dir": "${project_path:${folder:${file_path}}}"
}
],
"folders":
[
{
"file_exclude_patterns":
[
"*.sublime-*"
],
"folder_exclude_patterns":
[
"autom4te.cache"
],
"follow_symlinks": true,
"path": "."
}
],
"settings":
{
"tab_size": 2
}
}

1862
Fish-Shell.sublime-workspace Normal file

File diff suppressed because it is too large Load diff

12
doc_src/.editorconfig Normal file
View file

@ -0,0 +1,12 @@
# fish-shell config: http://EditorConfig.org
# top-most EditorConfig file
root = false
# Unix-style newlines with a newline ending every file
[*]
charset = utf8
end_of_line = lf
insert_final_newline = true
indent_style = spaces
indent_size = 4