Files
textmate/Frameworks/settings/src/keys.cc
Josh Goebel dc34d5c9d9 Allow disabling document status in file browser
Disabling this is achieved by setting `fileBrowserDocumentStatus` to `false` in `.tm_properties`.

Disabling it should remove potential delays after opening, closing, and saving files when file browser is showing a lot of files. It is meant as a temporary workaround until the performance issues are addressed.
2012-11-12 13:28:34 +07:00

52 lines
3.3 KiB
C++

#include "keys.h"
std::string const kSettingsFileTypeKey = "fileType";
std::string const kSettingsTabSizeKey = "tabSize";
std::string const kSettingsSoftTabsKey = "softTabs";
std::string const kSettingsSpellCheckingKey = "spellChecking";
std::string const kSettingsSpellingLanguageKey = "spellingLanguage";
std::string const kSettingsThemeKey = "theme";
std::string const kSettingsFontNameKey = "fontName";
std::string const kSettingsFontSizeKey = "fontSize";
std::string const kSettingsSoftWrapKey = "softWrap";
std::string const kSettingsWrapColumnKey = "wrapColumn";
std::string const kSettingsShowWrapColumnKey = "showWrapColumn";
std::string const kSettingsShowInvisiblesKey = "showInvisibles";
std::string const kSettingsProjectDirectoryKey = "projectDirectory";
std::string const kSettingsSCMStatusKey = "scmStatus";
std::string const kSettingsFileBrowserDocumentStatusKey = "fileBrowserDocumentStatus";
std::string const kSettingsWindowTitleKey = "windowTitle";
std::string const kSettingsScopeAttributesKey = "scopeAttributes";
std::string const kSettingsBinaryKey = "binary";
std::string const kSettingsEncodingKey = "encoding";
std::string const kSettingsUseBOMKey = "useBOM";
std::string const kSettingsLineEndingsKey = "lineEndings";
std::string const kSettingsStoreEncodingPerFileKey = "storeEncodingPerFile";
std::string const kSettingsIncludeKey = "include";
std::string const kSettingsIncludeDirectoriesKey = "includeDirectories";
std::string const kSettingsIncludeDirectoriesInBrowserKey = "includeDirectoriesInBrowser";
std::string const kSettingsIncludeFilesKey = "includeFiles";
std::string const kSettingsIncludeFilesInBrowserKey = "includeFilesInBrowser";
std::string const kSettingsIncludeFilesInFileChooserKey = "includeFilesInFileChooser";
std::string const kSettingsIncludeInBrowserKey = "includeInBrowser";
std::string const kSettingsIncludeInFileChooserKey = "includeInFileChooser";
std::string const kSettingsExcludeDirectoriesInBrowserKey = "excludeDirectoriesInBrowser";
std::string const kSettingsExcludeDirectoriesInFileChooserKey = "excludeDirectoriesInFileChooser";
std::string const kSettingsExcludeDirectoriesInFolderSearchKey = "excludeDirectoriesInFolderSearch";
std::string const kSettingsExcludeDirectoriesKey = "excludeDirectories";
std::string const kSettingsExcludeFilesInBrowserKey = "excludeFilesInBrowser";
std::string const kSettingsExcludeFilesInFileChooserKey = "excludeFilesInFileChooser";
std::string const kSettingsExcludeFilesInFolderSearchKey = "excludeFilesInFolderSearch";
std::string const kSettingsExcludeFilesKey = "excludeFiles";
std::string const kSettingsExcludeInBrowserKey = "excludeInBrowser";
std::string const kSettingsExcludeInFileChooserKey = "excludeInFileChooser";
std::string const kSettingsExcludeInFolderSearchKey = "excludeInFolderSearch";
std::string const kSettingsExcludeKey = "exclude";