mirror of
https://github.com/textmate/textmate.git
synced 2026-04-28 03:00:34 -04:00
As I add sub-projects (like the CommitWindow) under Applications, I don’t want those to pickup the parent project’s root, when they are opened on their own.
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
# Settings
|
|
windowTitleProject = '${projectDirectory:+ — ${projectDirectory/^.*\///}}'
|
|
windowTitleFramework = '${TM_DIRECTORY/.*\/Frameworks\/([^\/]+)\/.*|.*/${1:+ ($1)}/}'
|
|
windowTitle = '$TM_DISPLAYNAME$windowTitleFramework$windowTitleProject$windowTitleSCM'
|
|
|
|
# Variables
|
|
TM_ORGANIZATION_NAME = 'MacroMates'
|
|
|
|
TM_TODO_IGNORE = '/disabled(-src)?|onig-.*|build|CxxTest/'
|
|
|
|
TM_CXX_FLAGS = '$TM_CXX_FLAGS -I"$CWD/Shared/include" -I"${builddir:-$HOME/build/TextMate}/include"'
|
|
TM_OBJCXX_FLAGS = '$TM_OBJCXX_FLAGS -I"$CWD/Shared/include" -I"${builddir:-$HOME/build/TextMate}/include"'
|
|
|
|
TM_NINJA_FILE = '${CWD}/build.ninja'
|
|
TM_NINJA_TARGET = 'TextMate/run'
|
|
|
|
TM_ISSUE_URL = 'https://github.com/textmate/textmate/issues/%s'
|
|
|
|
[ 'source.c++, source.objc++' ]
|
|
tabSize = 3
|
|
softTabs = false
|
|
|
|
[ target ]
|
|
fileType = 'source.tm-properties'
|
|
|
|
[ *.h ]
|
|
fileType = 'source.objc++'
|
|
|
|
[ attr.untitled ]
|
|
fileType = 'source.objc++'
|
|
|
|
[ tests/*.{cc,mm} ]
|
|
scopeAttributes = 'attr.test.cxxtest'
|
|
TM_NINJA_TARGET = '${TM_FILEPATH/^.*?([^\/]*)\/tests\/.*$/$1\/test/}'
|
|
|
|
[ tests/t_*.mm ]
|
|
GUI_TESTS = '${TM_FILENAME/^t_(.*)\.mm$/$1/}'
|