Home » Questions » Computers [ Ask a new question ]

Using Ctrl+V to paste unformatted text by default in OpenOfficedotorg's Calc

Using Ctrl+V to paste unformatted text by default in OpenOfficedotorg's Calc

Is there a way to change the Ctrl+V command in OpenOfficedotorg Calc to paste unformatted text?

Asked by: Guest | Views: 272
Total answers/comments: 1
Guest [Entry]

"Autohotkey!

^+v::
bak = %clipboard%
clipboard = %bak%
Send ^v
return

That would replace Control-Shift-V with an ""unformatted"" paste, globally.

If you wanted it OOo Calc only, you'd do something like:

#IfWinActive, ahk_class [something]
^v::
bak = %clipboard%
clipboard = %bak%
Send ^v
return
#IfWinActive

Where [something] is the window's Class name, which you could easily find out with AHK's bundled Window Spy. (This one would actually replace Control-V (^ means control, + means shift), but doing that systemwide is a bad idea)"