mirror of
https://github.com/textmate/textmate.git
synced 2026-02-14 16:34:57 -05:00
9 lines
261 B
C++
9 lines
261 B
C++
#include "constants.h"
|
|
|
|
std::string const kLF = "\n";
|
|
std::string const kCR = "\r";
|
|
std::string const kCRLF = "\r\n";
|
|
std::string const kMIX = "•";
|
|
|
|
std::string const kFileTypePlainText = "text.plain";
|