Fcitx
来和我签订契约,成为fcitx开发者吧!
Fcitx的bug请到 https://github.com/fcitx/
Fcitx使用的讨论请到 https://groups.google.com/group/fcitx
Fcitx开发的讨论请到 https://groups.google.com/group/fcitx-devSearch
Recent Comments
- 构建一个给 WPS 用的 fcitx im module | CS Slayer on A case study: how to compile a Fcitx platforminputcontext plugin for a proprietary software that uses Qt 5
- marguerite on 如何现在就在 Arch Linux 用上 Fcitx 5
- angelbeats on About
- Gentoo安装Fcitx 5 – 清风的网络空间 on 如何现在就在 Arch Linux 用上 Fcitx 5
- Ueno on 当你 Debug 一门过气语言生成的代码里面产生的 memory leak 时会发生什么 (a.k.a. 不要修改 vala 返回的 strv 的 length)
Tags
Blogroll
Links
Categories
Archives
Tag Archives: vim
Vim Powerline
这个是个好东西……主要是好看,实用上暂时还没觉出啥。 配置也很简单,主要需要以下内容: “256 colorlet t_Co=256 “recommend for powerlineset nocompatibleset laststatus=2set encoding=utf-8 “choose themelet g:Powerline_symbols = ‘unicode’let g:Powerline_colorscheme = ‘skwp’ 使用konsole的话建议修改配置中的关于环境的设置,TERM=xterm-256color,否则颜色是出不来的。 另外就是如果symbol想使用fancy的话,需要给字体打补丁,在powerline的目录下面有个fontpatcher,执行 ./fontpatcher path-to.ttf 然后把生成的ttf安装到你系统上(复制到 ~/.fonts/)。(这个脚本是python2的,如果你用arch的话你知道你要做什么……) =-=-=-=-=Powered by Blogilo
vim项目配置
http://easwy.com/blog/archives/advanced-vim-skills-save-project-configuration/
Vim + Ctags 更新
由于开发时常常使用Ctags进行跳转查询,因此特意写了一个函数用于更新ctags 代码: “递归查询父文件夹的tags文件,这样在项目的那个文件夹当中就都可以访问同一个tags文件了 set tags=tags; “更新ctags,找寻父文件夹原有tags文件 function UpdateCtags() let curdir=getcwd() while !filereadable(“./tags”) cd .. if getcwd() == “/” break endif endwhile if filewritable(“./tags”) !ctags -R –c++-types=+px –excmd=pattern –exclude=Makefile –exclude=. endif execute “:cd ” . … Continue reading