Skip to content

Commit

Permalink
added "ino" extension mapping to c++ file type, to work with Arduino …
Browse files Browse the repository at this point in the history
…sketch sources
  • Loading branch information
nicity committed Dec 14, 2014
1 parent 272d104 commit 81a7cae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/com/advancedtools/cpp/CppSupportLoader.java
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,10 @@ public class CppSupportLoader implements ProjectComponent, JDOMExternalizable {
public static final @NonNls String CC_EXTENSION = "cc";
public static final @NonNls String C_EXTENSION = "c";
public static final @NonNls String H_EXTENSION = "h";
public static final @NonNls String INO_EXTENSION = "ino";
private static Key<DocumentListener> ourListenerKey = Key.create("cpp.document.listener");

public static final String[] extensions = new String[]{CPP_EXTENSION, CC_EXTENSION, C_EXTENSION, H_EXTENSION, HPP_EXTENSION, TCC_EXTENSION, INL_EXTENSION, HI_EXTENSION, INC_EXTENSION, HXX_EXTENSION};
public static final String[] extensions = new String[]{CPP_EXTENSION, CC_EXTENSION, C_EXTENSION, INO_EXTENSION, H_EXTENSION, HPP_EXTENSION, TCC_EXTENSION, INL_EXTENSION, HI_EXTENSION, INC_EXTENSION, HXX_EXTENSION};

private Project project;
private DocumentListener myDocumentListener;
Expand Down

0 comments on commit 81a7cae

Please sign in to comment.