首页 服务器系统 Linux

Ubuntu15.04下sublime不能输入中文的解决

sublime是一个超赞的代码编辑器,兼容几乎所有的操作系统平台.

但是对于我们来说,sublime的并不能很好的支持中文输入...

原因是由于中文输入法的输入焦点和sublime不太兼容,不能插入sublime的输入窗口中.

so,我们需要使用代码强制插入输入焦点。

代码是cjacker 君提供的,可以看原始的讨论帖子:

http://www.sublimetext.com/forum/viewtopic.php?f=3&t=7006&start=10#p41343

1.保存代码到文件sublime_imfix.c

 #include <gtk/gtk.h>
 #include <gdk/gdkx.h>
 typedef GdkSegment GdkRegionBox;
 struct _GdkRegion
 {
 long size;
 long numRects;
 GdkRegionBox *rects;
 GdkRegionBox extents;
 };
 GtkIMContext *local_context;
 void
 gdk_region_get_clipbox (const GdkRegion *region,
 GdkRectangle *rectangle)
 {
 g_return_if_fail (region != NULL);
 g_return_if_fail (rectangle != NULL);
 rectangle->x = region->extents.x1;
 rectangle->y = region->extents.y1;
 rectangle->width = region->extents.x2 - region->extents.x1;
 rectangle->height = region->extents.y2 - region->extents.y1;
 GdkRectangle rect;
 rect.x = rectangle->x;
 rect.y = rectangle->y;
 rect.width = 0;
 rect.height = rectangle->height;
 //The caret width is 2;
 //Maybe sometimes we will make a mistake, but for most of the time, it should be the caret.
 if(rectangle->width == 2 && GTK_IS_IM_CONTEXT(local_context)) {
 gtk_im_context_set_cursor_location(local_context, rectangle);
 }
 }

2.编译为共享库

gcc -shared -o libsublime-imfix.so sublime_imfix.c `pkg-config --libs --cflags gtk+-2.0` -fPIC

3.使用LD_PRELOAD的方式加载到sublime程序中:

LD_PRELOAD=./libsublime-imfix.so sublime_text

因为我一般是在console中调用subl批处理程序,所以一劳永逸的方法就是直接改subl的内容:

a.用编辑器打开subl文件:

sudo subl $(which subl)

b.修改subl的内容:

#!/bin/bash
LD_PRELOAD=/opt/sublime_text/libsublime-imfix.so exec /opt/sublime_text/sublime_text "$@"

c.将上面生成的共享库文件拷贝到指定的目录中

下面是实际输入效果:

以后可以直接用subl启动sublime text程序,并且可以输入中文了。

相关推荐