" " copy_linebreak.vim: Bind user-defined key sequences to toggle a group of " options that make text wrapped with 'wrap' copy-paste friendly. " " Author: Tom Ryder " License: Same as Vim itself " if exists('loaded_copy_linebreak') || &compatible || v:version < 700 finish endif let loaded_copy_linebreak = 1 " Provide mappings to the functions just defined nnoremap \ (CopyLinebreakEnable) \ :call copy_linebreak#Enable() nnoremap \ (CopyLinebreakDisable) \ :call copy_linebreak#Disable() nnoremap \ (CopyLinebreakToggle) \ :call copy_linebreak#Toggle()