• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

修订版0c85aca8c1f482820fe3cb0911d9de789061d114 (tree)
时间2023-05-08 21:28:43
作者badcoff33 <none@none>
Commiterbadcoff33

Log Message

update

更改概述

差异

--- a/.hgignore
+++ b/.hgignore
@@ -8,6 +8,7 @@ plugins\Geany_Macros
88 plugins\spellcheck\*.exc
99 plugins\spellcheck\*.dic
1010 plugins\spellcheck\*.conf
11+plugins\updatechecker
1112 plugins\VC
1213 plugins\codenav
1314 plugins\geanygendoc
--- a/colorschemes/two_tone.conf
+++ b/colorschemes/two_tone.conf
@@ -31,9 +31,9 @@ compat=1.38
3131 black = #000000
3232 white = #FFFFFF
3333
34-blue = #2188FF
35-blue_bg = #80C0FF
36-red = #FF2382
34+blue = #2198E0
35+blue_bg = #A0D0FF
36+red = #E02362
3737 red_bg = #FF80C0
3838
3939 silver9 = #F5F5F8
@@ -55,51 +55,55 @@ error=white;red;true;false
5555 # Editor styles
5656 #-------------------------------------------------------------------------------
5757
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
6164 brace_bad=#F00;#FCC;true;false
6265 margin_line_number=#888;white;bold
6366 margin_folding=#ddd;white
6467 fold_symbol_highlight=#ccc
6568 indent_guide=#bbbebb
6669 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
7073 call_tips=#bbbebb;#fff;false;false
7174 white_space=call_tips,bold
75+indicator_error=red
7276
7377 # Programming languages
7478 #-------------------------------------------------------------------------------
7579
7680 comment=silver5
81+comment_line=comment,italic
82+comment_line_doc=comment,italic
7783 comment_doc=comment
78-comment_line=comment
79-comment_line_doc=comment_doc
8084 comment_doc_keyword=comment_doc,bold
81-comment_doc_keyword_error=comment_doc,italic
85+comment_doc_keyword_error=comment,bold
8286
83-number=#646
87+number=red
8488 number_1=number
85-number_2=number_1
89+number_2=number
8690
8791 type=red
8892 class=number
89-function=default
93+function=red
9094 parameter=function
9195
9296 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
97101
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
103107
104108 string=red
105109 string_1=string
@@ -113,7 +117,7 @@ here_doc=string_2
113117
114118 scalar=red
115119 label=default,bold
116-preprocessor=black
120+preprocessor=blue,bold
117121 regex=blue
118122 operator=default
119123 decorator=string_1,bold
--- a/filedefs/filetypes.common
+++ b/filedefs/filetypes.common
@@ -3,7 +3,7 @@
33
44 # first argument: amount of space to be drawn above the line's baseline
55 # 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;
77
88 #~# used for filetype All/None
99 #~default=default
--- /dev/null
+++ b/geany.css
@@ -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+}
--- a/keybindings.conf
+++ b/keybindings.conf
@@ -87,10 +87,10 @@ nav_forward=<Alt>Right
8787 menu_gotoline=<Primary>l
8888 edit_gotomatchingbrace=<Primary>b
8989 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
9494 edit_gotolinestart=Home
9595 edit_gotolineend=End
9696 edit_gotolinestartvisual=<Alt>Home
@@ -126,8 +126,8 @@ build_link=
126126 build_make=F7
127127 build_makeowntarget=<Shift>F7
128128 build_makeobject=
129-build_nexterror=<Alt>period
130-build_previouserror=<Alt>comma
129+build_nexterror=<Primary><Shift>n
130+build_previouserror=<Primary><Shift>p
131131 build_run=F5
132132 build_options=<Primary>F7
133133 menu_opencolorchooser=
@@ -161,10 +161,10 @@ show_panel_files=<Primary>p
161161
162162 [GeanyCtags]
163163 generate_tags=
164-find_tag=
164+find_tag=<Alt>period
165165
166166 [spellcheck]
167-spell_check=
167+spell_check=<Shift><Alt>s
168168 spell_toggle_typing=
169169
170170 [ProjectOrganizer]
@@ -248,3 +248,6 @@ Enclose_5=
248248 Enclose_6=
249249 Enclose_7=
250250 Enclose_8=
251+
252+[htmltable]
253+convert_to_table=
--- a/plugins/saveactions/saveactions.conf
+++ /dev/null
@@ -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
--- a/plugins/spellcheck/en_US.dic
+++ b/plugins/spellcheck/en_US.dic
@@ -12,3 +12,6 @@ SBC
1212 GPIO
1313 TXD
1414 Autosar
15+PWM
16+ISR
17+MCAL
--- a/snippets.conf
+++ b/snippets.conf
@@ -47,7 +47,7 @@ for=for (i = 0; i < %cursor%; i++)%block_cursor%
4747 if=if (%cursor%)%block_cursor%
4848 inc=#include "%cursor%"
4949 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%
5151
5252 [C++]
5353 blk=%block_cursor%