リビジョン | 0c85aca8c1f482820fe3cb0911d9de789061d114 (tree) |
---|---|
日時 | 2023-05-08 21:28:43 |
作者 | badcoff33 <none@none> |
コミッター | badcoff33 |
update
@@ -8,6 +8,7 @@ plugins\Geany_Macros | ||
8 | 8 | plugins\spellcheck\*.exc |
9 | 9 | plugins\spellcheck\*.dic |
10 | 10 | plugins\spellcheck\*.conf |
11 | +plugins\updatechecker | |
11 | 12 | plugins\VC |
12 | 13 | plugins\codenav |
13 | 14 | plugins\geanygendoc |
@@ -31,9 +31,9 @@ compat=1.38 | ||
31 | 31 | black = #000000 |
32 | 32 | white = #FFFFFF |
33 | 33 | |
34 | -blue = #2188FF | |
35 | -blue_bg = #80C0FF | |
36 | -red = #FF2382 | |
34 | +blue = #2198E0 | |
35 | +blue_bg = #A0D0FF | |
36 | +red = #E02362 | |
37 | 37 | red_bg = #FF80C0 |
38 | 38 | |
39 | 39 | silver9 = #F5F5F8 |
@@ -55,51 +55,55 @@ error=white;red;true;false | ||
55 | 55 | # Editor styles |
56 | 56 | #------------------------------------------------------------------------------- |
57 | 57 | |
58 | -selection=#000;#9ce;true;true | |
59 | -current_line=#000;silver9;true | |
60 | -brace_good=#000;#DDD;false;false | |
58 | +selection=black;silver8;true;true | |
59 | + | |
60 | +# set third parameter to disable (false) "current_line" | |
61 | +current_line=#000;silver9;false | |
62 | + | |
63 | +brace_good=#000;#EEE;false;false | |
61 | 64 | brace_bad=#F00;#FCC;true;false |
62 | 65 | margin_line_number=#888;white;bold |
63 | 66 | margin_folding=#ddd;white |
64 | 67 | fold_symbol_highlight=#ccc |
65 | 68 | indent_guide=#bbbebb |
66 | 69 | caret=#000;#000;false |
67 | -marker_line=#000;#ff0 | |
68 | -marker_search=marker_line | |
69 | -marker_mark=#000;#6c8ea2 | |
70 | +marker_line=#000;#ddd | |
71 | +marker_search=#000;#0ff | |
72 | +marker_mark=#000;#cfc | |
70 | 73 | call_tips=#bbbebb;#fff;false;false |
71 | 74 | white_space=call_tips,bold |
75 | +indicator_error=red | |
72 | 76 | |
73 | 77 | # Programming languages |
74 | 78 | #------------------------------------------------------------------------------- |
75 | 79 | |
76 | 80 | comment=silver5 |
81 | +comment_line=comment,italic | |
82 | +comment_line_doc=comment,italic | |
77 | 83 | comment_doc=comment |
78 | -comment_line=comment | |
79 | -comment_line_doc=comment_doc | |
80 | 84 | comment_doc_keyword=comment_doc,bold |
81 | -comment_doc_keyword_error=comment_doc,italic | |
85 | +comment_doc_keyword_error=comment,bold | |
82 | 86 | |
83 | -number=#646 | |
87 | +number=red | |
84 | 88 | number_1=number |
85 | -number_2=number_1 | |
89 | +number_2=number | |
86 | 90 | |
87 | 91 | type=red |
88 | 92 | class=number |
89 | -function=default | |
93 | +function=red | |
90 | 94 | parameter=function |
91 | 95 | |
92 | 96 | keyword=blue |
93 | -keyword_1=blue | |
94 | -keyword_2=blue | |
95 | -keyword_3=keyword_1 | |
96 | -keyword_4=keyword_1 | |
97 | +keyword_1=keyword,bold | |
98 | +keyword_2=keyword,italic | |
99 | +keyword_3=keyword | |
100 | +keyword_4=keyword | |
97 | 101 | |
98 | -identifier=silver1 | |
99 | -identifier_1=silver0 | |
100 | -identifier_2=identifier_1 | |
101 | -identifier_3=identifier_1 | |
102 | -identifier_4=silver2 | |
102 | +identifier=silver2 | |
103 | +identifier_1=identifier | |
104 | +identifier_2=identifier | |
105 | +identifier_3=identifier | |
106 | +identifier_4=identifier | |
103 | 107 | |
104 | 108 | string=red |
105 | 109 | string_1=string |
@@ -113,7 +117,7 @@ here_doc=string_2 | ||
113 | 117 | |
114 | 118 | scalar=red |
115 | 119 | label=default,bold |
116 | -preprocessor=black | |
120 | +preprocessor=blue,bold | |
117 | 121 | regex=blue |
118 | 122 | operator=default |
119 | 123 | decorator=string_1,bold |
@@ -3,7 +3,7 @@ | ||
3 | 3 | |
4 | 4 | # first argument: amount of space to be drawn above the line's baseline |
5 | 5 | # second argument: amount of space to be drawn below the line's baseline |
6 | -line_height=2;2;false;false; | |
6 | +line_height=1;1;false;false; | |
7 | 7 | |
8 | 8 | #~# used for filetype All/None |
9 | 9 | #~default=default |
@@ -0,0 +1,55 @@ | ||
1 | + /* custom GTK3 CSS for Geany */ | |
2 | + | |
3 | +/* make close button on the editor's tabs smaller */ | |
4 | +#geany-close-tab-button { | |
5 | + padding: 0; | |
6 | +} | |
7 | +#geany-close-tab-button GtkImage /* GTK < 3.20 */, | |
8 | +#geany-close-tab-button image /* GTK >= 3.20 */ { | |
9 | + padding: 0; | |
10 | +} | |
11 | + | |
12 | +/* use monospaced font in search entries for easier reading of regexp (#1907117) */ | |
13 | +#GeanyDialogSearch GtkEntry /* GTK < 3.20 */, | |
14 | +#GeanyDialogSearch entry /* GTK >= 3.20 */ { | |
15 | + font-family: monospace; | |
16 | +} | |
17 | + | |
18 | +/* set red background for GtkEntries showing unmatched searches */ | |
19 | +#geany-search-entry-no-match { | |
20 | + color: #fff; | |
21 | + background: #ff6666; | |
22 | +} | |
23 | +#geany-search-entry-no-match:selected /* GTK < 3.20 */, | |
24 | +#geany-search-entry-no-match selection /* GTK >= 3.20 */ { | |
25 | + color: #fff; | |
26 | + background-color: #771111; | |
27 | +} | |
28 | + | |
29 | +/* document status colors */ | |
30 | +#geany-document-status-changed { | |
31 | + color: #ff0000; | |
32 | +} | |
33 | +#geany-document-status-disk-changed { | |
34 | + color: #ff7f00; | |
35 | +} | |
36 | +#geany-document-status-readonly { | |
37 | + color: #007f00; | |
38 | +} | |
39 | + | |
40 | +/* compiler message colors */ | |
41 | +#geany-compiler-error { | |
42 | + color: #ff0000; | |
43 | + background-color: #771111; | |
44 | +} | |
45 | +#geany-compiler-context { | |
46 | + color: #7f0000; | |
47 | +} | |
48 | +#geany-compiler-message { | |
49 | + color: #0000D0; | |
50 | +} | |
51 | + | |
52 | +/* red "Terminal" label when terminal dirty */ | |
53 | +#geany-terminal-dirty { | |
54 | + color: #ff0000; | |
55 | +} |
@@ -87,10 +87,10 @@ nav_forward=<Alt>Right | ||
87 | 87 | menu_gotoline=<Primary>l |
88 | 88 | edit_gotomatchingbrace=<Primary>b |
89 | 89 | edit_togglemarker=<Primary>m |
90 | -edit_gotonextmarker=<Primary>period | |
91 | -edit_gotopreviousmarker=<Primary>comma | |
92 | -popup_gototagdefinition=F12 | |
93 | -popup_gototagdeclaration=<Shift>F12 | |
90 | +edit_gotonextmarker=<Primary>adiaeresis | |
91 | +edit_gotopreviousmarker=<Primary>odiaeresis | |
92 | +popup_gototagdefinition=<Primary>period | |
93 | +popup_gototagdeclaration=<Primary><Shift>colon | |
94 | 94 | edit_gotolinestart=Home |
95 | 95 | edit_gotolineend=End |
96 | 96 | edit_gotolinestartvisual=<Alt>Home |
@@ -126,8 +126,8 @@ build_link= | ||
126 | 126 | build_make=F7 |
127 | 127 | build_makeowntarget=<Shift>F7 |
128 | 128 | build_makeobject= |
129 | -build_nexterror=<Alt>period | |
130 | -build_previouserror=<Alt>comma | |
129 | +build_nexterror=<Primary><Shift>n | |
130 | +build_previouserror=<Primary><Shift>p | |
131 | 131 | build_run=F5 |
132 | 132 | build_options=<Primary>F7 |
133 | 133 | menu_opencolorchooser= |
@@ -161,10 +161,10 @@ show_panel_files=<Primary>p | ||
161 | 161 | |
162 | 162 | [GeanyCtags] |
163 | 163 | generate_tags= |
164 | -find_tag= | |
164 | +find_tag=<Alt>period | |
165 | 165 | |
166 | 166 | [spellcheck] |
167 | -spell_check= | |
167 | +spell_check=<Shift><Alt>s | |
168 | 168 | spell_toggle_typing= |
169 | 169 | |
170 | 170 | [ProjectOrganizer] |
@@ -248,3 +248,6 @@ Enclose_5= | ||
248 | 248 | Enclose_6= |
249 | 249 | Enclose_7= |
250 | 250 | Enclose_8= |
251 | + | |
252 | +[htmltable] | |
253 | +convert_to_table= |
@@ -1,17 +0,0 @@ | ||
1 | -[saveactions] | |
2 | -enable_autosave=false | |
3 | -enable_autosave_losing_focus=true | |
4 | -enable_instantsave=false | |
5 | -enable_backupcopy=false | |
6 | - | |
7 | -[autosave] | |
8 | -print_messages=false | |
9 | -save_all=false | |
10 | -interval=300 | |
11 | - | |
12 | -[instantsave] | |
13 | -default_ft=None | |
14 | - | |
15 | -[backupcopy] | |
16 | -dir_levels=0 | |
17 | -time_fmt=%Y-%m-%d-%H-%M-%S |
@@ -12,3 +12,6 @@ SBC | ||
12 | 12 | GPIO |
13 | 13 | TXD |
14 | 14 | Autosar |
15 | +PWM | |
16 | +ISR | |
17 | +MCAL |
@@ -47,7 +47,7 @@ for=for (i = 0; i < %cursor%; i++)%block_cursor% | ||
47 | 47 | if=if (%cursor%)%block_cursor% |
48 | 48 | inc=#include "%cursor%" |
49 | 49 | while=while (%cursor%)%block_cursor% |
50 | -switch=switch (%cursor%)%brace_open%case %cursor%:\n\t\t%cursor%\n\t\tbreak;\n\tdefault:\n\t\t%cursor%\n%brace_close% | |
50 | +switch=switch (%cursor%)%brace_open%case %cursor%:\n\t\t%cursor%\n\t\tbreak;\n\tdefault:\n\t\t%cursor%\n\tbreak;\n%brace_close% | |
51 | 51 | |
52 | 52 | [C++] |
53 | 53 | blk=%block_cursor% |