我的Emacs编辑器不能使用ibus中文输入法,当光标在Emacs上时,ibus显示“没有输入窗口”。
我使用LC_CTYPE="zh_CN.UTF-8" emacs这样的别名运行Emacs,它以前确实可以工作,但我不知道为什么它现在不能工作,可能是系统更新。
关于我的系统: Gentoo Linux with Gnome3,我安装了Emacs23和Emacs24,它们现在都不能与ibus一起工作。
注: Ibus可以在其他程序上运行,Emacs可以很好地显示汉字。
我一直在尝试运行google的示例输入法,但没有成功。问题是,它甚至没有执行。正如您在下面的代码中看到的,console.log应该至少给我一行反馈,而不是:
var context_id = -1;
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
var ime_api = chrome.input.ime;
我使用letter-spacing: 10px来避免写"s o m e e t h i n g.l i k e t h i s“。 它工作得很好。但是letter-spacing也在Chinese Em dash (破折号, —— )之间引入了空格。 渲染结果很难看,因为它将Em虚线分成了两部分。而且Em的破折号应该是连接的。 示例如下: p { letter-spacing: 10px; } <p>这句话不是我说的。<br />——鲁迅</p> 我如何在每个字符之间添加空格,同时仍然保持Em破折号之类的东西连接?