-
Notifications
You must be signed in to change notification settings - Fork 68
/
rime.el
1232 lines (1067 loc) · 41.6 KB
/
rime.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;;; rime.el --- Rime input method -*- lexical-binding: t -*-
;; Author: Shi Tianshu
;; Keywords: convenience, input-method
;; Package-Requires: ((emacs "26.3") (dash "2.17.0") (cl-lib "0.6.1") (popup "0.5.3") (posframe "0.1.0"))
;; Version: 1.0.5
;; URL: https://www.github.com/DogLooksGood/emacs-rime
;;
;; This file is not part of GNU Emacs.
;; This program is free software; you can redistribute it and/or
;; modify it under the terms of the GNU General Public License
;; as published by the Free Software Foundation; either version 3
;; of the License, or (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs; see the file COPYING. If not, write to the
;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
;; Boston, MA 02110-1301, USA.
;;; Commentary:
;; Emacs in Rime, support multiple schemas.
;;
;; * Installation
;;
;; Note: ~make~ and ~gcc~ is required.
;;
;; ** Linux
;;
;; Install librime with your package manager, if you are using fcitx-rime or ibus-rime,
;; the librime should be already installed.
;;
;; Emacs configuration:
;;
;; #+BEGIN_SRC emacs-lisp
;; (use-package rime
;; :custom
;; (default-input-method "rime"))
;; #+END_SRC
;;
;; ** MacOS
;;
;; Download librime release.
;;
;; #+BEGIN_SRC bash
;; wget https://github.com/rime/librime/releases/download/1.7.1/rime-1.7.1-osx.zip
;; unzip rime-1.7.1-osx.zip -d ~/.emacs.d/librime
;; rm -rf rime-1.7.1-osx.zip
;; #+END_SRC
;;
;; Emacs configuration:
;;
;; #+BEGIN_SRC emacs-lisp
;; (use-package rime
;; :init
;; :custom
;; (rime-librime-root "~/.emacs.d/librime/dist")
;; (default-input-method "rime"))
;; #+END_SRC
;;
;; * Keybindings in Rime.
;;
;; With following configuration, you can send a serials of keybindings to Rime.
;; Since you may want them to help you with cursor navigation, candidate pagination and selection.
;;
;; Currently the keybinding with Control(C-), Meta(M-) and Shift(S-) is supported.
;;
;; #+BEGIN_SRC emacs-lisp
;; ;; defaults
;; (setq rime-translate-keybindings
;; '("C-f" "C-b" "C-n" "C-p" "C-g"))
;; #+END_SRC
;;
;; * Candidate menu style
;;
;; Set via ~rime-show-candidate~.
;;
;; | Value | description |
;; |--------------+-------------------------------------------------------------------------------|
;; | ~nil~ | don't show candidate at all. |
;; | ~minibuffer~ | Display in minibuffer. |
;; | ~message~ | Display with ~message~ function, useful when you use minibuffer as mode-line. |
;; | ~popup~ | Use popup. |
;; | ~posframe~ | Use posfarme, will fallback to popup in TUI |
;; | ~sidewindow~ | Use sidewindow. |
;;
;; * The lighter
;;
;; You can get a lighter via ~(rime-lighter)~, which returns you a colored ~ㄓ~.
;; Put it in modeline or anywhere you want.
;;
;; You can customize with ~rime-title~, ~rime-indicator-face~ and ~rime-indicator-dim-face~.
;;
;; * Temporarily ascii mode
;;
;; If you want specific a list of rules to automatically enable ascii mode, you can customize ~rime-disable-predicates~.
;;
;; Following is a example to use ascii mode in ~evil-normal-state~ or when cursor is after alphabet character or when cursor is in code.
;;
;; #+BEGIN_SRC emacs-lisp
;; (setq rime-disable-predicates
;; '(evil-normal-state-p
;; rime--after-alphabet-char-p
;; rime--prog-in-code-p))
;; #+END_SRC
;;
;; ** Force enable
;;
;; If one of ~rime-disable-predicates~ returns t, you can still force enable the input method with ~rime-force-enable~.
;; The effect will only last for one input behavior.
;;
;; You probably want to give this command a keybinding.
;;
;; * The soft cursor
;;
;; Default to ~|~ , you can customize it with
;;
;; #+BEGIN_SRC emacs-lisp
;; (setq rime-cursor "˰")
;; #+END_SRC
;;
;; * Shortcut to open Rime configuration file
;;
;; Use ~rime-open-configuration~.
;;; Code:
(require 'seq)
(require 'subr-x)
(require 'dash)
(require 'cl-lib)
(require 'popup nil t)
(require 'posframe nil t)
(require 'xdg)
(defconst rime-version "1.0.5")
(defgroup rime nil
"Custom group for emacs-rime."
:group 'rime-module)
(defface rime-preedit-face
'((((class color) (background dark))
(:inverse-video t))
(((class color) (background light))
(:inverse-video t)))
"Face for inline preedit."
:group 'rime)
(defface rime-indicator-face
'((((class color) (background dark))
(:foreground "#9256B4" :bold t))
(((class color) (background light))
(:foreground "#9256B4" :bold t)))
"Face for mode-line indicator when input-method is available."
:group 'rime)
(defface rime-indicator-dim-face
'((((class color) (background dark))
(:foreground "#606060" :bold t))
(((class color) (background light))
(:foreground "#606060" :bold t)))
"Face for mode-line indicator when input-method is temporarily disabled."
:group 'rime)
(defcustom rime-popup-properties
(list :margin 1)
"Properties for popup."
:type 'list
:group 'rime)
(defcustom rime-popup-style 'horizontal
"Display style when using popup.
`simple', preedit and candidate list in a single line.
`horizontal', list candidates in a single line.'
`vertical', display candidates in multiple lines."
:type 'symbol
:options '(simple horizontal vertical)
:group 'rime)
(defcustom rime-posframe-properties
(list :internal-border-width 10)
"Properties for posframe.
Background and default foreground can be set in face `rime-default-face'."
:type 'list
:group 'rime)
(defcustom rime-posframe-style 'horizontal
"Display style when using posframe.
`simple', preedit and candidate list in a single line.
`horizontal', list candidates in a single line.'
`vertical', display candidates in multiple lines."
:type 'symbol
:options '(simple horizontal vertical)
:group 'rime)
(defcustom rime-sidewindow-keep-window nil
"Non-nil keep sidewindow open."
:type 'boolean
:group 'rime)
(defcustom rime-sidewindow-side 'bottom
"Side for sidewindow.
One of `top', `bottom', `left', `right'."
:type 'symbol
:options '(top bottom left right)
:group 'rime)
(defcustom rime-sidewindow-style 'horizontal
"Display style when using sidewindow.
`simple', preedit and candidate list in a single line.
`horizontal', list candidates in a single line.'
`vertical', display candidates in multiple lines."
:type 'symbol
:options '(simple horizontal vertical)
:group 'rime)
(defface rime-default-face
'((((class color) (background dark))
(:background "#333333" :foreground "#dcdccc"))
(((class color) (background light))
(:background "#dcdccc" :foreground "#333333")))
"Face for default foreground and background."
:group 'rime)
(defface rime-code-face
'((t (:inherit font-lock-string-face)))
"Face for code in candidate, not available in `message' and `popup'."
:group 'rime)
(defface rime-cursor-face
'((t (:inherit default)))
"Face for cursor in candidate menu."
:group 'rime)
(defface rime-highlight-candidate-face
'((t (:inherit font-lock-constant-face)))
"Face for highlighted candidate."
:group 'rime)
(defface rime-comment-face
'((t (:foreground "grey60")))
"Face for comment in candidate, not available in `message' and `popup'."
:group 'rime)
(defface rime-candidate-num-face
'((t (:inherit font-lock-comment-face)))
"Face for the number before each candidate, not available in `message' and `popup'."
:group 'rime)
(defcustom rime-candidate-num-format-function #'rime--candidate-num-format
"Function to format the number before each candidate."
:type 'function
:group 'rime)
(defcustom rime-show-preedit t
"If display preedit in candidate menu.
Options:
t, display in candidate menu, default behavior.
inline, display in inline text, replacing commit text preview.
nil, don't display."
:type 'symbol
:options '(t inline nil)
:group 'rime)
(defcustom rime-return-insert-raw t
"Whether hitting return commits the raw input.
If nil, hitting return commits the selected candicate instead."
:type 'boolean
:group 'rime)
(defcustom rime-posframe-fixed-position nil
"Use a fixed position for posframe candidate."
:type :boolean
:group 'rime)
(defcustom rime-librime-root nil
"The path to the directory of librime.
Leave it nil if you have librime's lib and header files in the standard path.
Otherwise you should set this to where you put librime."
:type 'string
:group 'rime)
(defun rime--guess-emacs-module-header-root ()
"Guess `emacs-module-module-header-root' from some known places."
(or
(let ((module-header (expand-file-name "emacs-module.h" (concat source-directory "/src/"))))
(when (file-exists-p module-header)
(file-name-directory module-header)))
(let* ((emacs-dir (getenv "emacs_dir")) ;; https://www.gnu.org/software/emacs/manual/html_node/emacs/Misc-Variables.html
(header-file (expand-file-name "emacs-module.h" (concat emacs-dir "/include/"))))
(when (and emacs-dir (file-exists-p header-file))
(file-name-directory header-file)))))
(defcustom rime-emacs-module-header-root (rime--guess-emacs-module-header-root)
"The path to the directory of Emacs module header file.
Leave it nil if you using Emacs shipped with your system.
Otherwise you should set this to the directory contains 'emacs-module.h'."
:type 'string
:group 'rime)
;;; We need these variables to be buffer local.
(defvar rime--temporarily-ignore-predicates nil
"Temporarily disable all predicates.
Set to t will ensure the next input will be handled by input-method.
Will be reset to nil when symbol `rime-active-mode' is disabled.")
(defvar rime-force-enable-hook nil
"Hooks run after `rime-force-enable' is called.")
(defvar rime-force-enable-exit-hook nil
"Hooks rum after the state of `rime-force-enable' is turned off.")
(defcustom rime-deactivate-when-exit-minibuffer t
"If automatically deactivate input-method when exit minibuffer."
:type 'boolean
:group 'rime)
(defcustom rime-inline-predicates nil
"A list of predicate functions, each receive no argument.
When one of functions in `rime-disable-predicates' return t, and
one of these functions return t, the input-method will toggle to inline mode."
:type 'list
:group 'rime)
(defcustom rime-disable-predicates nil
"A list of predicate functions, each receive no argument.
If one of these functions return t, the input-method will fallback to ascii mode."
:type 'list
:group 'rime)
(defcustom rime-show-candidate 'minibuffer
"How we display the candidate menu.
nil means don't display candidate at all.
`minibuffer', display canidate in minibuffer.
`popup', display with popup.el.
`message', display with function `message', this is a
replacement for `minibuffer' if you use minibuffer as the mode-line.
`posframe', display candidate in posframe, will fallback to popup in TUI.
`sidewindow', display in sidewindow."
:type 'symbol
:options '(minibuffer message popup posframe sidewindow)
:group 'rime)
(defcustom rime-user-data-dir (locate-user-emacs-file "rime/")
"Rime user data directory.
Defaults to `user-emacs-directory'/rime/"
:type 'string
:group 'rime)
(defcustom rime-share-data-dir
(cl-case system-type
(gnu/linux
(cl-some (lambda (parent)
(let ((dir (expand-file-name "rime-data" parent)))
(when (file-directory-p dir)
dir)))
(if (fboundp 'xdg-data-dirs)
(xdg-data-dirs)
'("/usr/local/share" "/usr/share"))))
(darwin
"/Library/Input Methods/Squirrel.app/Contents/SharedSupport")
(windows-nt
(if (getenv "MSYSTEM_PREFIX")
(concat (getenv "MSYSTEM_PREFIX") "/share/rime-data")
(if (getenv "LIBRIME_ROOT")
(expand-file-name (concat (getenv "LIBRIME_ROOT") "/share/rime-data"))))))
"Rime share data directory."
:type 'string
:group 'rime)
(defvar rime--root (file-name-directory (or load-file-name buffer-file-name))
"The path to the root of rime package.")
(defvar rime--module-path
(concat rime--root "librime-emacs" module-file-suffix)
"The path to the dynamic module.")
(defcustom rime-inline-ascii-holder nil
"A character that used to hold the inline ascii mode.
When inline ascii is triggered, this characeter will be inserted as the beginning of composition, the origin character follows. Then this character will be deleted."
:type 'char
:group 'rime)
(defcustom rime-inline-ascii-trigger 'shift-l
"How to trigger into inline ascii mode."
:type 'symbol
:options '(shift-l shift-r control-l control-r alt-l alt-r)
:group 'rime)
(defcustom rime-cursor "|"
"The character used to display the soft cursor in preedit."
:type 'string
:group 'rime)
(defvar-local rime--preedit-overlay nil
"Overlay on preedit.")
(defvar rime--lib-loaded nil
"If dynamic module is loaded.")
(defvar rime--popup nil
"The current in-use popup.")
(defvar rime-posframe-buffer " *rime-posframe*"
"The buffer name for candidate posframe.")
(defvar rime-sidewindow-buffer " *rime-sidewindow*"
"The buffer name for candidate sidewindow.")
(defvar rime--hooks-for-clear-state
'()
"Hooks where we add function `rime--clear-state' to it.")
(defvar rime--current-input-key nil
"Saved last input key.")
;;;###autoload
(defvar rime-title (char-to-string 12563)
"The title of input method.")
(defvar rime-translate-keybindings
'("C-f" "C-b" "C-n" "C-p" "C-g" "<left>" "<right>" "<up>" "<down>" "<prior>" "<next>" "<delete>")
"A list of keybindings those sent to Rime during composition.
Currently only Shift, Control, Meta is supported as modifiers.
Each keybinding in this list, will be bound to `rime-send-keybinding' in `rime-active-mode-map'.")
(defun rime--should-enable-p ()
"If key event should be handled by input-method."
(or rime--temporarily-ignore-predicates
(not (seq-find 'funcall rime-disable-predicates))))
(defun rime--should-inline-ascii-p ()
"If we should toggle to inline ascii mode."
(seq-find 'funcall rime-inline-predicates))
(defun rime--has-composition (context)
"If CONTEXT has a meaningful composition data."
(not (zerop (thread-last context
(alist-get 'composition)
(alist-get 'length)))))
(defun rime--minibuffer-display-content (content)
"Display CONTENT in minibuffer."
(with-selected-window (minibuffer-window)
(erase-buffer)
(insert content)))
(defun rime--message-display-content (content)
"Display CONTENT via message."
(let ((message-log-max nil))
(save-window-excursion
(with-temp-message
content
(sit-for most-positive-fixnum)))))
(defun rime--popup-display-content (content)
"Display CONTENT with popup.el."
(if (featurep 'popup)
(progn
(when rime--popup
(popup-delete rime--popup)
(setq rime--popup nil))
(unless (string-blank-p content)
(setq rime--popup (apply #'popup-tip content :nowait t rime-popup-properties))))
;; Fallback to popup when not available.
(rime--minibuffer-display-content content)))
(defun rime--minibuffer-message (string)
"Concatenate STRING and minibuffer contents.
Used to display in minibuffer when we are using input method in minibuffer."
(message nil)
(unless (string-blank-p string)
(let ((inhibit-quit t)
point-1)
(save-excursion
(insert (concat "\n" string))
(setq point-1 (point)))
(sit-for 1000000)
(delete-region (point) point-1)
(when quit-flag
(setq quit-flag nil
unread-command-events '(7))))))
(defun rime--minibuffer-deactivate ()
"Initializer for minibuffer when input method is enabled.
Currently just deactivate input method."
(with-selected-window (minibuffer-window)
(deactivate-input-method)
(remove-hook 'minibuffer-exit-hook 'rime--minibuffer-deactivate)))
(defun rime--string-pixel-width (string)
"Get the pixel width for STRING."
(let ((window (selected-window))
(remapping face-remapping-alist))
(with-temp-buffer
(make-local-variable 'face-remapping-alist)
(setq face-remapping-alist remapping)
(set-window-buffer window (current-buffer))
(insert string)
(let ((p (point-min))
(w 0)
(ft (font-at 1)))
(while (< p (point-max))
(setq w (+ w (or (-some-> (font-get-glyphs ft p (1+ p))
(aref 0)
(aref 4))
0)))
(setq p (1+ p)))
w))))
(defun rime--posframe-display-content (content)
"Display CONTENT with posframe."
(if (and (featurep 'posframe) (display-graphic-p))
(if (string-blank-p content)
(posframe-hide rime-posframe-buffer)
(let*
((preedit (rime--current-preedit))
(x (cond
((not rime-posframe-fixed-position) 0)
((not preedit) 0)
((not (overlayp rime--preedit-overlay)) 0)
(t (rime--string-pixel-width preedit)))))
(apply #'posframe-show rime-posframe-buffer
:string content
:x-pixel-offset (- x)
:background-color (face-attribute 'rime-default-face :background nil t)
:foreground-color (face-attribute 'rime-default-face :foreground nil t)
rime-posframe-properties)))
;; Fallback to popup when not available.
(rime--popup-display-content content)))
(defun rime--sidewindow-display-content (content)
"Display CONTENT with sidewindow."
(if (fboundp 'display-buffer-in-side-window)
(let* ((buffer (get-buffer-create rime-sidewindow-buffer))
(window
(display-buffer-in-side-window
buffer
`((side . ,rime-sidewindow-side)
(window-height . fit-window-to-buffer)
(window-weight . fit-window-to-buffer)))))
(with-current-buffer buffer
(when (and (string-blank-p content)
(not rime-sidewindow-keep-window))
(with-selected-window window
(quit-window)))
(erase-buffer)
(insert rime-title)
(insert " ")
(insert content)
(unless (derived-mode-p 'rime--candidate-mode)
(rime--candidate-mode))))
;; Fallback to minibuffer when not available.
(rime--minibuffer-display-content content)))
(defun rime--show-content (content)
"Display CONTENT as candidate."
(if (minibufferp)
(when rime-show-candidate
(rime--minibuffer-message content))
(cl-case rime-show-candidate
(minibuffer (rime--minibuffer-display-content content))
(message (rime--message-display-content content))
(popup (rime--popup-display-content content))
(posframe (rime--posframe-display-content content))
(sidewindow (rime--sidewindow-display-content content))
(t (progn)))))
(defun rime--candidate-prefix-char ()
"Character used to separate preedit and candidates."
(if (or (and (eq 'popup rime-show-candidate)
(or (eq 'horizontal rime-popup-style)
(eq 'vertical rime-popup-style))
(not (minibufferp)))
(and (eq 'posframe rime-show-candidate)
(or (eq 'horizontal rime-posframe-style)
(eq 'vertical rime-posframe-style))
(not (minibufferp)))
(and (eq 'sidewindow rime-show-candidate)
(or (eq 'horizontal rime-sidewindow-style)
(eq 'vertical rime-sidewindow-style))
(not (minibufferp))))
"\n"
" "))
(defun rime--candidate-separator-char ()
"Character used to spereate each candidate."
(if (or (and (eq 'popup rime-show-candidate)
(eq 'vertical rime-popup-style)
(not (minibufferp)))
(and (eq 'posframe rime-show-candidate)
(eq 'vertical rime-posframe-style)
(not (minibufferp)))
(and (eq 'sidewindow rime-show-candidate)
(eq 'vertical rime-sidewindow-style)
(not (minibufferp))))
"\n"
" "))
(defun rime--candidate-num-format (num select-labels)
"Format for the number before each candidate."
(if select-labels
(format "%s. " (nth (1- num) select-labels))
(format "%d. " num)))
(defun rime--build-candidate-content ()
"Build candidate menu content from librime context."
(let* ((context (rime-lib-get-context))
(candidates (alist-get 'candidates (alist-get 'menu context)))
(composition (alist-get 'composition context))
(select-labels (alist-get 'select-labels context))
(preedit (alist-get 'preedit composition))
(before-cursor (alist-get 'before-cursor composition))
(after-cursor (alist-get 'after-cursor composition))
;; (commit-text-preview (alist-get 'commit-text-preview context))
;; (cursor-pos (alist-get 'cursor-pos composition))
;; (sel-start (alist-get 'sel-start composition))
;; (sel-end (alist-get 'sel-end composition))
;; (input (rime-lib-get-input))
(menu (alist-get 'menu context))
(highlighted-candidate-index (alist-get 'highlighted-candidate-index menu))
(page-no (alist-get 'page-no menu))
(idx 1)
(result ""))
(when (and (rime--has-composition context) candidates)
(when (eq t rime-show-preedit)
(when preedit
(setq result (concat (propertize
(concat before-cursor)
'face 'rime-code-face)
(propertize
(concat rime-cursor)
'face 'rime-cursor-face)
(propertize
(concat after-cursor)
'face 'rime-code-face))))
(when (and page-no (not (zerop page-no)))
(setq result (concat result (format " [%d]" (1+ page-no)))))
(setq result (concat result (rime--candidate-prefix-char))))
(dolist (c candidates)
(let* ((curr (equal (1- idx) highlighted-candidate-index))
(candidates-text (concat
(propertize
(funcall rime-candidate-num-format-function idx select-labels)
'face
'rime-candidate-num-face)
(if curr
(propertize (car c) 'face 'rime-highlight-candidate-face)
(propertize (car c) 'face 'rime-default-face))
(if-let* ((comment (cdr c)))
(propertize (format " %s" comment) 'face 'rime-comment-face)
""))))
(setq result (concat result
candidates-text
(rime--candidate-separator-char))))
(setq idx (1+ idx))))
result))
(defun rime--show-candidate ()
"Display candidate."
(rime--show-content (rime--build-candidate-content)))
(defun rime--parse-key-event (event)
"Translate Emacs key EVENT to Rime's format.
the car is keyCode, the cdr is mask."
(let* ((modifiers (event-modifiers event))
(type (event-basic-type event))
(mask (+
(if (member 'shift modifiers)
1 ; 1 << 0
0)
(if (member 'meta modifiers)
8 ; 1 << 3
0)
(if (member 'control modifiers)
4 ; 1 << 2
0))))
(cons type mask)))
(defun rime--clear-overlay ()
"Clear inline preedit overlay."
(when (overlayp rime--preedit-overlay)
(delete-overlay rime--preedit-overlay)
(setq rime--preedit-overlay nil)))
(defun rime--current-preedit ()
(if (eq rime-show-preedit 'inline)
(thread-last (rime-lib-get-context)
(alist-get 'composition)
(alist-get 'preedit))
(alist-get 'commit-text-preview (rime-lib-get-context))))
(defun rime--display-preedit ()
"Display inline preedit."
(let ((preedit (rime--current-preedit)))
;; Always delete the old overlay.
(rime--clear-overlay)
;; Create the new preedit
(when preedit
(setq rime--preedit-overlay (make-overlay (point) (point)))
(overlay-put rime--preedit-overlay
'after-string
(propertize
preedit
'face
(if (and (derived-mode-p 'org-mode 'markdown-mode)
(looking-at-p "[[:print:]]"))
'rime-preedit-face
(cons 'rime-preedit-face
(plist-get (text-properties-at
(if (> (point) (point-min))
(1- (point))
(point)))
'face))))))))
(defun rime--rime-lib-module-ready-p ()
"Return if dynamic module is loaded.
If module is loaded, `rime-lib-clear-composition' should be available."
(fboundp 'rime-lib-clear-composition))
(defun rime--redisplay (&rest _ignores)
"Display inline preedit and candidates.
Optional argument IGNORES ignored."
(rime--display-preedit)
(rime--show-candidate))
(defun rime--backspace ()
"Delete one code.
By default the input-method will not handle DEL, so we need this command."
(interactive)
(when (rime--rime-lib-module-ready-p)
(let ((context (rime-lib-get-context)))
(when (rime--has-composition context)
(rime-lib-process-key 65288 0)
(rime--redisplay)))
(rime--refresh-mode-state)))
(defun rime--escape ()
"Clear the composition."
(interactive)
(when (rime--rime-lib-module-ready-p)
(let ((context (rime-lib-get-context)))
(when (rime--has-composition context)
(rime-lib-clear-composition)
(rime--redisplay)))
(rime--refresh-mode-state)))
(defun rime--return ()
"Commit the raw input."
(interactive)
(when (rime--rime-lib-module-ready-p)
(if rime-return-insert-raw
(rime--commit
(rime-lib-get-input))
(rime--commit-preview))))
(defun rime--shift-return ()
"Commit the preedit."
(interactive)
(when (rime--rime-lib-module-ready-p)
(rime--commit-preedit)))
(defun rime--ascii-mode-p ()
"If ascii-mode is enabled."
(rime-lib-get-option "ascii_mode"))
(defun rime--inline-ascii ()
"Toggle inline ascii."
(let ((key-code
(cl-case rime-inline-ascii-trigger
(shift-l 65505)
(shift-r 65506)
(control-l 65507)
(control-r 65508)
(alt-l 65513)
(alt-r 65514))))
(rime-lib-process-key key-code 0)
(rime-lib-process-key key-code 1073741824)))
(defun rime-inline-ascii ()
"Toggle inline ascii and redisplay."
(interactive)
(rime--inline-ascii)
(rime--redisplay))
(defun rime--text-read-only-p ()
"Return t if the text at point is read-only."
(and (or buffer-read-only
(get-pos-property (point) 'read-only))
(not (or inhibit-read-only
(get-pos-property (point) 'inhibit-read-only)))))
(defun rime-input-method (key)
"Process KEY with input method."
(setq rime--current-input-key key)
(when (rime--rime-lib-module-ready-p)
(if (or (rime--text-read-only-p)
(and (not rime-active-mode)
(or (and overriding-terminal-local-map
(or (not (eq (cadr overriding-terminal-local-map)
universal-argument-map))
(lookup-key overriding-terminal-local-map (vector key))))
overriding-local-map))
(and (not (rime--should-enable-p))
(not (rime--has-composition (rime-lib-get-context)))))
(list key)
(let ((should-inline-ascii (rime--should-inline-ascii-p))
(inline-ascii-prefix nil))
(when (and should-inline-ascii rime-inline-ascii-holder
(not (equal 32 rime--current-input-key))
(string-blank-p (rime-lib-get-input)))
(rime-lib-process-key rime-inline-ascii-holder 0)
(rime--inline-ascii)
(setq inline-ascii-prefix t))
(let ((handled (rime-lib-process-key key 0)))
(with-silent-modifications
(let* ((context (rime-lib-get-context))
(commit-text-preview (alist-get 'commit-text-preview context))
;; (preedit (thread-last context
;; (alist-get 'composition)
;; (alist-get 'preedit)))
(commit (rime-lib-get-commit)))
(unwind-protect
(cond
((not handled)
(list key))
(commit
(rime--clear-overlay)
(mapcar 'identity commit))
(t
(when should-inline-ascii
(if (and (not (rime--ascii-mode-p))
commit-text-preview)
(rime--inline-ascii)
(when inline-ascii-prefix
(rime-lib-set-cursor-pos 1)
(rime-lib-process-key 65288 0)
(rime-lib-set-cursor-pos 1))))
(rime--redisplay)))
(rime--refresh-mode-state)))))))))
(defun rime-send-keybinding ()
"Send key event to librime."
(interactive)
(let* ((parsed (rime--parse-key-event last-input-event))
(key-raw (car parsed))
(key (if (numberp key-raw)
key-raw
(cl-case key-raw
(return #xff0d)
(tab #xff09)
(home #xff50)
(left #xff51)
(up #xff52)
(right #xff53)
(down #xff54)
(prior #xff55)
(next #xff56)
(delete #xffff)
(escape #xff1b)
(t key-raw))))
(mask (cdr parsed)))
(unless (numberp key)
(error "Can't send this keybinding to librime"))
(rime-lib-process-key key mask)
;; check if there is something to commit only when no input available
;; since the context is not committed via input method
;; we may have some edge cases here.
(when (string-blank-p (rime-lib-get-input))
(-some-> (rime-lib-get-commit)
(insert)))
(rime--redisplay)
(rime--refresh-mode-state)))
(defun rime--clear-state ()
"Clear composition, preedit and candidate."
(setq rime--current-input-key nil)
(rime-lib-clear-composition)
(rime--display-preedit)
(rime--show-candidate)
(rime--refresh-mode-state))
(defun rime--clear-state-before-unrelated-command ()
"Clear state if this command is unrelated to rime."
(unless (or (not (symbolp this-command))
(string-prefix-p "rime-" (symbol-name this-command))
(string-match-p "self-insert" (symbol-name this-command)))
(rime--clear-state)))
(defun rime--commit (value)
"Insert VALUE, then clear state."
(when (and value (rime--rime-lib-module-ready-p))
(rime--clear-overlay)
(insert value)
(rime-lib-clear-composition)
(rime--redisplay)
(rime--refresh-mode-state)))
(defun rime--commit-preview ()
"Commit the currently previewed text."
(when (rime--rime-lib-module-ready-p)
(rime--commit
(-some->> (rime-lib-get-context)
(alist-get 'commit-text-preview)))))
(defun rime--commit-preedit ()
"Commit the currently previewed text."
(when (rime--rime-lib-module-ready-p)
(rime--commit
(-some->> (rime-lib-get-context)
(alist-get 'composition)
(alist-get 'preedit)))))
(defun rime-commit1 ()
"Commit the 1st item if exists."
(interactive)
(when (rime-lib-process-key 32 0)
(let ((commit (rime-lib-get-commit)))
(insert commit)
(rime--clear-state))))
(defcustom rime-commit1-forall nil "Non-nil to auto commit the 1st item before any command unrelated to rime.")
(defun rime--commit1-before-unrelated-command ()
"Commit the 1st item if this command is unrelated to rime."
(unless (or (not (symbolp this-command))
(string-prefix-p "rime-" (symbol-name this-command))
(string-match-p "self-insert" (symbol-name this-command)))
(rime-commit1)))
(defun rime--refresh-mode-state ()
"Toggle variable `rime-active-mode' based on if context is available."
(if (rime--has-composition (rime-lib-get-context))
(rime-active-mode 1)
;; Whenever we disable `rime-active-mode', we should also unset `rime--temporarily-ignore-predicates'.
(when rime--temporarily-ignore-predicates
(setq rime--temporarily-ignore-predicates nil)
(run-hooks 'rime-force-enable-exit-hook))
(rime-active-mode -1)))
(defun rime-select-schema ()
"Select Rime schema."
(interactive)
(if rime--lib-loaded
(let* ((schema-list (rime-lib-get-schema-list))
(schema-names (mapcar 'cdr schema-list))
(schema-name (completing-read "Schema: " schema-names))
(schema (thread-last schema-list
(seq-find (lambda (s)
(equal (cadr s) schema-name)))
(car))))
(message "Rime schema: %s" schema-name)
(rime-lib-select-schema schema))
(message "Rime is not activated.")))
;;;###autoload
(defun rime-lighter ()
"Return a lighter which can be used in mode-line.
The content is `rime-title'.
You can customize the color with `rime-indicator-face' and `rime-indicator-dim-face'."
(if (and (equal current-input-method "rime")
(bound-and-true-p rime-mode))