sekka 1.5.1 → 1.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/VERSION.yml +1 -1
- data/emacs/sekka.el +6 -4
- data/lib/sekka/sekkaversion.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d5abbcf83124f9015864d3d437cd1c3d5e2aa686
|
|
4
|
+
data.tar.gz: 95bf61931e93840b7e048d2470517b685fdf7e16
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0d95f8af96e739a51d1b5f70b06c5d4b106a5264122fb9b07c98662369d34837558537c3c6485f2981e9a032447d6b3b9a5da1d497826cc9edc58846b0c6baf5
|
|
7
|
+
data.tar.gz: 28809f58e2083bce12690ff0568e15f587f87e7d5511c7c36259a8df106b593e839f19751ab703406d95cfa4b9a98f3607422a1eb7ccb5d4d886418dceab5374
|
data/VERSION.yml
CHANGED
data/emacs/sekka.el
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
;;
|
|
3
3
|
;; "sekka.el" is a client for Sekka server
|
|
4
4
|
;;
|
|
5
|
-
;; Copyright (C) 2010
|
|
5
|
+
;; Copyright (C) 2010-2014 Kiyoka Nishiyama
|
|
6
6
|
;; This program was derived from sumibi.el and yc.el-4.0.13(auther: knak)
|
|
7
7
|
;;
|
|
8
8
|
;;
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
:type 'integer
|
|
78
78
|
:group 'sekka)
|
|
79
79
|
|
|
80
|
-
(defcustom sekka-realtime-guide-limit-lines
|
|
80
|
+
(defcustom sekka-realtime-guide-limit-lines 2
|
|
81
81
|
"最後に変換した行から N 行離れたらリアルタイムガイド表示が止まる"
|
|
82
82
|
:type 'integer
|
|
83
83
|
:group 'sekka)
|
|
@@ -671,7 +671,9 @@ non-nil で明示的に呼びだすまでGoogleIMEは起動しない。"
|
|
|
671
671
|
(defun sekka-char-charset (ch)
|
|
672
672
|
(let ((result (char-charset ch)))
|
|
673
673
|
(sekka-debug-print (format "sekka-char-charset:1(%s) => %s\n" ch result))
|
|
674
|
-
|
|
674
|
+
(if (multibyte-string-p (char-to-string ch))
|
|
675
|
+
'japanese-jisx0208
|
|
676
|
+
result)))
|
|
675
677
|
(defun sekka-char-charset (ch)
|
|
676
678
|
(sekka-debug-print (format "sekka-char-charset:2(%s) => %s\n" ch (char-category)))
|
|
677
679
|
(cond ((equal (char-category ch) "a") 'ascii)
|
|
@@ -1648,7 +1650,7 @@ point から行頭方向に同種の文字列が続く間を漢字変換しま
|
|
|
1648
1650
|
(setq default-input-method "japanese-sekka")
|
|
1649
1651
|
|
|
1650
1652
|
(defconst sekka-version
|
|
1651
|
-
"1.5.
|
|
1653
|
+
"1.5.2" ;;SEKKA-VERSION
|
|
1652
1654
|
)
|
|
1653
1655
|
(defun sekka-version (&optional arg)
|
|
1654
1656
|
"入力モード変更"
|
data/lib/sekka/sekkaversion.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sekka
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.5.
|
|
4
|
+
version: 1.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kiyoka Nishiyama
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-04-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: eventmachine
|