diff options
author | Yerlan | 2021-08-17 01:45:29 +0000 |
---|---|---|
committer | GitHub | 2021-08-17 01:45:29 +0000 |
commit | a2cd9cce9d2fb809daff89716810ec2b8192ffa0 (patch) | |
tree | 80478098218bb0425e44d3d83d8d4951fef23927 | |
parent | 18c05095935509a85fc014379fc63a2b6b50aaf5 (diff) |
Adding INO to C++ file type (#596)
INO is file extension for C++ files used in Arduino sketches.
Reference: https://www.arduino.cc/en/Guide/Environment
-rw-r--r-- | languages.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/languages.toml b/languages.toml index 30ef3582..700c7565 100644 --- a/languages.toml +++ b/languages.toml @@ -64,7 +64,7 @@ indent = { tab-width = 2, unit = " " } name = "cpp" scope = "source.cpp" injection-regex = "cpp" -file-types = ["cc", "cpp", "hpp", "h"] +file-types = ["cc", "cpp", "hpp", "h", "ino"] roots = [] comment-token = "//" |