Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1B
- Decimal:
27
I hereby claim:
To claim this, I am signing this object:
# EditorConfig is awesome: http://EditorConfig.org | |
# Widely Supported by Editors | |
# The values are case insensitive. They will be lowercased by the core library. | |
# | |
# Indentation Style | |
# indent_style = tab | space | |
# | |
# Indentation Size (in single-spaced characters) | |
# indent_size = integer | |
# |
# EditorConfig is awesome: http://EditorConfig.org | |
root = true | |
[*] | |
indent_style = space | |
indent_size = 4 | |
trim_trailing_whitespace = true | |
end_of_line = crlf |