編譯的顏色
『壹』 SciTE編譯器背景顏色配置,該怎麼處理
Menu -> Options -> Open User Options File
添加一段類似下面的代碼:
#Default
style.python.32=$(stdstyle.default),back:#333333
# White space: Visible only in View Whitespace mode (or if it has a back colour)
style.python.0=$(stdstyle.whitespace),back:#333333
# Block comment (Lua 5.0)
style.python.1=$(luastyle.blockcomment1),fore:#87CEEB,back:#333333
# Line comment
style.python.2=$(stdstyle.eolcomment1),fore:#87CEEB,back:#333333
# Doc comment -- Not used in Lua (yet )
style.python.3=$(stdstyle.doccomment1),fore:#87CEEB,back:#333333
# Number
style.python.4=$(stdstyle.number1),back:#333333,fore:#FFA0A0
# Keyword
style.python.5=$(stdstyle.keyword1),back:#333333,fore:#F0E68C
# (Double quoted) String
style.python.6=$(stdstyle.string1),back:#333333,fore:#FFA0A0
# Character (Single quoted string)
style.python.7=$(stdstyle.string1),back:#333333,fore:#FFA0A0
# Literal string
style.python.8=$(luastyle.mlstring1),back:#333333,fore:#FFA0A0
# Preprocessor (obsolete in Lua 4.0 and up)
style.python.9=$(stdstyle.preprocessor1),back:#333333,fore:#FFA0A0
# Operators
style.python.10=$(stdstyle.operator1),back:#333333,fore:#FFFFFF
# Identifier (everything else...)
style.python.11=$(stdstyle.default),back:#333333,fore:#FFFFFF
# End of line where string is not closed
style.python.12=$(stdstyle.stringerror)
# Other keywords (bozo test colors, but toned down ;)
style.python.13=$(stdstyle.keyword2),back:#333333,fore:#F0E68C
style.python.14=$(stdstyle.keyword3),back:#333333,fore:#F0E68C
style.python.15=$(stdstyle.keyword4),back:#333333,fore:#F0E68C
style.python.16=$(stdstyle.keyword2),back:#333333,fore:#F0E68C
style.python.17=$(stdstyle.keyword3),back:#333333,fore:#F0E68C
style.python.18=$(stdstyle.keyword4),back:#333333,fore:#F0E68C
style.python.19=$(stdstyle.keyword2),back:#333333,fore:#F0E68C
# Braces are only matched in operator style
braces.lua.style=10
『貳』 請問編譯環境的字體顏色怎麼調的
用用的devc++和sublimetext。sublimetext很好看的,這張圖裡面應該是devC++的自帶的高亮方案
很多都可以調的。前面的圖是sublime,後面的是dev
『叄』 如何自定義C++編譯器關鍵字的顏色
.NET 中:工具->選項->環境->字體和顏色->
顯示其設置=文本編輯器
顯示項=關鍵字
項目前景色=你設定的顏色
『肆』 java編譯器中背景顏色怎麼弄
你好!
我用的是MyEclipse,如果你用的是Eclipse的話在差不多的位置找一下就好了。
Window(菜單欄)
-->
Preferences(最下面)
-->
MyEclipse(左半邊第五個)
-->
Files
and
Editors
-->
Common
Editor
Preferences;
然後右邊有五個可以更改顏色的選項,可以改的都在那兒了。
希望可以幫到你。。。O(∩_∩)O
『伍』 C#:怎麼配置文本編譯器中字體的顏色
選擇文本編輯器,顯示項為純文本,顏色改成藍色
『陸』 MDK或KEIL怎麼設置條件編譯時的背景顏色
Edit -> Configuration -> Colors & Fints 這里可以設置字體 背景色 關鍵字等的顏色。
Keil介紹、下載、安裝與注冊:
http://blog.csdn.net/ybhuangfugui/article/details/51501781
Keil的使用方法(匯總):
http://www.cnblogs.com/strongerHuang/p/5839141.html
『柒』 怎樣改變C編譯器的背景顏色
直接更改程序輸出框的屬性
『捌』 vim C語言條件編譯的顏色配置問題
這是相當於注釋的,vim的默認主題就是這種顏色配置,你把 #ifdef AAA 換成 #if 0 就可以看到了。如果你vim配置了顏色的話,如果沒有配置就在任意目錄下輸入 vim ~/.vimrc在其中加入set background=dark "設置背景色