<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>快捷键 &#8211; 超哥工作室</title>
	<atom:link href="https://www.chaoneo.cn/tags/%E5%BF%AB%E6%8D%B7%E9%94%AE/feed" rel="self" type="application/rss+xml" />
	<link>https://www.chaoneo.cn</link>
	<description>CHAONEO.CN</description>
	<lastBuildDate>Sat, 16 Aug 2025 13:49:36 +0000</lastBuildDate>
	<language>zh-CN</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.5.3</generator>

<image>
	<url>https://img2.ladyww.cn/chaoneo/2022/09/20220921204437747.png</url>
	<title>快捷键 &#8211; 超哥工作室</title>
	<link>https://www.chaoneo.cn</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Windows和macOS快捷键同步的解决方法</title>
		<link>https://www.chaoneo.cn/archives/3827.html</link>
		
		<dc:creator><![CDATA[超哥]]></dc:creator>
		<pubDate>Sat, 16 Aug 2025 13:49:36 +0000</pubDate>
				<category><![CDATA[分享]]></category>
		<category><![CDATA[macos]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[快捷键]]></category>
		<guid isPermaLink="false">https://www.chaoneo.cn/?p=3827</guid>

					<description><![CDATA[大家都知道Windows和macOS环境下的快捷键是同理，但是不同的按键，有的人会在远程控制上使用映射来解决，因为超哥用的rustdesk自建的远程，现在的主力是macbook，但...]]></description>
										<content:encoded><![CDATA[<p>大家都知道Windows和macOS环境下的快捷键是同理，但是不同的按键，有的人会在远程控制上使用映射来解决，因为超哥用的rustdesk自建的远程，现在的主力是macbook，但是也有30%的时候需要使用Windows下的软件。这个时候就会再复制粘贴上使用起来不停的切换。说实话，如果是少量的使用是没问题的，但是使用的多的话，特别的麻烦，今天超哥为大家分享出解决方法。</p>
<p><img decoding="async" src="https://img2.ladyww.cn/alist/20250816214907860.png" /></p>
<h3>macOS快捷键修改</h3>
<div class="auto-hide-last-sibling-br paragraph-JOTKXA paragraph-element br-paragraph-space">Windows 系统中复制粘贴的快捷键分别是 Ctrl+C 和 Ctrl+V，而 MacBook 系统中则是 Command+C 和 Command+V。要使 MacBook 的复制粘贴快捷键与 Windows 一样，可通过修改键盘修饰键映射来实现，具体步骤如下：</div>
<p>&nbsp;</p>
<ol class="auto-hide-last-sibling-br">
<li>打开 “系统设置”，选择 “键盘”。</li>
<li>点击 “键盘快捷键”，然后选择 “修饰键&#8230;”。</li>
<li>在顶部下拉菜单中选择你使用的键盘。</li>
<li>将 “Control (^) 键” 改为 “Command (⌘)”，将 “Command (⌘) 键” 改为 “Control (^)”。</li>
<li>点击 “好” 保存设置。</li>
</ol>
<div class="auto-hide-last-sibling-br paragraph-JOTKXA paragraph-element br-paragraph-space">完成上述设置后，MacBook 上的复制粘贴快捷键就会变为 Ctrl+C 和 Ctrl+V，与 Windows 系统一致。</div>
<div></div>
<h3>Windows快捷键修改</h3>
<div>
<div class="auto-hide-last-sibling-br paragraph-JOTKXA paragraph-element br-paragraph-space">可以将 Windows 的复制粘贴快捷键设置为和 MacBook 一样，即 Command+C 和 Command+V，不过需要借助第三方软件来实现。以下是使用 AutoHotkey 软件进行设置的步骤：</div>
<p>&nbsp;</p>
<ol class="auto-hide-last-sibling-br">
<li>下载 AutoHotkey，下载地址为：<a class="link-ZNPgAX" href="https://www.autohotkey.com/" target="_blank" rel="noopener">https://www.autohotkey.com/</a>。</li>
<li>安装好 AutoHotkey 后，退出安装程序。</li>
<li>在桌面右键，新建一个 AutoHotKey Script，桌面上会出现一个名为 “新建 AutoHotKey Script.ahk” 的文件。</li>
<li>右键该文件，选择 “Edit script”，将文件中默认内容删除，然后粘贴以下内容：</li>
</ol>
<div class="hcb_wrap">
<pre class="prism line-numbers lang-plain" data-lang="Plain Text"><code>; Windows模拟Mac风格快捷键配置
; 使用Win键(⊞)替代Mac的Command键(⌘)

; 复制 (Mac: Command+C → Windows: Win+C)
LWin &amp; c::Send, ^c

; 粘贴 (Mac: Command+V → Windows: Win+V)
LWin &amp; v::Send, ^v

; 剪切 (Mac: Command+X → Windows: Win+X)
LWin &amp; x::Send, ^x

; 撤销 (Mac: Command+Z → Windows: Win+Z)
LWin &amp; z::Send, ^z

; 全选 (Mac: Command+A → Windows: Win+A)
LWin &amp; a::Send, ^a

; 保存 (Mac: Command+S → Windows: Win+S)
LWin &amp; s::Send, ^s

; 查找 (Mac: Command+F → Windows: Win+F)
LWin &amp; f::Send, ^f

; 关闭窗口 (Mac: Command+W → Windows: Win+W)
LWin &amp; w::Send, ^w

; 新建 (Mac: Command+N → Windows: Win+N)
LWin &amp; n::Send, ^n

; 打印 (Mac: Command+P → Windows: Win+P)
LWin &amp; p::Send, ^p

; 切换应用程序 (类似Mac的Command+Tab)
LWin &amp; Tab::Send, !{Tab}

; 注：LWin代表左Win键，&amp;用于组合键，^代表Ctrl键，+代表Shift键
    </code></pre>
</div>
<ol start="5" class="auto-hide-last-sibling-br">
<li>保存文件。</li>
<li>右键文件，选择 “Run script”。</li>
</ol>
<p>&nbsp;</p>
<div class="auto-hide-last-sibling-br paragraph-JOTKXA paragraph-element br-paragraph-space">完成以上操作后，Windows 系统中按下 Win 键 + C 就会执行复制操作，按下 Win 键 + V 就会执行粘贴操作，实现了与 MacBook 类似的快捷键设置。</div>
</div>
<div></div>
<h3>使用总结</h3>
<div>这里超哥使用第二种办法，要知道macOS的快捷键相对间距很近，按习惯之后，也就返回不去了。大家可以根据自己的情况来调整。</div>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
