*c3.txt*      For Vim version 9.0.      Last change: 2024 May 15

C3 LANGUAGE SUPPORT                                             *c3*

INTRODUCTION                                                    *c3-intro*

This plugin provides syntax highlighting, filetype detection, 
and compiler support for the C3 programming language.

FEATURES                                                        *c3-features*

- Filetype detection (*.c3)
- Syntax highlighting
- Indentation (C-style)
- Compiler integration (:compiler c3c)
- Basic buffer-local settings

USAGE                                                           *c3-usage*

The plugin automatically detects .c3 files and sets the filetype to 'c3'.

COMPILER SUPPORT                                                *c3-compiler*

To use the compiler integration, run:
>
    :compiler c3c
    :make
<
This sets 'makeprg' to 'c3c' and configures the 'errorformat' to 
properly parse C3 compiler errors.

SETTINGS                                                        *c3-settings*

The plugin sets the following buffer-local options for C3 files:

- 'shiftwidth' to 4
- 'tabstop' to 4
- 'softtabstop' to 4
- 'expandtab'
- 'commentstring' to // %s

vim:tw=78:ts=8:ft=help:norl:
