本文翻译自:Keyboard shortcut to paste clipboard content into command prompt window (Win XP) [closed]

Is there a keyboard shortcut for pasting the content of the clipboard into a command prompt window on Windows XP (instead of using the right mouse button)? 是否有键盘快捷键用于将剪贴板的内容粘贴到Windows XP的命令提示符窗口中(而不是使用鼠标右键)?

The typical Shift + Insert does not seem to work here. 典型的Shift + Insert似乎不适用于此。


#1楼

参考:https://stackoom.com/question/YKJ/键盘快捷键将剪贴板内容粘贴到命令提示符窗口-Win-XP-关闭


#2楼

Yes.. but awkward. 是..但很尴尬。 Link 链接

alt + Space , e , k <-- for copy and alt + Space , e , k < - 用于复制和
alt + Space , e , p <-- for paste. alt + Space , e , p < - 用于粘贴。


#3楼

This is not really a shortcut but just a quick access to the control menu: Alt-space EP 这不是真正的快捷方式,只是快速访问控制菜单:Alt-space EP

If you can use your mouse, right click on the cmd window works as paste when I tried it. 如果你可以使用你的鼠标,当我尝试它时,右键单击cmd窗口就像粘贴一样。


#4楼

Not really programming related, but I found this on Google, there is not a direct keyboard shortcut , but makes it a little quicker. 不是真的与编程相关,但我在Google上发现了这一点 , 没有直接的键盘快捷键 ,但使它更快一些。

To enable or disable QuickEdit mode: 要启用或禁用QuickEdit模式:

  1. Open the MS-DOS program, or the command prompt. 打开MS-DOS程序或命令提示符。
  2. Right-click the title bar and press Properties. 右键单击标题栏,然后按“属性”。
  3. Select the Options tab. 选择“选项”选项卡。
  4. Check or un-check the QuickEdit Mode box. 选中或取消选中QuickEdit Mode框。
  5. Press OK. 按确定。
  6. In the Apply Properties To Shortcut dialog, select the Apply properties to current window only if you wish to change the QuickEdit setting for this session of this window only, or select Modify shortcut that started this window to change the QuickEdit setting for all future invocations of the command prompt, or MS-DOS program. 在“将属性应用于快捷方式”对话框中,仅当您希望仅更改此窗口的此会话的“快捷方式”设置时,才选择“将属性应用于当前”窗口,或选择“启动此窗口的修改快捷方式”以更改以后所有调用的QuickEdit设置。命令提示符,或MS-DOS程序。

To Copy text when QuickEdit is enabled: 要在启用QuickEdit时复制文本:

  1. Click and drag the mouse pointer over the text you want. 单击并将鼠标指针拖动到所需的文本上。
  2. Press Enter (or right-click anywhere in the window) to copy the text to the clipboard. 按Enter键(或右键单击窗口中的任意位置)将文本复制到剪贴板。

To Paste text when QuickEdit is enabled: 启用QuickEdit时粘贴文本:

  1. Right-click anywhere in the window. 右键单击窗口中的任意位置。

To Copy text when QuickEdit is disabled: 要在禁用QuickEdit时复制文本:

  1. Right-click the title bar, press Edit on the menu, and press Mark. 右键单击标题栏,按菜单上的“编辑”,然后按“标记”。
  2. Drag the mouse over the text you want to copy. 将鼠标拖到要复制的文本上。
  3. Press Enter (or right-click anywhere in the window) to copy the text to the clipboard. 按Enter键(或右键单击窗口中的任意位置)将文本复制到剪贴板。

To Paste text when QuickEdit is disabled: 禁用QuickEdit时粘贴文本:

  1. Right-click the title bar, press Edit on the menu, and press Paste. 右键单击标题栏,按菜单上的“编辑”,然后按“粘贴”。

#5楼

You could try using Texter and create something unlikely like: 您可以尝试使用Texter并创建不太可能的内容:

./p , triggered by space and replacing the text with %c ./p,由空格触发并用%c替换文本

I just tested it and it works fine. 我只是测试它,它工作正常。 The only gotcha is to use a rare sequence, as Texter cannot restrict this to just cmd. 唯一的问题是使用罕见的序列,因为Texter不能将此限制为仅cmd。

There are probably other utilities of this kind which could work, and even AutoHotKey , upon which Texter is built could do it better, but Texter is easy :-) 可能有其他类似的实用工具可以工作,甚至AutoHotKey ,构建Texter可以做得更好,但Texter很容易:-)


#6楼

I personally use a little AutoHotkey script to remap certain keyboard functions, for the console window (CMD) I use: 我个人使用一个小的AutoHotkey脚本重新映射某些键盘功能,对于我使用的控制台窗口(CMD):

; Redefine only when the active window is a console window
#IfWinActive ahk_class ConsoleWindowClass; Close Command Window with Ctrl+w
$^w::
WinGetTitle sTitle
If (InStr(sTitle, "-")=0) { Send EXIT{Enter}
} else {Send ^w
}return ; Ctrl+up / Down to scroll command window back and forward
^Up::
Send {WheelUp}
return^Down::
Send {WheelDown}
return; Paste in command window
^V::
; Spanish menu (Editar->Pegar, I suppose English version is the same, Edit->Paste)
Send !{Space}ep
return#IfWinActive

