gedit用了好久,終於換編輯器了T_Thtml
Sublime Text 自行百度谷歌。linux
一開始我在官網下載的壓縮包,而後本身配置。搞了半天后果斷刪掉。。。仍是用源的自動安裝吧。T_Tc++
恩。下面的命令web
sudo add-apt-repository ppa:webupd8team/sublime-text-2 sudo apt-get update sudo apt-get install sublime-text-2
而後安裝好就是我們的st了。sublime-text
但是你發現了啥沒。。不能輸入中文。囧bash
解決:(https://www.sinosky.org/linux-sublime-text-fcitx.html)如下大部分抄自這裏app
1. 保存下述代碼爲 sublime-imfix.c 文件編輯器
/* sublime-imfix.c Use LD_PRELOAD to interpose some function to fix sublime input method support for linux. By Cjacker Huang gcc -shared -o libsublime-imfix.so sublime-imfix.c `pkg-config --libs --cflags gtk+-2.0` -fPIC LD_PRELOAD=./libsublime-imfix.so subl */ #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); } } //this is needed, for example, if you input something in file dialog and return back the edit area //context will lost, so here we set it again. static GdkFilterReturn event_filter (GdkXEvent *xevent, GdkEvent *event, gpointer im_context) { XEvent *xev = (XEvent *)xevent; if(xev->type == KeyRelease && GTK_IS_IM_CONTEXT(im_context)) { GdkWindow * win = g_object_get_data(G_OBJECT(im_context),"window"); if(GDK_IS_WINDOW(win)) gtk_im_context_set_client_window(im_context, win); } return GDK_FILTER_CONTINUE; } 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); if(!GDK_IS_WINDOW (window)) return; g_object_set_data(G_OBJECT(context),"window",window); 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); local_context = context; } gdk_window_add_filter (window, event_filter, context); }
2. 安裝 C/C++ 的編譯環境和 gtk libgtk2.0-devui
sudo apt-get install build-essential sudo apt-get install libgtk2.0-dev
3. 編譯共享內庫this
gcc -shared -o libsublime-imfix.so sublime-imfix.c `pkg-config --libs --cflags gtk+-2.0` -fPIC
4.移動編譯後的庫文件到st目錄
sudo cp ./libsublime-imfix.so /opt/sublime_text_2/
5.修改 /usr/share/applications/sublime-text-2.desktop 爲
[Desktop Entry] [...] Exec=env LD_PRELOAD=/opt/sublime_text_2/libsublime-imfix.so /opt/sublime_text_2/sublime_text %F [...] [Desktop Action Window] [...] Exec=env LD_PRELOAD=/opt/sublime_text_2/libsublime-imfix.so /opt/sublime_text_2/sublime_text -n [...] [Desktop Action Document] [...] Exec=env LD_PRELOAD=/opt/sublime_text_2/libsublime-imfix.so /opt/sublime_text_2/sublime_text --command new_file [...]
6. 修改 /usr/bin/subl 爲
#!/bin/sh export LD_PRELOAD=/opt/sublime_text_2/libsublime-imfix.so exec /opt/sublime_text_2/sublime_text "$@"
7.搞定,收工。
這樣不管從命令行仍是桌面快捷鍵都可以使用中文了~
打開菜單 -> Tools -> Build System -> New Build System...
編輯以下(我本身的配置,其它的你們本身模仿):
{ "cmd": ["bash", "-c", "echo '============building============' && g++ '${file}' -o '${file_path}/${file_base_name}' -Wall && echo && echo '============successful!============'"], //"cmd": ["g++", "${file}", "-o", "${file_path}/${file_base_name}", "-Wall"], "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$", "working_dir": "${file_path}", "selector": "source.c, source.c++", "variants": [ { "name": "Run", // "cmd": ["bash", "-c", "echo '============running============' && '${file_path}/${file_base_name}'"] "cmd": ["bash", "-c", "echo 'running...' && '/home/iwtwiioi/sublime/runbyfile.sh' '${file_path}' '${file_base_name}'"] }, { "name": "Runbyter", // "cmd": ["bash", "-c", "echo '============running============' && '${file_path}/${file_base_name}'"] "cmd": ["bash", "-c", "echo 'running...' && '/home/iwtwiioi/sublime/cpp-run.sh' '${file_path}' '${file_base_name}'"] }, { "name": "buildby", //g++ '${file}' -o '${file_path}/${file_base_name}' -Wall "cmd": ["bash", "-c", "echo '============c++11 building============' && g++ '${file}' -o '${file_path}/${file_base_name}' -Wall -std=c++11 && echo && echo '============successful!============'"] } ] }
而後那兩個文件 cpp-run.sh 和 runbyfile.sh 以下
cpp-run.sh:
#!/bin/bash # $1 is the execute program echo "============output============" dr=$1 nm=$2 pro="$dr/$nm" dat="$dr/in" "$pro" < "$dat" echo echo
runbyfile.sh:
#!/bin/bash dr=$1 nm=$2 pro="$dr/$nm" rin="$dr/in" rout="$dr/out" "$pro" < "$rin" > "$rout" echo echo "successful!"
而後是配置快捷鍵:
打開菜單 -> Preferences -> Key Bindings - User
編輯爲:
[ { "keys": ["f5"], "command": "build"}, { "keys": ["f4"], "command": "build", "args": {"variant": "Run"} }, { "keys": ["f3"], "command": "build", "args": {"variant": "Runbyter"} }, { "keys": ["alt+f5"], "command": "build", "args": {"variant": "buildby"} } ]
安裝Package Control:用ctrl+~打開控制檯,在其輸入如下代碼就能夠自動安裝packge control
import urllib2,os; pf='Package Control.sublime-package'; ipp=sublime.installed_packages_path(); os.makedirs(ipp) if not os.path.exists(ipp) else None; urllib2.install_opener(urllib2.build_opener(urllib2.ProxyHandler())); open(os.path.join(ipp,pf),'wb').write(urllib2.urlopen('http://sublime.wbond.net/'+pf.replace(' ','%20')).read()); print('Please restart Sublime Text to finish installation')
重啓sublime,若是在Preferences菜單欄下有Package Control這項就成功了
安裝GBK Encoding Support插件
用ctrl+shift+p打開命令行模式,輸入Install Package選擇Package Control:Install Package,搜索GBK Encoding Support就好了。
可是可能會發現這樣仍然亂碼。那麼繼續上邊的步驟,安裝Codecs26便可
收工~