Skip to content

Commit

Permalink
Version 100917
Browse files Browse the repository at this point in the history
* Changed the use of vimrplugin_r_path: now the option includes only the directory part of the path.
* Initial support to Conque Shell plugin. Thanks to "il_principe orange" for suggesting the use of Conque Shell, "ZyX-I" for writing the initial code to use Conque Shell, and Nico Raffo for writing the plugin and additional code to integrate both plugins.
* New options: vimrplugin_conqueplugin and vimrplugin_conquevsplit, vimrplugin_r_args.
* Initial support for Vim-R communication on Windows using Python.
* Fixed bug when the plugin was installed in a directory other than ~/.vim (thanks to Tom Link).
  • Loading branch information
jalvesaq authored and vim-scripts committed Nov 7, 2010
1 parent b9e62ef commit b52c7fd
Show file tree
Hide file tree
Showing 37 changed files with 1,499 additions and 1,001 deletions.
10 changes: 3 additions & 7 deletions autoload/rcomplete.vim
@@ -1,7 +1,7 @@
" Vim completion script
" Language: R
" Maintainer: Jakson Alves de Aquino <jalvesaq@gmail.com>
" Last Change: Sun Jul 18, 2010 12:52AM
" Last Change: Fri Aug 27, 2010 11:30PM
"

fun! rcomplete#CompleteR(findstart, base)
Expand All @@ -21,12 +21,8 @@ fun! rcomplete#CompleteR(findstart, base)
if strlen(a:base) == 0
return res
endif
if has("gui_win32")
let flines = b:flines1
else
let flines2 = readfile(b:romnilistfile)
let flines = b:flines1 + flines2
endif
let flines2 = readfile(b:globalenvlistfile)
let flines = b:flines1 + flines2
" The char '$' at the end of 'a:base' is treated as end of line, and
" the pattern is never found in 'line'.
let newbase = '^' . substitute(a:base, "\\$$", "", "")
Expand Down
Binary file added bitmaps/RClear.bmp
Binary file not shown.
File renamed without changes
Binary file added bitmaps/RClearAll.bmp
Binary file not shown.
File renamed without changes
Binary file added bitmaps/RClose.bmp
Binary file not shown.
Binary file added bitmaps/RClose.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bitmaps/RListSpace.bmp
Binary file not shown.
File renamed without changes
Binary file added bitmaps/RSendBlock.bmp
Binary file not shown.
File renamed without changes
Binary file added bitmaps/RSendFile.bmp
Binary file not shown.
File renamed without changes
Binary file added bitmaps/RSendFunction.bmp
Binary file not shown.
File renamed without changes
Binary file added bitmaps/RSendLine.bmp
Binary file not shown.
File renamed without changes
Binary file added bitmaps/RSendParagraph.bmp
Binary file not shown.
File renamed without changes
Binary file added bitmaps/RSendSelection.bmp
Binary file not shown.
File renamed without changes
Binary file added bitmaps/RStart.bmp
Binary file not shown.
Binary file added bitmaps/RStart.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
160 changes: 0 additions & 160 deletions bitmaps/r-close.xpm

This file was deleted.

181 changes: 0 additions & 181 deletions bitmaps/r-start.xpm

This file was deleted.

0 comments on commit b52c7fd

Please sign in to comment.