summaryrefslogtreecommitdiff
path: root/doc/coding-style.asciidoc
blob: b6e126ef4d8c90fbd1337c3ad19523ba9f2f5ef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
C++ Coding Style
================

Kakoune is written in C++11, here are the main coding style points:

 * Avoid external dependencies besides posix/stdc++/ncurses

   - That means avoid depending on boost, it is only allowed for regex
     support until stdc++ regex are more widely available.

 * 4 spaces for indentation, no tabs

 * public interface before private methods/data when defining a class

 * use +override+ keyword for overriden virtual methods

 * opening brackets on their own lines by default, except when declaring
   an object where the opening bracket follows the equal sign.

-----
int func()
{
    if (condition)
    {
        ...
    }
    else
        statement;
}

int array[] = {
...
};
-----

 * End lines with an operator when continuing on the next line

----
if (condition1 ||
    condition2)
----

 * Try to keep under 80 columns, even though this is not a strict limit.

 * CamelCase for types, snake_case for variables/function names

 * prefix fields with m_, static ones with ms_ except for dumb structs
   (struct with every field public) where these prefixes can be dropped.

 * use const and constexpr liberally

Kakrc coding style
==================

 * kak scripts can depend on tools that can be reasonable expected for
   their use context:

   - mime.kak which handles file type detection uses the +file+ command
     which is deemed ubiquitous enough.

   - clang.kak provides c++ completion using clang,

 * It is better to keep kak scripts POSIX. Consider %sh{...} blocks
   as executed by a POSIX shell. Avoid non posix extensions to common
   tools.

 * Avoid too much comlexity/logic in kak scripts. They are not meant
   to implement generic tools, only to transform a general tool output
   to Kakoune commands.

   - Write generic, editor independent tools as a separate project,
     Add kakoune support as a kak script.