The simplest solution to the problem that Sublime Text cannot input Chinese in Ubuntu

The simplest solution to the problem that Sublime Text cannot input Chinese in Ubuntu

Sublime

Sublime Text is a code editor (Sublime Text2 is a paid software, but can be tried indefinitely) and an advanced text editor for HTML and prose. Sublime Text was developed by programmer Jon Skinner in January 2008. It was originally designed as a Vim with rich extended functions.

Sublime Text has a beautiful user interface and powerful features such as code thumbnails, Python plugins, code snippets, etc. You can also customize key bindings, menus, and toolbars. The main features of Sublime Text include: spell checking, bookmarks, complete Python API, Goto function, instant project switching, multiple selections, multiple windows, and more. Sublime Text is a cross-platform editor that supports Windows, Linux, Mac OS X and other operating systems.

Sublime is an editing tool I like, but I can't input Chinese in Ubuntu, which is quite uncomfortable for me. So I searched the Internet for a long time and summarized the following simple method.

1. Download the files we need, open the terminal, and enter:

git clone https://github.com/lyfeyaj/sublime-text-imfix.git
cd ~/sublime-text-imfix
sudo cp ./lib/libsublime-imfix.so /opt/sublime_text/
sudo cp ./src/subl /usr/bin/

2. Create a new shell script, it’s very simple, just one sentence.

Sublime creates a new file and enters:

#!/bin/bash
LD_PRELOAD=/opt/sublime_text/libsublime-imfix.so subl

Then save the file as sublime (note: no suffix) and put it in the /home folder. Now you can enter Chinese when you open sublime.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • How to install sublime3 and configure python3 environment in ubuntu
  • Ubuntu install mysql pycharm sublime
  • Solution to Ubuntu Sublime Chinese input problem
  • Specific steps to configure the C compilation environment of Sublime Text 3 in Ubuntu
  • How to perfectly input Chinese when using sublime text in Ubuntu
  • Solution to the problem that sublime Chinese cannot be input in Ubuntu

<<:  Solution to forgetting MySQL root password in MACOS

>>:  Native JavaScript to achieve slide effects

Recommend

Introduction to Jenkins and how to deploy Jenkins with Docker

1. Related concepts 1.1 Jenkins Concepts: Jenkins...

Some tips on speeding up the development of WeChat mini-programs

1. Create a page using app.json According to our ...

How to implement JavaScript's new operator yourself

Table of contents Constructor new Operator Implem...

Detailed explanation of the specific use of the ENV instruction in Dockerfile

1. The ENV instruction in the Dockerfile is used ...

JavaScript dynamically generates a table with row deletion function

This article example shares the specific code of ...

The benefits of div+css and web standard pages

The div element is used to provide structure and b...

Do you know how to use vue-cropper to crop pictures in vue?

Table of contents 1. Installation: 2. Use: 3. Bui...

Linux uses lsof command to check file opening status

Preface We all know that in Linux, "everythi...

Docker starts in Exited state

After docker run, the status is always Exited Sol...

Mysql implements three functions for field splicing

When exporting data to operations, it is inevitab...

26 Commonly Forgotten CSS Tips

This is a collection of commonly used but easily ...

Detailed explanation of Linux redirection usage

I believe that everyone needs to copy and paste d...

What should I do if I want to cancel an incorrect MySQL command?

I typed a wrong mysql command and want to cancel ...

JavaScript to display hidden form text

This article shares the specific code of JavaScri...