abhpc

Results 9 comments of abhpc

> Use `alt+enter`. For most ssh clients, "Alt+enter" is full screen.

> How about `esc+enter`? It is OK but not convenient. For example, popular ssh clients (e.g., xshell and finalshell) have command editor, and the input words can be sent easily...

> Ctrl-space works. and implementation is not to bad. > > ![image](https://user-images.githubusercontent.com/26652420/222773140-c971d473-95ce-4290-b81b-4fd6d6111b2e.png) Not friendly for Mac users.

> 好的,安排 多谢大佬啊,什么时候上线呢?现在国内确实得用代理了,最好支持socks5。

> 我个人对代理的优先级不是很高,而且最近一直要修复其他的问题。可能需要等待几天或者一周。有其他人感兴趣实现这个代理功能吗? 好的,谢谢。可惜我是做底层的,不太懂app的开发。等大佬更新了~O(∩_∩)O哈哈~

> 既然大家这么需要,那我做个简单的调查。如果你需要这个功能,就点击下面的【爱心】。超过 10 个我就马上开发,超过 50 个我今晚就开发。 大佬,爱心够10个了,赶紧上吧,O(∩_∩)O哈哈~

> 既然大家这么需要,那我做个简单的调查。如果你需要这个功能,就点击下面的【爱心】。超过 10 个我就马上开发,超过 50 个我今晚就开发。 作者在考虑加socks5代理了吗?

> 既然大家这么需要,那我做个简单的调查。如果你需要这个功能,就点击下面的【爱心】。超过 10 个我就马上开发,超过 50 个我今晚就开发。 已经超过50个爱心啦

问了一下ChatGPT:tauri如何通过socks5代理上网? 要在Tauri应用程序中使用SOCKS5代理服务,您需要进行以下操作: 1. 在Tauri应用程序中启用Electron的代理服务并指定SOCKS5代理: ```javascript const { app } = require('@electron/remote'); app.commandLine.appendSwitch('proxy-server', 'socks5://host:port'); ``` 其中,`host` 和 `port` 分别是 SOCKS5 代理服务器的主机名和端口号。 2. 安装 Socks5 Client 库: ``` npm install socks5-client ```...