Skip to content

Commit

Permalink
feat: support more file extensions
Browse files Browse the repository at this point in the history
fixes #1
  • Loading branch information
ryanolsonx committed Mar 14, 2019
1 parent c28c08e commit 0ee2f24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class SourceKitLanguageClient extends AutoLanguageClient {
}

startServerProcess() {
this.supportedExtensions = ['*.c', '*.m', '*.cpp', '*.h', '*.swift'];
this.supportedExtensions = ['*.c', '*.m', '*.cpp', '*.hh', '*.cc', '*.hpp', '*.h', '*.swift'];

const sourceKitServerPath = atom.config.get('ide-sourcekit.sourceKitServer.path');
console.log('sourceKitServerPath', sourceKitServerPath);
Expand Down

0 comments on commit 0ee2f24

Please sign in to comment.