mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 23:47:25 +00:00
Supporting files for development
This commit is contained in:
parent
2445ac4a53
commit
ced471d4ce
5 changed files with 1958 additions and 6 deletions
13
.editorconfig
Normal file
13
.editorconfig
Normal 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
6
.gitignore
vendored
|
@ -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
|
||||
|
||||
|
|
71
Fish-Shell.sublime-project
Normal file
71
Fish-Shell.sublime-project
Normal 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
1862
Fish-Shell.sublime-workspace
Normal file
File diff suppressed because it is too large
Load diff
12
doc_src/.editorconfig
Normal file
12
doc_src/.editorconfig
Normal 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
|
Loading…
Reference in a new issue