pangu-spacing

https://github.com/coldnew/pangu-spacing.git

git clone 'git://github.com/coldnew/pangu-spacing.git'
20

pangu-spacing.el

Minor-mode to add space between Chinese and English characters.

License GPL3 MELPA MELPA Stable

Screenshot

Screenshot

Commentary (English)

pangu-spacing-mode is an minor-mode to auto add space between Chinese and English characters. Note that these white-space characters are not really added to the contents, it just like to do so.

Take following sentance for example:

 你好,我是coldnew,我喜歡使用emacs。

After you use pangu-spacing-mdoe, you will see

 你好,我是 coldnew,我喜歡使用 emacs。

But the text doesn't be modify by this mode, after disable pangu-spacing-mode or use other text eidtor to open the file, you will still see:

 你好,我是coldnew,我喜歡使用emacs。

pangu-spacing is named from paranoid-auto-spacing's README.

 Translation of paranoid-auto-spacing's README [1]

 If you are the one who feel quiet ill when see Chinese,
 English and digits characters squeezed together and
 want to add whitespace to separate them. This plugin (support
 Chrome and Firefox) is what you need when surfing the
 internet, it will add whitespace between Chinese,
 half-width English, digits and symbols automatically.

 These spaces between English and Chinese characters are called
 pangu-spacing by sinologist, since it separate the cobnfusion
 between full-width and half-width characters.
 Studies showed that who dislike to add whitespace between
 English and Chinese characters also have relationship problem.
 Almost 70 percent of them will get married to the one they
 don't love, the rest only can left the heritage to their cat.
 Indeed, love and writing need some space in good time.

 Let's go for it.

 [1] https://github.com/gibuloto/paranoid-auto-spacing

Commentary (Chinese)

pangu-spacing-mode 是一個可以自動幫你將中文與英文之間加上空白作為分隔的 minor-mode, 他的名稱來自於 paranoid-auto-spacing 上的 README。

 引述自 paranoid-auto-spacing README [1]

 如果你跟我一樣,每次看到網頁上的中文字和英文、數字、符號擠在一塊,就會
 坐立難安,忍不住想在它們之間加個空格。這個外掛(支援 Chrome 和 Firefox)
 正是你在網路世界走跳所需要的東西,它會自動替你在網頁中所有的中文字和半
 形的英文、數字、符號之間插入空白。

 漢學家稱這個空白字元為「盤古之白」,因為它劈開了全形字和半形字之間的混
 沌。另有研究顯示,打字的時候不喜歡在中文和英文之間加空格的人,感情路都
 走得很辛苦,有七成的比例會在 34 歲的時候跟自己不愛的人結婚,而其餘三成
 的人最後只能把遺產留給自己的貓。畢竟愛情跟書寫都需要適時地留白。

 與大家共勉之。

 [1] https://github.com/gibuloto/paranoid-auto-spacing

更完整的介紹,請見我的部若格:

http://coldnew.github.io/blog/2013/05/20_5cbb7.html

Installation

If you have melpa and emacs24 installed, simply type:

 M-x package-install pangu-spacing

For cask user, just add following lines in your Cask file

 (source melpa)

 (depends-on "pangu-spacing")

Configuration

In your .emacs

 (require 'pangu-spacing)
 (global-pangu-spacing-mode 1)

pangu-spacing-mode do not really insert space between English and Chinese by defaut, you should enable this option manually.

 (setq pangu-spacing-real-insert-separtor t)

After you enable this, space will be inserted before you save file.

If you only want to insert whitespace in some specific mode, but just add virtual space in other mode, you can use following code to achive this: (take org-mode as example)

 (add-hook 'org-mode-hook
           '(lambda ()
            (set (make-local-variable 'pangu-spacing-real-insert-separtor) t)))

Function Documentation

(pangu-spacing-search-buffer REGEXP START END FUNC)

Helper macro to search buffer and do func according regexp for pangu-spacing-mode.

(pangu-spacing-search-overlay FUNC REGEXP)

Helper macro to search and update overlay according func and regexp for pangu-sapce-mode.

(pangu-spacing-search-and-replace MATCH REGEXP)

Replace regexp with match in buffer.

(pangu-spacing-overlay-p OV)

Determine whether overlay OV was created by space-between.

(pangu-spacing-check-overlay)

Insert a space between English words and Chinese charactors in overlay.

(pangu-spacing-modify-buffer)

Real insert separator between English words and Chinese charactors in buffer.

(pangu-spacing-region-has-pangu-spacing-overlays BEG END)

Check if region specified by BEG and END has overlay. Return t if it has at least one pangu-spacing overlay, nil if no overlay.

(pangu-spacing-make-overlay BEG END)

Allocate a pangu-spacing overlay in range.

(pangu-spacing-delete-overlay BEG END)

Delete all pangu-spacing-overlays in BUFFER.

(pangu-spacing-delete-all-overlays)

Delete all pangu-spacing-overlays in BUFFER.

—–

Markdown README file generated by make-readme-markdown.el