Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Linux \ Ubuntu 14.04 LTS 64-bit installation and activation Sublime Text 3 can not solve the Chinese input method to solve the problem     - Use custom backup plans for Debian backupninja (Linux)

- Linux into single user mode to modify the administrator password (Linux)

- Use py2exe to generate exe files Python script (Programming)

- Subquery Oracle study notes (Database)

- Android components series Activity (Programming)

- Import and export myloader accelerate mydumper (Database)

- Linux user status query, and to unlock locked user (Linux)

- VMware11 virtual machine Ubuntu14.10 system partition sda1 disk expansion (Linux)

- Use the Find command to help you find those files that need to be cleaned (Linux)

- Create the container and run the application Docker (Server)

- Ubuntu installation 2.10.x version of Scala (Linux)

- Distributed Firewall Design on Linux platform (Linux)

- Python2.7.7 source code analysis (Programming)

- Linux Study of --CentOS create local yum repository (Linux)

- To teach you how to safely send mail (Linux)

- Linux how to prohibit the use of Ping command (Linux)

- Forbid screen change the window size when creating a new window under CentOS (Linux)

- Linux crontab commands and detailed usage examples (Linux)

- Precautions against hackers Linux environment (Linux)

- SYN attack hacker attack and defense of the basic principles and prevention technology (Linux)

 
         
  Ubuntu 14.04 LTS 64-bit installation and activation Sublime Text 3 can not solve the Chinese input method to solve the problem
     
  Add Date : 2018-11-21      
         
         
         
  Ubuntu 14.04 LTS 64-bit installation and activation Sublime Text 3 can not solve the Chinese input method to solve the problem

1. Download and install Sublime Text 3

Download Ubuntu 64 bit version, double-click to complete the installation

Note: The terminal is opened Sublime Text Method 3 is the terminal to input subl

2. Registration

Help ->

- BEGIN LICENSE -

Andrew Weber

Single User License

EA7E-855605

813A03DD 5E4AD9E6 6C0EEB94 BC99798F

942194A6 02396E98 E62C9979 4BB979FE

91424C9D A45400BF F6747D88 2FB88078

90F5CC94 1CDC92DC 8457107A F151657B

1D22E383 A997F016 42397640 33F41CFC

E1D0AE85 A0BBD039 0E9C8D55 E1B89D5D

5CDB7036 E56DE1C0 EFCC0840 650CD3A6

B98FC99C 8FAC73EE D2B95564 DF450523

- END LICENSE -

3. Chinese input problem solving

a. Save the following code to the file sublime_imfix.c (located in the directory ~)


#include


void gtk_im_context_set_client_window (GtkIMContext * context,

GdkWindow * window)

{

GtkIMContextClass * klass;

g_return_if_fail (GTK_IS_IM_CONTEXT (context));

klass = GTK_IM_CONTEXT_GET_CLASS (context);

if (klass-> set_client_window)

klass-> set_client_window (context, window);

g_object_set_data (G_OBJECT (context), "window", window);

if (! GDK_IS_WINDOW (window))

return;

int width = gdk_window_get_width (window);

int height = gdk_window_get_height (window);

if (width! = 0 && height! = 0)

gtk_im_context_focus_in (context);

}

b. The last step of the code is compiled into a shared library libsublime-imfix.so, command

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

NOTE: If you are prompted gtk / gtkimcontext.h: No such file or directory that is not associated with the prerequisite software installation command:

sudo apt-get install build-essential libgtk2.0-dev

c. libsublime-imfix.so will be copied to the folder where the file sublime_text


sudo mv libsublime-imfix.so / opt / sublime_text /


Content modify the file / usr / bin / subl of d


sudo gedit / usr / bin / subl

will

#! / Bin / sh

exec / opt / sublime_text / sublime_text "$ @"

change into

#! / Bin / sh

LD_PRELOAD = / opt / sublime_text / libsublime-imfix.so exec / opt / sublime_text / sublime_text "$ @"

e. In order to use the right mouse button to use Chinese input file is opened also need to modify the file sublime_text.desktop content. command

sudo gedit /usr/share/applications/sublime_text.desktop

The [Desktop Entry] string

Exec = / opt / sublime_text / sublime_text% F

change into

Exec = bash -c "LD_PRELOAD = / opt / sublime_text / libsublime-imfix.so exec / opt / sublime_text / sublime_text% F"

The [Desktop Action Window] string

Exec = / opt / sublime_text / sublime_text -n

change into

Exec = bash -c "LD_PRELOAD = / opt / sublime_text / libsublime-imfix.so exec / opt / sublime_text / sublime_text -n"

The [Desktop Action Document] string

Exec = / opt / sublime_text / sublime_text --command new_file

change into

Exec = bash -c "LD_PRELOAD = / opt / sublime_text / libsublime-imfix.so exec / opt / sublime_text / sublime_text --command new_file"
     
         
         
         
  More:      
 
- CentOS iptables firewall configuration (Linux)
- Oracle 11.2.0.3 and MySQL5.6 DDL comparison (Database)
- Difference Docker mirror and containers (Server)
- GAMIT 10.50 installed in Ubuntu 12.04 system (Linux)
- Ten SCP transfer command example (Linux)
- Linux initialization init system - UpStart (Linux)
- Java data structures - the single linked list LinkedList linear table (Programming)
- Five strokes to find out the IP address you want to know (Linux)
- VMware Workstation virtual machine startup error: Could not open / dev / vmmon in CentOS 6 (Linux)
- Sleuth Kit: used to analyze a disk image and restore files open source forensics tools (Linux)
- Use lsof restore accidentally deleted log files or database (Linux)
- MySQL to recover the data through binlog (Database)
- Linux System Getting Started Learning: Using the Linux command line detected DVD burner name and write speeds (Linux)
- Forgot Linux root password (Linux)
- About Linux operating system security (Linux)
- The hash function under OpenSSL (Linux)
- No password on Oracle and MySQL login (Database)
- Linux batch copy data script (Linux)
- Two programs HAProxy + Heartbeat (note, the secondary server vip, normal HAProxy boot method) (Server)
- RabbitMQ Getting Started Tutorial (Linux)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.