summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2020-12-23 19:43:22 -0500
committerKyle Meyer <kyle@kyleam.com>2020-12-24 00:25:22 -0500
commit5b7727428bcb0c4b79bb766097c7936cee98a5bb (patch)
tree584ca8afac46ee1b2ee501cb04c3990e649d7a4f
parenta14008e68fa886242c29a6fcb802315c1bf5d1e4 (diff)
downloademacs.d-5b7727428bcb0c4b79bb766097c7936cee98a5bb.tar.gz
km-ess: Drop km/ess-insert-dplyr-pipe
It uses variables that are now marked as obsolete, and I haven't used this in a while, so it's not worth updating until I need it.
-rw-r--r--lisp/km-ess.el14
1 files changed, 0 insertions, 14 deletions
diff --git a/lisp/km-ess.el b/lisp/km-ess.el
index 2cfa3de..bba660e 100644
--- a/lisp/km-ess.el
+++ b/lisp/km-ess.el
@@ -20,9 +20,7 @@
;;; Code:
-(require 'ess-comp)
(require 'ess-inf)
-(require 'ess-s-l)
;;;###autoload
(defun km/ess-eval-buffer-up-to-line ()
@@ -30,17 +28,5 @@
(interactive)
(ess-eval-region (point-min) (line-end-position) nil))
-(defvar km/ess-dplry-pipe-key "|")
-
-;;;###autoload
-(defun km/ess-insert-dplyr-pipe ()
- "Insert `km/ess-dplry-pipe' using `ess-smart-S-assign'.
-Based on instructions in `ess-smart-S-assign-key', I didn't think
-this would work, but it seems to so far."
- (interactive)
- (let ((ess-S-assign " %>% ")
- (ess-smart-S-assign-key km/ess-dplry-pipe-key))
- (call-interactively #'ess-smart-S-assign)))
-
(provide 'km-ess)
;;; km-ess.el ends here