From bbdc7a543670085fd52dc2d2d2fe18c2ad83793d Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Sun, 13 Apr 2014 23:54:33 -0700 Subject: [PATCH] remote-os-copy -> smart-copy; now copies to remote host if sshed. --- init.el | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/init.el b/init.el index b9db0676..b378c353 100644 --- a/init.el +++ b/init.el @@ -105,13 +105,9 @@ ((string= (car shorter) (car longer)) (list-diff (cdr shorter) (cdr longer))) (t (throw 'error "longer does not match shorter")))) -(defun remote-os-copy (&optional b e) - (interactive "r") - (shell-command-on-region b e "source ~/.zshrc; cat | linux_nc_paste_to_remote_clipboard")) - (defun os-copy (&optional b e) (interactive "r") - (shell-command-on-region b e "pbcopy")) + (shell-command-on-region b e "source ~/.zshrc; cat | smart_copy")) ;; ============================================================================= ;; tmux @@ -187,7 +183,7 @@ (global-set-key (kbd "C-c t") 'testify-run-test) (global-set-key (kbd "C-c C-o") 'testify-run-case) (global-set-key (kbd "C-c w") 'tmux-copy) -(global-set-key (kbd "C-c e") 'remote-os-copy) +(global-set-key (kbd "C-c e") 'os-copy) (global-set-key (kbd "C-x O") (lambda () (interactive) (other-window -1))) (global-set-key (kbd "C-c t") 'testify-run-test) (global-set-key (kbd "C-c C-t") 'testify-run-case)