This package provides better support of C/C++/Objective-C languages in Sublime Text.
It is primarily focused on pure C overriding a standard syntax definition shipped with Sublime Text, though once installed it affects other C-family languages as well. Note that C Improved per se provides only the syntax definition among with some symbol indexing settings, nothing more. That is, it is not a self-sustained package, but only an addition (improvement) to the standard C++ package.
Most of C Improved features tend to facilitate everyday C development experience. This varies from enabling highlighting of operators to more complex enhancements listed below.
C preprocessor directives are relatively simple to parse (even with regular expressions, to some extent). And so related issues were addressed first of all.
Macro parameters (including variadic arguments) and argument stringification now have proper highlighting with handling of some common syntax errors.
Here is an example of two more or less complex multi-line macros.
Standard C | C Improved |
---|---|
And below is a result of commenting out a msg...
vararg (but missing a preceding comma outside the comment) and accidentally putting tabs after some line continuation backslashes.
Standard C | C Improved |
---|---|
Both errors are ignored by the standard package, while C Improved highlights a premature closing paren in the first case as an error, and warns about trailing whitespaces after the backslashes (the second one is immediately followed by an error complaining about an unexpected EOL within macro parameters). See an issue about space-after-continuation
highlighting.
A macro body (with proper line continuations, if needed) is not able to contribute to the symbol index anymore, nor it can interfere with a code surrounding the macro, or anyhow break syntax highlighting.
Standard C | C Improved |
---|---|
In this example the standard C package recognizes check_range(...)
inside a macro as a function definition though it is actually a function call.
This leads to incorrect highlighting and also adds a bogus symbol into the symbol list.
Moreover, a function declaration which follows the macro (int irq_attach(...)
) is not recognized at all.
All preprocessor directives provide a proper scope now (meta.preprocessor
), which means that you can select a whole macro with ctrl+shift+space or ⌘+⇧+space. It also allows, for instance, the whole macro body to be styled differently (this is up to a color scheme though).
The standard C package provides a special support for functions from C standard library and POSIX. For example, a printf
function is highlighted differently.
However, most of major software projects implemented in C have their own internal libraries/frameworks and use some established patterns and idioms all across their sources. This includes not only a set of commonly used functions and types; there could be a handful macro for defining some object, a special kind of function attribute/annotation, etc.
If you use Sublime Text for developing some of the following projects, you should find these improvements rather useful.
This adds a special handling of some common macros widely used across the kernel source code, like EXPORT_SYMBOL
, LIST_HEAD
or DEFINE_XXX
,
which would otherwise be recognized as functions thus polluting a symbol index and an outline.
Standard C | C Improved |
---|---|
Provides special highlighting for SAL function annotations listed here (related issue).
This includes:
- Highlighing of Python-related constants (like
PyTrue
orPyFalse
) and main data structures (PyObject
,PyTypeObject
,PyListObject
, etc.) - Widely used
PyMODINIT_FUNC
,PyAPI_FUNC(...)
andPy_LOCAL(...)
function annotation. This sanitizes higlighting of annotated functions and the symbol index - Special highlighting of
PyId_xxx
interned static string literals defined with_Py_IDENTIFIER(...)
macro - Well-marked highlighting of macros involving transfer of control (like
Py_RETURN_NONE
).
Standard C | C Improved |
---|---|
You can adjust which symbols are available for navigation and visible in a symbol index or in an outline.
The following scopes and default preferences are provided:
Scope name | Description | Outline ctrl+R |
Index (ST3) F12 ctrl+shift+R |
---|---|---|---|
entity.name.type |
compound type | visible | visible |
entity.name.type.declaration |
forward declaration of a type | visible | hidden |
entity.name.type.typedef |
type alias (typedef ) |
visible | visible |
entity.name.function |
function definition | visible | visible |
entity.name.function.declaration |
function declaration | visible | hidden |
entity.name.function.preprocessor |
function-like macro | visible | visible |
entity.name.constant.preprocessor |
object-like macro | visible | visible |
These settings can be changed through .tmPreferences
files, see Packages/C Improved/Symbol Index (*).tmPreferences
.
The standard syntax highlights recognizes #else
part after #if 1
conditional as a comment. This is a really nice feature, however it is rather fragile and has many issues, e.g. with unterminated blocks (opening/closing brace inside a preprocessor conditional).
So for sake of simplicity it was decided to remove it at all, leaving only a plain #if 0
handling, which is more or less stable and has pretty straightforward implementation.
You may however checkout a preprocessor-cond-scopes branch which doesn't have this limitation.
C can be quite complicated to parse in some parts, for example related to pointer declarations (what is t * v
? Is it a simple multiplication, or a declaration of a pointer to type t
called v
?). Needless to say, it is just impossible to parse C using regular expressions. Therefore, C Improved doesn't try to recognize variable declarations, so there is no distinct scope/highlighting for them.
Some discussion on this can be found in a related issue.
With Package Control installed:
- Open Command Palette (ctrl+shift+P or ⌘+⇧+P)
- Select Package Control: Install Package (
pkginst
) - Search for C Improved (
cimp
) package and install it
Locate Sublime Text Packages
directory (Preferences → Browse Packages...)
and clone this repository into C Improved
:
git clone https://github.com/abusalimov/SublimeCImproved.git "C Improved"
Once installed C Improved will be used instead of the standard C syntax when opening .c
and .h
files, unless you have forcibly bound these extensions to something else.
In the latter case you can rebind them to be handled by C Improved through View → Syntax → Open all with current extension as… → C Improved.
Other languages derived from C (like C++ and Objective C) don't need their syntaxes to be changed to something special:
they usually extend source.c
under the hood, which is now provided by C Improved syntax.