主頁 > 知識(shí)庫 > Goland編輯器設(shè)置選擇范圍背景色的操作

Goland編輯器設(shè)置選擇范圍背景色的操作

熱門標(biāo)簽:官渡電銷外呼管理系統(tǒng)怎么收費(fèi) 400開頭電話怎樣申請(qǐng) 地圖區(qū)域圖標(biāo)注后導(dǎo)出 赤峰電銷 江蘇呼叫中心外呼系統(tǒng)有效果嗎 貴州電話智能外呼系統(tǒng) 利用地圖標(biāo)注位置 杭州人工智能電銷機(jī)器人費(fèi)用 谷歌美發(fā)店地圖標(biāo)注

為了區(qū)分選擇與未選擇區(qū)域,,將已選擇區(qū)域的文本背景色設(shè)置為淺藍(lán)色是個(gè)很做法。

設(shè)置的路徑在 Editor > Color Scheme > General > Editor > Selection background 下面以2018版的Goland為例,如圖:

JetBrains出品的如phpStorm和webStorm等的設(shè)置也基本如此。

補(bǔ)充:Go語言:控制臺(tái)輸出有顏色的字

本方法只限用于 Windows系統(tǒng)

應(yīng)用場景

需要輸出大量信息的運(yùn)行日志(一般是服務(wù)器,Windows系統(tǒng)的)

某類客戶端的調(diào)試界面(一般是游戲,特別是有第三方模組的)

代碼示例

package main 
import (
 "syscall"
) 
var (
 kernel32 *syscall.LazyDLL = syscall.NewLazyDLL(`kernel32.dll`)
 proc  *syscall.LazyProc = kernel32.NewProc(`SetConsoleTextAttribute`)
 CloseHandle *syscall.LazyProc = kernel32.NewProc(`CloseHandle`)
 
 // 給字體顏色對(duì)象賦值
 FontColor Color = Color{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}
) 
type Color struct {
 black  int // 黑色
 blue   int // 藍(lán)色
 green  int // 綠色
 cyan   int // 青色
 red   int // 紅色
 purple  int // 紫色
 yellow  int // 黃色
 light_gray int // 淡灰色(系統(tǒng)默認(rèn)值)
 gray   int // 灰色
 light_blue int // 亮藍(lán)色
 light_green int // 亮綠色
 light_cyan int // 亮青色
 light_red int // 亮紅色
 light_purple int // 亮紫色
 light_yellow int // 亮黃色
 white  int // 白色
} 
// 輸出有顏色的字體
func ColorPrint(s string, i int) {
 handle, _, _ := proc.Call(uintptr(syscall.Stdout), uintptr(i))
 print(s)
 CloseHandle.Call(handle)
} 
func main() {
 ColorPrint(`紅色`, FontColor.red)
 ColorPrint(`藍(lán)色`, FontColor.blue)
 ColorPrint(`白色`, FontColor.white)
}

以上為個(gè)人經(jīng)驗(yàn),希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教。

您可能感興趣的文章:
  • Goland調(diào)節(jié)字體大小的設(shè)置(編輯區(qū),terminal區(qū),頁面字體)
  • goland設(shè)置控制臺(tái)折疊效果
  • GoLand如何設(shè)置中文
  • goland 設(shè)置注釋模板的過程圖文詳解
  • goland 清除所有的默認(rèn)設(shè)置操作

標(biāo)簽:宜春 松原 鷹潭 保定 黔西 泰安 武漢 河池

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Goland編輯器設(shè)置選擇范圍背景色的操作》,本文關(guān)鍵詞  Goland,編輯器,設(shè)置,選擇,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Goland編輯器設(shè)置選擇范圍背景色的操作》相關(guān)的同類信息!
  • 本頁收集關(guān)于Goland編輯器設(shè)置選擇范圍背景色的操作的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章