Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
textmate/.tm_properties
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
44 lines (33 sloc)
2.07 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Settings | |
windowTitleProject = '${projectDirectory:+ — ${projectDirectory/^.*\///}}' | |
windowTitleFramework = '${TM_DIRECTORY/.*\/Frameworks\/([^\/]+)\/.*|.*/${1:+ ($1)}/}' | |
windowTitle = '$TM_DISPLAYNAME$windowTitleFramework$windowTitleProject$windowTitleSCM' | |
excludeDirectoriesInFileChooser = '{bin/CxxTest,build,SyntaxMate.tmBundle}' | |
excludeDirectoriesInFolderSearch = '{bin/CxxTest,build,SyntaxMate.tmBundle}' | |
# Variables | |
TM_ORGANIZATION_NAME = 'MacroMates' | |
TM_TODO_IGNORE = '/(build|CxxTest|PlugIns|vendor)/|\.(md|html)$' | |
TM_BUILD_DIR = '${builddir:-$HOME/build/${CWD/.*\///}}' | |
TM_FRAMEWORKS = 'authorization buffer BundleEditor BundleEditor BundleMenu bundles BundlesManager cf command CommitWindow crash CrashReporter document DocumentWindow editor encoding file FileBrowser Find HTMLOutput HTMLOutputWindow io layout license MenuBuilder network ns OakAppKit OakCommand OakDebug OakFilterList OakFoundation OakSystem OakTabBarView OakTextView parse plist Preferences regexp scm scope selection settings SoftwareUpdate text theme undo updater version' | |
TM_FRAMEWORK_INCLUDE = '${TM_FRAMEWORKS/\w+/-I"${TM_BUILD_DIR}\/release\/_Include\/$0\/include"/g}' | |
TM_CXX_FLAGS = '$TM_CXX_FLAGS -I"$CWD/Shared/include" ${TM_FRAMEWORK_INCLUDE}' | |
TM_OBJCXX_FLAGS = '$TM_OBJCXX_FLAGS -I"$CWD/Shared/include" ${TM_FRAMEWORK_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 | |
TM_C_POINTER = "* " | |
[ *.h ] | |
fileType = 'source.objc++' | |
[ attr.untitled ] | |
fileType = 'source.objc++' | |
[ Applications/**~mate/** ] | |
TM_NINJA_TARGET = '${TM_DIRECTORY/^.*\/Applications\/([^\/]+)(\/.*)?$/$1\/run/}' | |
[ tests/t_*.{cc,mm} ] | |
scopeAttributes = 'attr.test.cxxtest' | |
TM_NINJA_TARGET = '${TM_FILEPATH/^.*?([^\/]*)\/tests\/.*$/$1\/test/}' | |
[ tests/gui_*.mm ] | |
GUI_TESTS = '${TM_FILENAME/^gui_(.*)\.mm$/$1/}' | |
TM_NINJA_TARGET = '${TM_FILEPATH/^.*?([^\/]*)\/tests\/.*$/$1\/cxx_test/}' |