Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ctrl+c的时候在命令行里执行了,实际是想复制的 #2561

Open
chenzhoucepan opened this issue Oct 22, 2024 · 5 comments
Open

ctrl+c的时候在命令行里执行了,实际是想复制的 #2561

chenzhoucepan opened this issue Oct 22, 2024 · 5 comments

Comments

@chenzhoucepan
Copy link

No description provided.

@Papklp
Copy link

Papklp commented Oct 24, 2024

命令行里复制用ctrl+shift+c

@JavaZeroo
Copy link

命令行里复制用ctrl+shift+c

怎么修改keymaps改为ctrl+c为复制呢?

类似Windows Terminal的逻辑,选取了内容ctrl+c就是复制,没有选取内容则发送到shell

@PushengHe
Copy link

+1

@PushengHe
Copy link

编辑如下文件,
WindTermx64_v2.4.0\global\wind.keymaps

{ "keys": "<Ctrl+Shift+C>",
"modes": "local, remote",
"action": "Text.Copy"
}

调整 ->

{ "keys": "<Ctrl+C>",
"modes": "local, remote",
"action": "Text.Copy"
}

重新打开WindTerm

@JavaZeroo
Copy link

编辑如下文件, WindTermx64_v2.4.0\global\wind.keymaps

{ "keys": "<Ctrl+Shift+C>", "modes": "local, remote", "action": "Text.Copy" }

调整 ->

{ "keys": "<Ctrl+C>", "modes": "local, remote", "action": "Text.Copy" }

重新打开WindTerm

这个在官方的blog上面有,但是效果不一样。没有办法发送Ctrl+c了

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants
@chenzhoucepan @PushengHe @Papklp @JavaZeroo and others