二号机
Blogroll
Links
Search
Recent Comments
- csslayer on How to make your application support Input method under Linux
- Sławomir Lach on How to make your application support Input method under Linux
- Links 06/01/2023: GNOME 44 Schedule is Ready | Techrights on How to make your application support Input method under Linux
- jack on Unlimited Code Works
- Firo on Use multiple input method in different window.
Tags
acfun amarok android archlinux ati blogbus c++ cmake dbus fcitx fcitx4 fcitx5 fedora feeling git gnome gtk ibus icecast input method KDE kde4 kde4.5 keyboard layout kimpanel kwin libime Linux mpd nginx opensource opensuse planetkde plasma qt sunpinyin ubuntu vim wayland Wordpress x11 个人Linux唠叨 做饭 歌词 追漫笔记Categories
Archives
Tag Archives: ctags
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