mirror of
https://github.com/Hopiu/micro.git
synced 2026-05-08 23:04:43 +00:00
chore: remove repetitive words (#3205)
Signed-off-by: occupyhabit <wangmengjiao@outlook.com>
This commit is contained in:
parent
a57d29ada9
commit
8b4e9d2c5e
2 changed files with 2 additions and 2 deletions
|
|
@ -57,7 +57,7 @@ var (
|
||||||
BTLog = BufType{2, true, true, false}
|
BTLog = BufType{2, true, true, false}
|
||||||
// BTScratch is a buffer that cannot be saved (for scratch work)
|
// BTScratch is a buffer that cannot be saved (for scratch work)
|
||||||
BTScratch = BufType{3, false, true, false}
|
BTScratch = BufType{3, false, true, false}
|
||||||
// BTRaw is is a buffer that shows raw terminal events
|
// BTRaw is a buffer that shows raw terminal events
|
||||||
BTRaw = BufType{4, false, true, false}
|
BTRaw = BufType{4, false, true, false}
|
||||||
// BTInfo is a buffer for inputting information
|
// BTInfo is a buffer for inputting information
|
||||||
BTInfo = BufType{5, false, true, false}
|
BTInfo = BufType{5, false, true, false}
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ syntax files that you would like to convert to the new filetype, you can use the
|
||||||
$ go run syntax_converter.go c.micro > c.yaml
|
$ go run syntax_converter.go c.micro > c.yaml
|
||||||
```
|
```
|
||||||
|
|
||||||
Most the the syntax files here have been converted using that tool.
|
Most the syntax files here have been converted using that tool.
|
||||||
|
|
||||||
Note that the tool isn't perfect and though it is unlikely, you may run into some small issues that you will have to fix manually
|
Note that the tool isn't perfect and though it is unlikely, you may run into some small issues that you will have to fix manually
|
||||||
(about 4 files from this directory had issues after being converted).
|
(about 4 files from this directory had issues after being converted).
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue