Created
January 22, 2015 03:27
-
-
Save ishitcno1/079aaf02ab8582efc2ea to your computer and use it in GitHub Desktop.
rime config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Rime default settings | |
# vim: set sw=2 sts=2 et: | |
# encoding: utf-8 | |
config_version: "0.13" | |
schema_list: | |
- schema: wubi_pinyin | |
switcher: | |
caption: 〔方案選單〕 | |
hotkeys: | |
- Control+grave | |
- Control+Shift+grave | |
save_options: | |
- full_shape | |
- simplification | |
- extended_charset | |
menu: | |
page_size: 5 | |
punctuator: | |
full_shape: | |
" " : { commit: " " } | |
"," : { commit: , } | |
"." : { commit: 。 } | |
"<" : [ 《, 〈, «, ‹ ] | |
">" : [ 》, 〉, », › ] | |
"/" : [ /, "/", ÷ ] | |
"?" : { commit: ? } | |
";" : { commit: ; } | |
":" : : | |
"'" : { pair: [ "‘", "’" ] } | |
"\"" : { pair: [ "“", "”" ] } | |
"\\" : [ 、, \, "\\" ] | |
"|" : [ ・, |, "|", "§", "¦" ] | |
"`" : [ `, "`" ] | |
"~" : [ 〜, "~", ~, 〰 ] | |
"!" : { commit: ! } | |
"@" : [ @, "@", ☯ ] | |
"#" : [ #, "#", ⌘ ] | |
"%" : [ %, "%", "°", "℃" ] | |
"$" : [ ¥, "$", "€", "£", "¥", "¢", "¤" ] | |
"^" : { commit: …… } | |
"&" : [ &, "&" ] | |
"*" : [ *, "*", ・, ×, ※, ❂, · ] | |
"(" : ( | |
")" : ) | |
"-" : [ -, "-" ] | |
"_" : —— | |
"+" : [ +, "+" ] | |
"=" : [ =, "=" ] | |
"[" : [ 「, 【, 〔, [ ] | |
"]" : [ 」, 】, 〕, ] ] | |
"{" : [ 『, 〖, { ] | |
"}" : [ 』, 〗, } ] | |
half_shape: | |
"," : { commit: , } | |
"." : { commit: 。 } | |
"<" : [ 《, 〈, «, ‹ ] | |
">" : [ 》, 〉, », › ] | |
"/" : [ 、, "/", /, ÷ ] | |
"?" : { commit: ? } | |
";" : { commit: ; } | |
":" : : | |
"'" : { pair: [ "‘", "’" ] } | |
"\"" : { pair: [ "“", "”" ] } | |
"\\" : [ 、, "\\", \ ] | |
"|" : [ ・, "|", |, "§", "¦" ] | |
"`" : "`" | |
"~" : [ "~", 〜, ~, 〰 ] | |
"!" : { commit: ! } | |
"@" : "@" | |
"#" : "#" | |
"%" : [ "%", %, "°", "℃" ] | |
"$" : [ ¥, "$", "€", "£", "¥", "¢", "¤" ] | |
"^" : { commit: …… } | |
"&" : "&" | |
"*" : [ "*", *, ・, ×, ※, ❂, · ] | |
"(" : ( | |
")" : ) | |
"-" : "-" | |
"_" : —— | |
"+" : "+" | |
"=" : "=" | |
"[" : [ 「, 【, 〔, [ ] | |
"]" : [ 」, 】, 〕, ] ] | |
"{" : [ 『, 〖, { ] | |
"}" : [ 』, 〗, } ] | |
key_binder: | |
bindings: | |
# Emacs style | |
- { when: composing, accept: Control+p, send: Up } | |
- { when: composing, accept: Control+n, send: Down } | |
- { when: composing, accept: Control+b, send: Left } | |
- { when: composing, accept: Control+f, send: Right } | |
- { when: composing, accept: Control+a, send: Home } | |
- { when: composing, accept: Control+e, send: End } | |
- { when: composing, accept: Control+d, send: Delete } | |
- { when: composing, accept: Control+k, send: Shift+Delete } | |
- { when: composing, accept: Control+g, send: Escape } | |
- { when: composing, accept: Alt+v, send: Page_Up } | |
- { when: composing, accept: Control+v, send: Page_Down } | |
# commonly used paging keys | |
- { when: composing, accept: ISO_Left_Tab, send: Page_Up } | |
- { when: composing, accept: Shift+Tab, send: Page_Up } | |
- { when: composing, accept: Tab, send: Page_Down } | |
- { when: paging, accept: minus, send: Page_Up } | |
- { when: has_menu, accept: equal, send: Page_Down } | |
- { when: paging, accept: comma, send: Page_Up } | |
- { when: has_menu, accept: period, send: Page_Down } | |
recognizer: | |
patterns: | |
email: "^[a-z][-_.0-9a-z]*@.*$" | |
uppercase: "[A-Z][-_+.'0-9A-Za-z]*$" | |
url: "^(www[.]|https?:|ftp:|mailto:).*$|^[a-z]+[.].+$" | |
ascii_composer: | |
switch_key: | |
Shift_L: noop | |
Shift_R: commit_text | |
Control_L: noop | |
Control_R: inline_ascii |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment