Penghui Guo

Results 11 comments of Penghui Guo

@topwebs Without modify the source code, you can replace the default set of "Javascript template string for new tasks" ```javascript Read "?${url}:[${title}](${url})?!${url}:${title}!" ``` with: ```javascript Read "?${select_uri}:[${title}](${select_uri})?!${select_uri}:${title}!" ``` This directs...

@zoelir729 A temporary solution: Tools -> ZotFile Preferences -> Advanced Settings -> "☑️rename special characters (diacritics) from file name" Update: Works for __non English non Chinese__ file name, but still...

没有计划。但是可能已经有类似的了。

I don't know either. Does OpenAI provide this API? But I have seen [vscode-chatgpt](https://github.com/gencay/vscode-chatgpt) provide the function *"🔥Stop the responses to save your tokens"*.

可以尝试在 Terminal 中运行 ` -c "import keyboard; keyboard.write('test')"`, 看 'test' 有没有被输出。 可能是因为 Python 的 keyboard 包太久没有更新,[不兼容新版本的 macOS](https://github.com/boppreh/keyboard/issues/585)。

@zhuiyue132 谢谢! 能否帮忙尝试下 ```Python import subprocess applescript = """ tell application "System Events" to keystroke "test" """ subprocess.call(['osascript', '-e', applescript]) ``` 能否在 Ventura 下运行。 会尽快修复。

There are two alternatives for the Python `keyboard` module: [pynput](https://pynput.readthedocs.io/en/latest/index.html) and [PyAutoGUI](https://pyautogui.readthedocs.io/en/latest/index.html). Is there anyone who can test which one is compatible with macOS Ventura?

> @zhuiyue132 谢谢! > > 能否帮忙尝试下 > > ```python > import subprocess > > applescript = """ > tell application "System Events" to keystroke "test" > """ > > subprocess.call(['osascript',...

@zhuiyue132 谢谢! 在 macOS Monterey 使用 `keyboard` + 系统自带输入法 没有类似问题,输出示例如下: ```js >>> js 冒泡排序带中文注释 function bubbleSort(arr) { const len = arr.length; // 获取数组长度,用于控制循环次数 for (let i = 0; i <...