Sublime Text 3 - Autocomplete of headers in directory

3

After unsuccessful search for a sublime text 3 plugin, I've come to you for help.

I need to recognize the libs installed on the system, so I'm looking for a plugin capable of delivering an autocompletion at the time of #include of the headers (eg # include

asked by anonymous 13.10.2016 / 21:35

1 answer

2

EasyClangComplete

Autocomplete plugin for C ++ language. You will find what you want in the include_dirs setting that will search for external libraries such as Boost , Ros , Eigen , OpenCV , etc.

Where clang should look for libraries:

    "include_dirs" : [
                        "/usr/include",
                        "$project_base_path/src",
                        "/workspace/$project_name/src",
                        "/usr/lib/clang/3.8/include"  // example for Ubuntu 16.04
],

Here you can configure.

Without further ado, go to the plugin page on Github and download it for testing.

    
15.10.2016 / 17:33