ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Clang​Auto​Complete

by pl-ca ST3

Sublime Text 3 plugin that offers auto-completion of C/C++ structure members or class attributes and methods.

Labels Clang, Completion, C, C++

Details

Installs

  • Total 46K
  • Win 19K
  • Mac 8K
  • Linux 19K
May 13 May 12 May 11 May 10 May 9 May 8 May 7 May 6 May 5 May 4 May 3 May 2 May 1 Apr 30 Apr 29 Apr 28 Apr 27 Apr 26 Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29
Windows 0 0 1 1 1 3 0 1 0 2 1 2 0 0 1 1 0 1 2 4 0 0 2 0 0 4 2 2 2 4 0 2 2 3 0 3 1 4 1 4 3 3 2 1 0 3
Mac 2 0 0 0 0 0 0 2 1 0 0 0 0 0 1 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 2 2 1 1 0 0 3 1 3 2 1 1 1 0 3 1 0 1 1 2 3 0 0 3 1 1 0 0 3 3 3 1 0 3 1 0 1 1 2 2 3 1 0 3 1 1

Readme

Source
raw.​githubusercontent.​com

ClangAutoComplete

Sublime Text 3 plugin that offers auto-completion of C/C++ structure members or class attributes and methods.

This plug-in is still maintained, but not very actively. I recommend to consider EasyClangComplete for more features and frequent updates.

Example

Installation

  1. Install “clang”. Note that some people reported issue with clang 3.5.2 when compiled from Cygwin. If you are facing issues on Windows, try to download directly from the official clang website.
  2. Install from Package Control, or clone this repository and put it in your Sublime's packages directory to install from git.
  3. Edit the settings to your needs (in menu Preferences/Package Settings/ClaugAutoComplete/Settings).

Troubleshooting

If completion does not work, it is almost always because of a problem with the include_dirs settings.

  1. Set the debug settings to "true" and attempt completion. An output panel will appear containing the result of the process. For it to work, there has to be lines starting with COMPLETION:. If you see any error like #include <file>: file not found, you need to add the path to that file in the include_dirs settings.

  2. The standard header files should automatically be located, but if nothing works, you should try to manually add them. Here is what it could look like

"include_dirs" : [
              "/usr/include/c++/4.4.7/",                      /* Where you find iostream, vector, etc. */
              "/usr/lib/clang/3.4.2/include",                 /* stdbool, etc */
              "/usr/include/c++/4.4.4/x86_64-redhat-linux/",  /* bits folder */
              "/usr/include",

If you can't find the equivalent path try to search your system to find those key files and add the paths, i.e.

sudo find / -name "iostream"
sudo find / -name "stdbool.h"
sudo find / -name "c++config.h"
  1. Make sure Sublime's own auto-complete settings are properly configured, I've had trouble with mine. Here is my C.sublime-settings as an example

    {
            "auto_complete": true,
            "auto_complete_selector": "source - comment",
            "auto_complete_triggers":
            [
                    {
                            "characters": "."
                    },
                    {
                            "characters": ">"
                    },
            ],
            "extensions":
            [
                    "c",
                    "h"
            ]
    }
    

Settings

  • include_dirs: List of directories where relevant header files are located
  • autocomplete_all: Trigger auto-completion on every keypress (will slow down sublime)
  • selectors: List of characters that will trigger auto-completion ( if “autocomplete_all” is set to “false” )
  • clang_binary: Location of clang binary (if it is not in the path)
  • You can copy the whole settings file under your project base folder named as “.clangautocomplete” to have the plugin load those instead of the general settings.
  • debug and verbose: Set to true to help understand what is going wrong (if completion is not working)

Recommended plugins for C development

Here are some useful plugins I use alongside ClangAutoComplete to have a more complete experience. - CTags: Code navigation, goto definition - SublimeLinter and SublimeLinter-contrib-clang: Errors and warnings highlights.

License

The MIT License Copyright © 2016 Pierre-Louis Caron-Auger

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.