Recently according to use found, under the Ubuntu, installed sublime Text 3, can not use the Chinese input problem.
The system is: Ubuntu 64 bit, install Sogou Input Method Linux version
Workaround:
1. Download Shared Library
Click to download libsublime-imfix.so
2. After downloading the good library, enters the catalog execution:
Ld_preload=./libsublime-imfix.so Subl
Wait for sublime text 3 to start, you should already be able to enter the normal Chinese.
3. For ease of use, also need to do the configuration
Do not have to enter ld_preload every time you open sublime text 3, you need to modify the sublime icon link way
First copy the shared library to the system default path
sudo cp libsublime-imfix.so/usr/lib/
Open Modify Sublime configuration file
sudo vim/usr/share/applications/sublime_text.desktop
Modify Local ①
Will
Exec=/opt/sublime_text/sublime_text%F
Amended to
Exec=bash-c ' Ld_preload=/usr/lib/libsublime-imfix.so/opt/sublime_text/sublime_text '%F
Modify Local ②
Will
Exec=/opt/sublime_text/sublime_text-n
Amended to
Exec=bash-c ' Ld_preload=/usr/lib/libsublime-imfix.so/opt/sublime_text/sublime_text '-n
This allows you to use the shortcut to open Sublimetext 3 to support Chinese input.