如何将仅文本数据粘贴到OneNote 2013?


Answers:


7

如果您的键盘上有上下文菜单键,则只需按两次即可完成。

抱歉,我无法提供图片。它位于Windows键和Ctrl键之间,在箭头键旁边。

上下文菜单将打开,然后您可以按“ T”,这将仅使用光标所在位置的键盘来执行操作。



5

或者,将AutoHotkey(https://autohotkey.com)与以下脚本块一起使用。此过滤器仅在OneNote处于活动状态并且在这种情况下检测到CTRL + SHIFT + V并将其转换为ALT + HVT时才应用快捷方式,仅粘贴保留文本。

#IfWinActive ahk_exe ONENOTE.EXE
^+v::
SendInput !hvt
Return
#IfWinActive

0

我不确定我有哪个版本,但是如果您粘贴并且出现小ctrl框,则可以按向下箭头,然后选择粘贴纯文本,再次转到ctrl框,然后可以按默认粘贴。


0

这是我可以为Office 365附带的OneNote应用提供的最佳AutoHotkey代码。请注意,筛选器将选择所有Metro / Modern / Universal / Windows Store应用。

; Office 365 OneNote Metro app hotkeys
#IfWinActive ahk_class ApplicationFrameWindow

; "Text Only" paste in OneNote
^+v::
  SendInput, {appskey}
  Sleep, 100
  SendInput, {right}
  Sleep, 100
  SendInput, {down}{down}{enter}
return

#IfWinActive
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.