键盘快捷键将剪贴板内容粘贴到命令提示符窗口(Win XP)[关闭]相关推荐

  1. cmd暂停快捷键_是否有键盘快捷键可以暂停正在运行的CMD窗口的输出?

    cmd暂停快捷键 When running a batch script, you may need or want to pause the output in the CMD window so ...

  2. 史上最全Modelsim键盘快捷键和鼠标操作——官网文档翻译

    Modelsim键盘快捷键和鼠标操作 使用Modelsim查看波形,大多数的操作是键盘和鼠标配合,通过熟悉快捷键操作可以帮助提操作效率. 内容来自Modelsim的官方指导手册,在GUI界面中可以这样 ...

  3. win10复制粘贴linux,如何在Windows 10的Bash Shell中启用复制和粘贴键盘快捷键 | MOS86...

    Windows 10s Bash shell终于有了方便的复制和粘贴键盘快捷键,但是出于兼容性原因,默认情况下将它们禁用. 这些快捷方式在2018年10月更新中可用,该更新最初代号为Redstone ...

  4. macos复制粘贴快捷键 快速_探究Mac OS十大键盘快捷键

    无论是新手还是老手,总不能忘记mac系统给小伙伴们带来的体验感,但是总要记住10大Mac键盘快捷键方式,将减少对鼠标的依赖而帮助你更快地提高工作效率. 十大Mac键盘快捷键 首先,看一下你Mac电脑的 ...

  5. excel vba 把内容放到剪贴板,以及把剪贴板的内容粘贴到表格中

    excel vba 把内容放到剪贴板,以及把剪贴板的内容粘贴到表格中 如果你从其他地方复制了文字.图片等内容,比如从网页上.然后要粘贴到表格中. 只需要一句就好了: ActiveSheet.Paste ...

  6. UltraEdit剪贴板内容有时无法直接粘贴的原因

    很久之前就发现有这么个问题,用UltraEdit编辑器(以下简称UE)复制或剪切文本后,有时无法直接粘贴到我用Delphi7写的程序里,但如果先粘贴到记事本再从记事本复制粘贴是可以的,特别是在通过远程 ...

  7. python自动粘贴文字_在python中自动将文件内容复制到剪贴板并粘贴到纯文本文件中...

    我只想用我写的这个小脚本来解析PDF文件中的数据.在 但是,我似乎遇到了python的问题,更具体地说,PyPDF2模块无法从pdf文件中读取文本.打印出来的数据都是模糊的,基本上不可读.然而,当我打 ...

  8. Windows 11 键盘快捷键终极列表

    非常实用的 Windows 11 键盘快捷键终极列表 文章目录 非常实用的 Windows 11 键盘快捷键终极列表 按操按键划分 按操作类型划分 1. Windows 11 新增快捷键 2. Win ...

  9. 常用键盘快捷键 键盘快捷键大全

    常用键盘快捷键: Win + L 快速注销 Alt + 双击图标,打开属性 Alt+Enter 打开属性 ALT + ← 返回前一窗口 win + R 运行界面 alt + tab 窗口切换 Alt+ ...

最新文章

  1. 线程VS进程,多线程VS多进程,并行VS并发,单核cpuVS多核cpu
  2. 更改Windows Server Core 2008计算机名字和配置网络连接
  3. SQL SERVER CURSOR
  4. 【机器视觉】 Halcon设置自动保存
  5. PHP5加载|安装外部C动态库
  6. Veeam 发布 2022 年数据保护趋势报告,开发者需关注哪些点?
  7. UVA - 753 A Plug for UNIX(网络流)
  8. pandas使用dataframe直接绘图时,取消图例(legend)
  9. 恋上数据结构完整笔记(第1季 + 第2季)
  10. 事务的四个属性ACID
  11. 计算机记录乐器声音的文件是,一、用计算机录音的过程.pptx
  12. vb.net它SqlHelper制备及应用
  13. mysql主从复制不同步案例_mysql主从复制不同步的问题
  14. UNIX 环境高级编程之我见
  15. win版mysql下载_MYSQL下载及安装--windows版本
  16. c语言日历程序实验报告,万年历实验报告.doc
  17. 微信打开h5链接,缓存未清除解决办法
  18. 新视野大学英语第三版3课后翻译
  19. mysql怎么设置001,[MySQL光速入门]001 让MySQL跑起来
  20. 销售型呼叫中心系统特点

热门文章

  1. android:inputType 参数详解
  2. 利用正则计算输入内容的长度
  3. Samba 共享目录设置在Home目录下
  4. zz推荐的软件测试英文网站
  5. bzoj4144【AMPPZ2014】Petrol
  6. nodejs模块之event
  7. BZOJ 3555 [CTSC2014] 企鹅QQ Hash
  8. 由一个activity跳转到另一个activity
  9. MAGENTO DEBUG
  10. Silverlight中使用MVVM