Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/febelery/go-practice

practice
https://github.com/febelery/go-practice

epoll gin go grpc practice protobuf tcp

Last synced: about 2 months ago
JSON representation

practice

Awesome Lists containing this project

README

        

# go practice

# 资源
- https://books.studygolang.com/The-Golang-Standard-Library-by-Example/
- https://github.com/the-benchmarker/web-frameworks
- https://github.com/derekparker/delve
- https://studygolang.com/pkgdoc
- https://github.com/astaxie/build-web-application-with-golang/blob/master/zh/preface.md
- https://github.com/StefanSchroeder/Golang-Regex-Tutorial (regex)
- https://studygolang.com/pkgdoc

# 快捷键
## 文件相关快捷键:
CTRL+E,打开最近浏览过的文件。

CTRL+SHIFT+E,打开最近更改的文件。

CTRL+N,可以快速打开struct结构体。

CTRL+SHIFT+N,可以快速打开文件。

## 代码格式化:
CTRL+ALT+T,可以把代码包在一个块内,例如if{…}else{…}。

CTRL+ALT+L,格式化代码。

CTRL+空格,代码提示。

CTRL+/,单行注释。CTRL+SHIFT+/,进行多行注释。

CTRL+B,快速打开光标处的结构体或方法(跳转到定义处)。

CTRL+“+/-”,可以将当前方法进行展开或折叠。

## 查找和定位
CTRL+R,替换文本。

CTRL+F,查找文本。

CTRL+SHIFT+F,进行全局查找。

CTRL+G,快速定位到某行。

## 代码编辑
ALT+Q,可以看到当前方法的声明。

CTRL+Backspace,按单词进行删除。

SHIFT+ENTER,可以向下插入新行,即使光标在当前行的中间。

CTRL+X,删除当前光标所在行。

CTRL+D,复制当前光标所在行。

ALT+SHIFT+UP/DOWN,可以将光标所在行的代码上下移动。

CTRL+SHIFT+U,可以将选中内容进行大小写转化。

CTRL+SHIFT+SPACE,自动补全代码

ALT+ENTER 检查并修复

CTRL+O,实现接口的所有方法

## 界面切换
ALT+1,打开/关闭Project窗口

ALT+2,打开/关闭Favorites窗口

ALT+7,打开文件方法列表

## command
```bash
go run crawler_distributed/main.go --itemsaver_host=":1234" --worker_hosts=":9000,:9001"
```