Skip to content

Commit

Permalink
Version 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jalvesaq committed Mar 24, 2016
1 parent 20cad6c commit 4f8f996
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 7 deletions.
10 changes: 8 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,20 @@
###########################################################

PLUGINHOME=`pwd`
PLUGINVERSION=0.9.2
PLUGINVERSION=0.9.3
PLUGINRELEASEDATE=`date +"%Y-%m-%d"`

ifeq (, $(shell which nvim))
VIMEXEC=vim
else
VIMEXEC=nvim
endif

vimball:
# Update the version date in doc/Nvim-R.txt header and in the news
sed -i -e "s/^Version: [0-9].[0-9].[0-9].[0-9]/Version: $(PLUGINVERSION)/" doc/Nvim-R.txt
sed -i -e "s/^$(PLUGINVERSION) (201[0-9]-[0-9][0-9]-[0-9][0-9])$$/$(PLUGINVERSION) ($(PLUGINRELEASEDATE))/" doc/Nvim-R.txt
nvim -c "%MkVimball Nvim-R ." -c "q" list_for_vimball
$(VIMEXEC) -c "%MkVimball Nvim-R ." -c "q" list_for_vimball
mv Nvim-R.vmb /tmp

clean:
Expand Down
2 changes: 1 addition & 1 deletion R/common_global.vim
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@ function WaitNvimcomStart()
endif

if g:R_tmux_split
" Environment variables persists across Tmux windows.
" Environment variables persist across Tmux windows.
" Unset NVIMR_TMPDIR to avoid nvimcom loading its C library
" when R was not started by Neovim:
call system("tmux set-environment -u NVIMR_TMPDIR")
Expand Down
12 changes: 8 additions & 4 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.2
Version: 0.9.3
For Neovim >= 0.1.2 and Vim >= 7.4.1579

1. Overview |Nvim-R-overview|
Expand Down Expand Up @@ -121,8 +121,8 @@ Before installing the plugin, you should install its dependencies:

- On Windows, you have to install Rtools to be able to build the package:
https://cran.r-project.org/bin/windows/Rtools/
If you can't install Rtools, you may want to install the windows binary
`nvimcom.zip` released with Nvim-R:
If you can't install Rtools, you may want to install the latest Windows
binary `nvimcom.zip` released with Nvim-R:
https://github.com/jalvesaq/Nvim-R/releases

- The Nvim-R plugin sets the environment variable `R_DEFAULT_PACKAGES`,
Expand Down Expand Up @@ -1694,7 +1694,7 @@ text editors which allow users to jump from a specific line in the text editor
to the corresponding line in the PDF viewer and vice-versa. The Nvim-R
has support for the SyncTeX systems of five applications:

Linux: Evince, Zathura and Okular
Linux: Zathura, Evince and Okular
OS X: Skim
Windows: SumatraPDF

Expand Down Expand Up @@ -2668,6 +2668,10 @@ step-by-step procedure to run Nvim-R remotely:
10. News~


0.9.3 (2016-03-23)

* Build nvimcom even when Nvim-R directory in non-writable.

0.9.2 (2016-03-19)

* Support Vim.
Expand Down

0 comments on commit 4f8f996

Please sign in to comment.