前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >一个用Go编写的WIP最小文本编辑器

一个用Go编写的WIP最小文本编辑器

作者头像
李海彬
发布2018-07-26 09:33:12
6520
发布2018-07-26 09:33:12
举报
文章被收录于专栏:Golang语言社区

phi

Phi is a minimal code editor designed to look pretty, run fast, and be easy to configure and use. It's primary function is for editing code.

The editor is still a work in progress. There is a chance it will eat up your battery, run quite slowly, and probably crash frequently.

**Do not edit your precious files with this editor!**

Here's a screenshot of Phi in action:

-----

goals

The editor must:

  • run fast;
  • load and edit large files with ease;
  • look pretty; and finally
  • be easy to use

non-goals

The editor probably wont:

  • have any plugin support;
  • be very customizable in terms of layout;
  • support many non utf8 encodings;
  • support non true-type-fonts;
  • support right-to-left languages;

Perhaps in the future if I have time to get round to some of these I may. Avoiding most of these is to avoid complexity in the code-base and general architecture of the editor.

why?

The editor does not exist as a serious replacement to Sublime Text/Atom/Emacs/[editor name here].

Though one of my big goals for the project is to possibly replace sublime text for my own personal use. Thus the editor is somewhat optimized for my own work-flow.

The code is up purely for people to look at and maybe use or contribute or whatever. Sharing is caring!

reporting bugs/troubleshooting

Note the editor is still unstable. Please report any bugs you find so I can squash them! It is appreciated if you skim the issue handler to make sure you aren't reporting duplicate bugs.

before filing an issue

Just to make sure it's an issue with the editor currently and not due to a broken change, please:

  • make sure the repository is up to date
  • make sure all the dependencies are updated, especially "github.com/felixangell/strife"
  • try removing the ~/.phi-config folder manually and letting the editor re-load it

building

requirements

You will need the go compiler installed with the GOPATH/GOBIN/etc setup. In addition you will need the following libraries:

  • sdl2
  • sdl2_image
  • sdl2_ttf

If you're on Linux, you will need:

  • xsel
  • xclip

Either works. This is for copying/pasting.

linux

Here's an example for Ubuntu:

代码语言:javascript
复制
1$ sudo apt-get install libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev xclip
2$ go get github.com/felixangell/phi
3$ cd $GOPATH/src/github.com/felixangell/phi
4$ go build
5$ ./phi

macOS

If you're on macOS, you can do something like this, using homebrew:

代码语言:javascript
复制
1$ brew install sdl2 sdl2_image sdl2_ttf pkg-config
2$ go get github.com/felixangell/phi
3$ cd $GOPATH/src/github.com/felixangell/phi
4$ go build
5$ ./phi

windows

Building on Windows is a bit more involved. It's the same process, though you will need a bit more software:

  • Install mingw-w64 from mingw-builds
    • Version: latest (e.g. 7.3.0);
    • Architecture: x86_64;
    • Threads: win32;
    • Exceptions: seh;
    • Build Revision: latest;
    • Destination folder: any folder your user owns, e.g. C:/Users/yourname/documents
  • Install SDL2, SDL2_img, and SDL2_ttf from here: sdl2, sdl2_image, sdl2_ttf
    • Extract these zip files;
    • Copy the x86_64-w64-mingw32 into your mingw folder specified when installing mingw-w64.
  • Add the mingw bin folder to the PATH

Once this is complete, open up a terminal and type the following:

代码语言:javascript
复制
1$ go get github.com/felixangell/phi
2$ cd $GOPATH/src/github.com/felixangell/phi
3$ go build
4$ ./phi

Note that you should run go install so that the dependencies aren't being rebuilt for faster compile times.

configuration

Configuration files are stored in $HOME/.phi-editor/config.toml. Note that this directory is created on first startup by the editor, as well as the configuration files in the 'cfg/' directory are pre-loaded dependening on platform: see 'cfg/linuxconfig.go', for example.

Below is an incomplete configuration file to give you an idea of what the config files are like:

代码语言:javascript
复制
 1[editor]
 2tab_size = 4
 3hungry_backspace = true
 4tabs_are_spaces = true
 5match_braces = false
 6maintain_indentation = true
 7highlight_line = true
 8
 9[render]
10aliased = true
11accelerated = true
12throttle_cpu_usage = true
13always_render = true
14
15[theme]
16background = 0x002649
17foreground = 0xf2f4f6
18cursor = 0xf2f4f6
19cursor_invert = 0x000000
20
21[cursor]
22flash_rate = 400
23reset_delay = 400
24draw = true
25flash = true
26
27[commands]
28[commands.save]
29shortcut = "super+s"
30
31[commands.delete_line]
32shortcut = "super+d"

2018年5月24日社区内部分享,晚上21:00 ,Go协程调度讲解 YY频道:15288615 时 间:2018年5月24日 晚上21:00

版权申明:内容来源网络,版权归原创者所有。除非无法确认,我们都会标明作者及出处,如有侵权烦请告知,我们会立即删除并表示歉意。谢谢。

本文参与 腾讯云自媒体同步曝光计划,分享自微信公众号。
原始发表:2018-05-24,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 Golang语言社区 微信公众号,前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • goals
    • non-goals
    • why?
    • reporting bugs/troubleshooting
      • before filing an issue
      • building
        • requirements
          • linux
          • macOS
          • windows
        • configuration
        领券
        问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档