From 225fd98b50d45788d771cc89a5863369ea3f5fe5 Mon Sep 17 00:00:00 2001 From: syl20bnr Date: Tue, 9 Dec 2014 23:42:36 -0500 Subject: [PATCH] Remove `s` in send to REPL commands for ESS according to the new convention --- contrib/lang/ess/README.md | 20 ++++++++++---------- contrib/lang/ess/packages.el | 20 ++++++++++---------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/contrib/lang/ess/README.md b/contrib/lang/ess/README.md index a2b253b82..325a85eb0 100644 --- a/contrib/lang/ess/README.md +++ b/contrib/lang/ess/README.md @@ -26,16 +26,16 @@ Send code to inferior process commands: Key Binding | Description ------------------|------------------------------------------------------------ -` m s b` | send buffer and keep code buffer focused -` m s B` | send buffer and switch to REPL in insert mode -` m s d` | send region or line and step (debug) -` m s D` | send function or paragraph and step (debug) -` m s l` | send line and keep code buffer focused -` m s L` | send line and switch to REPL in insert mode -` m s r` | send region and keep code buffer focused -` m s R` | send region and switch to REPL in insert mode -` m s t` | send function and keep code buffer focused -` m s T` | send function and switch to REPL in insert mode +` m b` | send buffer and keep code buffer focused +` m B` | send buffer and switch to REPL in insert mode +` m d` | send region or line and step (debug) +` m D` | send function or paragraph and step (debug) +` m l` | send line and keep code buffer focused +` m L` | send line and switch to REPL in insert mode +` m r` | send region and keep code buffer focused +` m R` | send region and switch to REPL in insert mode +` m t` | send thing at point (function) and keep code buffer focused +` m T` | send thing at point (function) and switch to REPL in insert mode `CTRL+j` | next item in REPL history `CTRL+k` | previous item in REPL history diff --git a/contrib/lang/ess/packages.el b/contrib/lang/ess/packages.el index 29829c9fc..ba3b10ce9 100644 --- a/contrib/lang/ess/packages.el +++ b/contrib/lang/ess/packages.el @@ -30,16 +30,16 @@ which require an initialization must be listed explicitly in the list.") (evil-leader/set-key-for-mode 'ess-mode "mi" 'R "mp" 'ess-R-object-popup - "msB" 'ess-eval-buffer-and-go - "msb" 'ess-eval-buffer - "msD" 'ess-eval-function-or-paragraph-and-step - "msd" 'ess-eval-region-or-line-and-step - "msF" 'ess-eval-function-and-go - "msf" 'ess-eval-function - "msL" 'ess-eval-line-and-go - "msl" 'ess-eval-line - "msR" 'ess-eval-region-and-go - "msr" 'ess-eval-region + "mB" 'ess-eval-buffer-and-go + "mb" 'ess-eval-buffer + "mD" 'ess-eval-function-or-paragraph-and-step + "md" 'ess-eval-region-or-line-and-step + "mL" 'ess-eval-line-and-go + "ml" 'ess-eval-line + "mR" 'ess-eval-region-and-go + "mr" 'ess-eval-region + "mT" 'ess-eval-function-and-go + "mt" 'ess-eval-function "mvp" 'ess-R-dv-pprint "mvt" 'ess-R-dv-ctable )