Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e9b9ac commit 415f5e1Copy full SHA for 415f5e1
src/tools/editors/emacs.samples
@@ -28,6 +28,7 @@
28
(setq-default tab-width 4)
29
(c-set-style "bsd") ; set c-basic-offset to 4, plus other stuff
30
(c-set-offset 'case-label '+) ; tweak case indent to match PG custom
31
+ (setq fill-column 79) ; matches what pgindent does
32
(setq indent-tabs-mode t)) ; make sure we keep tabs when indenting
33
34
@@ -38,6 +39,7 @@
38
39
40
(c-add-style "pgsql"
41
'("bsd"
42
+ (fill-column . 79)
43
(indent-tabs-mode . t)
44
(c-basic-offset . 4)
45
(tab-width . 4)
@@ -71,6 +73,7 @@
71
73
(setq c-basic-offset 4)
72
74
(setq tab-width 4)
75
(c-set-offset 'case-label '+)
76
+ (setq fill-column 79)
77
(setq indent-tabs-mode t)
78
)
79
))))
0 commit comments