Skip to content

Commit

Permalink
Version 0.9.17
Browse files Browse the repository at this point in the history
  • Loading branch information
jalvesaq committed Sep 29, 2022
1 parent fcd0a80 commit d747df1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions R/nvimcom/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: nvimcom
Version: 0.9-132
Date: 2022-08-15
Version: 0.9-133
Date: 2022-09-29
Title: Intermediate the Communication Between R and Either Neovim or Vim
Author: Jakson Aquino
Maintainer: Jakson Alves de Aquino <[email protected]>
Expand Down
17 changes: 9 additions & 8 deletions doc/Nvim-R.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Authors: Jakson A. Aquino <[email protected]>
Jose Claudio Faria <[email protected]>

Version: 0.9.16
Version: 0.9.17
For Neovim >= 0.5.0 and Vim >= 8.2.84

1. Overview |Nvim-R-overview|
Expand Down Expand Up @@ -2151,8 +2151,7 @@ Python code when the cursor is within a Python chunk:
https://github.com/davidhalter/jedi-vim

Lines of Python code are sent to R Console as arguments to
`reticulate::py_run_string()`. Hence, you must send to R the command
`library(reticulate)` before sending lines of Python code.
`reticulate::py_run_string()`.


How to disable~
Expand Down Expand Up @@ -2294,7 +2293,6 @@ not want this, put in your |vimrc|:
The highlighted debugged line incrementally moves down the buffer with code
execution and, with long scripts, it may stay at the bottom of the buffer as you
debug. You can hold the highlighted line in the middle of the buffer with

>
let R_debug_center = 1
<
Expand Down Expand Up @@ -2350,11 +2348,11 @@ a language server) for omni completion, set in your |vimrc| the value of
`CompleteR` as the function for omni completion. Example with the default
value:
>
let R_set_omnifunc = ["r", "rmd", "rnoweb", "rhelp", "rrst"]
let R_set_omnifunc = ["r", "rmd", "quarto", "rnoweb", "rhelp", "rrst"]
<
Similarly, you can define what files will get Nvim-R's auto omni completion:
>
let R_auto_omni = ["r", "rmd", "rnoweb", "rhelp", "rrst"]
let R_auto_omni = ["r", "rnoweb", "rhelp"]
<
You should use empty lists if you do not want to use Nvim-R's omni completion
in any file type:
Expand Down Expand Up @@ -2466,8 +2464,9 @@ Note: The current knitr package (version 1.7) has at least two limitations:

*R_term_title*
If running Gnome Shell on Wayland, you have to install the extension "Activate
Window by Title" and set the title of your terminal emulator in order to have
the terminal window raised on SyncTeX backward events. Example:
Window by Title" and set the title of your terminal emulator in your |vimrc|
in order to have the terminal window raised on SyncTeX backward events.
Example:
>
let R_term_title = 'Terminal'
<
Expand Down Expand Up @@ -3238,6 +3237,8 @@ Examples:
*Nvim-R-news*
10. News~

0.9.17 (2022-09-29)

* Require either Neovim 0.5.0 or Vim 8.2.84.
* New options: R_set_omnifunc, R_auto_omni, R_rmarkdown_args,
R_objbr_auto_start, R_quarto_render_args, and R_quarto_preview_args,
Expand Down

0 comments on commit d747df1

Please sign in to comment.