pimgeek

Results 9 comments of pimgeek

> Hi @pimgeek > > > weird things happen --- I cannot use QuickConnect button. > > Strange, I tested it with http://tiddlymap.org and could find any issue 🤔 I...

现在, 我主要使用基于 Win10 的 Debian Linux Sub System, 感觉体验上明显比 Git for Windows 好很多, 毕竟不需要再依赖 cmd.exe 了. 而且, 在这个系统中, 可以直接创建指向 Win10 的符号链接 (`/mnt/d/path-to-git-repo/`), 比以前架虚拟机, 设置 samba 服务访问要方便而且稳定得多. 而且 Linux 命令行实在不方便的, 在...

I had encountered similar problems, and I recommend using [winstone.jar](https://github.com/geronimo-iia/winstone) instead of tomcat. the command line for your reference: ``` java -jar winstone.jar --warfile=piggydb.war \ --httpsListenAddress=0.0.0.0 --httpsPort=443 \ --httpPort=-1 --ajp13Port=-1...

> I am also unable to replicate this. Do those reproduction steps work on tiddlymap? It's been quite long since I first encountered this error, and I cannot remember how...

After an hour's trial-and-error, I finally know how to tell pip how to find espeak library, using the following command: ```bash AENEAS_WITH_CEW=True; LIBRARY_PATH=/opt/homebrew/lib pip install aeneas ``` and the diagnosis...

我可以通过修改配置关闭 uniquifier 或者改变默认的逐码提示行为吗? > Not a bug. 注意到 kjkj, kjkju, kjkjuu 的输出都是 "看看",因此会被 uniquifier 唯一化到第一个输出上,对应于 kjkj 的输出,因此没有 ~u 和 ~uu 的注解。

我昨天试过你说的这种方法,但不知为什么还是不能出现 4 位以上编码的剩余编码提示。你以前用过的开源输入方案中,有没有编码提示支持 4 位以上编码的例子?我想学习一下 🤔 > 直接从filters里删除uniquifier。不过关闭uniquifier会把所有相同的输出都保留,你可能不想要这种行为。

> 没有。你的原始问题是什么?我也许可以建议一个更好的办法。 我开发了一套音形结合的输入方案,它的前四码是双拼编码,后两码是词组首字的第一个字根码,以及末字的第一个字根码。有一位使用此方案的用户反馈说,希望对词组编码做逐码提示,我推测 Ta 是因为很难直接在头脑中反应出词组首字与末字的根码,才提出这个需求(我自己其实并不需要的);但是我很好奇为什么同一词组有多个重码 + 4 码以上的那些编码就无法自动提示了 我曾怀疑是我自定义的 preedit filter 和 input processor 有问题,但是即使把它们禁用掉也不行。我也曾怀疑是 lua 代码没彻底禁用完全,但是在这种情况下,感觉还是问问 Rime 开发者或专家用户比较好,自己反复修改代码感觉收效甚微 🤔

> 按我的理解,就是输入一个词,同时提示形码部分。所以我觉得可以使用 reverse_lookup_filter 查出词语的编码附在 comment 上即可,可以用 comment format 取出对应信息。另外用 lua filter 手动调用 ReverseLookup 也可以实现相应逻辑。 抱歉回复得有点晚,我认为你推荐的思路可行。上次因为时间原因没继续跟进,如果后面尝试成功,再来更新这条 Issue 😃