Displaying 20 results from an estimated 5000 matches similar to: "Vim-R-plugin now works on Windows too"
2009 Oct 05
4
Vim-R-plugin (new version)
Dear R users,
The author of Tinn-R (Jose Claudio Faria) now is co-author of
Vim-R-plugin2, a plugin that makes it possible to send commands
from the Vim text editor to R. We added many new key bindings,
restructured the menu and created new Tool Bar buttons. The new
version is available at:
http://www.vim.org/scripts/script.php?script_id=2628
NOTES:
(1) Some old key binding changed,
2009 May 08
2
Vim R plugin-2
Dear R users,
People who uses vim in Linux/Unix may be interested in checking the
plugin for R that I'm developing:
http://www.vim.org/scripts/script.php?script_id=2628
The plugin includes omni completion for R objects, code indentation
and communication with R running in a terminal emulator (xterm or
gnome-terminal). This last feature was already present in Johannes
Ranke's plugin.
2009 Sep 15
1
comma as decimal separator in xtable
Hello,
How can I make xtable print a comma as decimal separator? Setting
the option OutDec isn't enough for xtable:
library(xtable)
options(OutDec = ",")
x <- c(1.1, 1.2, 1.3)
y <- c(2.3, 2.2, 2.1)
d <- data.frame(x, y)
d
print(xtable(d))
Thanks!
Jakson Aquino
2009 Aug 06
5
Is there a 'vi' mode in R?
Hi,
I'm wondering if R provide a vi mode in the command line just like
other shells such as bash do. Can somebody let me know?
Regards,
Peng
2011 Jun 18
1
Vim-R-Plugin issue : Python interface must be enabled to run Vim-R-Plugin
I am trying to get the
Vim-R-Plugin<http://www.vim.org/scripts/script.php?script_id=2628> to
work with gvim and R on Windows 7.
When I open a .R file in VIM, it complains and says ""Python interface must
be enabled to run Vim-R-Plugin." I have installed pywin32 for python 2.7,
and added the following 4 lines to my _vimrc per the instructions
2011 Nov 25
0
New package 'colorout' to colorize R output on terminal emulators
Dear R Community,
I'm pleased to announce the availability of 'colorout' on CRAN.
The package colorizes R output when it is running on a terminal
emulator.
Screenshot: http://www.lepem.ufc.br/jaa/R_color_output.png
You can use either 16 colors (8 colors * 2 degrees of intensity)
or 256 colors to highlight normal text, numbers, strings,
warnings, errors and the keywords TRUE, FALSE,
2011 Nov 25
0
New package 'colorout' to colorize R output on terminal emulators
Dear R Community,
I'm pleased to announce the availability of 'colorout' on CRAN.
The package colorizes R output when it is running on a terminal
emulator.
Screenshot: http://www.lepem.ufc.br/jaa/R_color_output.png
You can use either 16 colors (8 colors * 2 degrees of intensity)
or 256 colors to highlight normal text, numbers, strings,
warnings, errors and the keywords TRUE, FALSE,
2013 Feb 28
2
[LLVMdev] Propose to use rest.vim for vimrc of LLVM
Hello list,
I use LLVM's vimrc and found that this setting below is useful when
editing of reStructuredText file.
llvm/utils/vim/vimrc
" Enable syntax highlighting for reStructuredText files. To use, copy
" rest.vim (http://www.vim.org/scripts/script.php?script_id=973)
" to ~/.vim/syntax .
augroup filetype
au! BufRead,BufNewFile *.rst set filetype=rest
augroup END
2013 Feb 28
0
[LLVMdev] Propose to use rest.vim for vimrc of LLVM
Thanks, Journeyer. I applied the patch with r176235.
In future, you can submit patches to the llvm-commits mailing list. :)
-bw
On Feb 27, 2013, at 9:03 PM, Journeyer J. Joh <oosaprogrammer at gmail.com> wrote:
> Hello list,
>
> I use LLVM's vimrc and found that this setting below is useful when
> editing of reStructuredText file.
>
>
> llvm/utils/vim/vimrc
2012 Dec 15
1
Could Rstd_Busy do something (src/unix/sys-std.c)?
Currently the function Rstd_Busy() does nothing (src/unix/sys-std.c):
void attribute_hidden Rstd_Busy(int which)
{
}
The function is called through a pointer and R interfaces can change
this pointer and, thus, use a different function. I don't plan to
create a whole new interface to R, but I maintain a package whose aim
is to provide a new feature to R when it's running in a
2009 Sep 26
0
Function source: desired characteristics
Hi,
We've been calling the function "source" (package base) from Tinn-R editor to
send files, marked blocks and selections to R interpreter because it avoids a
lot of problems related with input/output synchronization in the Rgui output.
The new RGedit plugin is also using this function in this way.
We (Jakson Aquino and I) are just finishing a new version of a plug in to Vim
2012 Dec 06
0
base package: extra new line at source() function
Hi,
When we do source("file.R", echo = TRUE) the output on R Console
includes an extra new line between each line of code. The extra "\n"
is added on line 201 of src/library/base/R/source.R (please, see
attached patch). I tested the function without this "\n" on an
terminal emulator in Linux and on R Console in Windows RGui. I don't
know if the "\n" is
2011 Nov 17
0
new package: colorout (Colorize R output on terminal emulator)
Hello,
Two days ago I posted a patch to R source code to colorize its output
when running it in a terminal emulator (Linux or other Unix with
support to ANSI escape codes).
I converted the patch into an R package, and people interested in
testing it should do the following:
1) Download and install:
wget http://www.lepem.ufc.br/jaa/colorout_0.1.tar.gz
R CMD INSTALL colorout_0.1.tar.gz
2) Run R
2009 May 31
1
Bug in gmodels CrossTable()?
Is the code below showing a bug in Crosstable()? My expectation was that
the values produced by xtabs were rounded instead of truncated:
library(gmodels)
abc <- c("a", "a", "b", "b", "c", "c")
def <- c("d", "e", "f", "f", "d", "e")
wgt <- c(0.8, 0.6, 0.4, 0.5, 1.4, 1.3)
2009 May 13
0
rubytest.vim 0.9.5 released
Hi guys,
I''m pleased to announce that rubytest.vim 0.9.5 is just released.
Rubytest.vim is a vim (http://www.vim.org) plugin, which helps you to
run many kinds of ruby test (including vanilla test, rspec, shoulda etc.)
in vim.
Changelog
---------
+ Support quickfix: display test errors/warnings in vim quickfix window,
jump to the place where error raised in source
2011 Jan 05
0
Vim plugin for outlining Markdown
Hello,
VOoM is a plugin for Vim that emulates two-pane outliner:
http://www.vim.org/scripts/script.php?script_id=2657
The most recent version has support for Markdown. Command
:Voom markdown
creates outline from Markdown headers.
Both underline-style and hashes-style headers are supported.
There is screenshot at
http://vim-voom.webs.com/index.html#rest
It's for reST, but it looks and
2017 Sep 01
0
patch: automatically adjust width option when terminal is resized
Accidentally dropped R-devel from this reply.
On Fri, 1 Sep 2017, luke-tierney at uiowa.edu wrote:
> On Fri, 1 Sep 2017, Ralf Goertz wrote:
>
>> Am Fri, 1 Sep 2017 07:20:58 -0500 (CDT)
>> schrieb luke-tierney at uiowa.edu:
>>
>>> On Fri, 1 Sep 2017, Ralf Goertz wrote:
>>>
>>>> Many good programs like vim adjust their internal width
2009 Jun 15
0
Rubytest.vim 0.9.6 Released
Hi dude,
Rubytest.vim 0.9.6 is just released. This version contains some small
fix:
* support rspec examples looks like
example "this is an example" do
* correctly handle single/double quote escape for rspec examples and
vanilla testcases
Check it out here: http://www.vim.org/scripts/script.php?script_id=2612
Best,
Jan
--
jan=callcc{|jan|jan};jan.call(jan)
2009 Jun 08
0
SMACOF joint configuration plot with bread data? (Michael Kubovy)
Hi Michael,
with res.uc$conf you'll get the single configurations for each rater.
You can use these to produce the plot you want to have.
Best,
Patrick
r-help-request at r-project.org wrote:
> Send R-help mailing list submissions to
> r-help at r-project.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> https://stat.ethz.ch/mailman/listinfo/r-help
>
2010 Dec 16
4
editor for MacOS
Dear friends - I'm using Tinn-R in Windows and find it OK. My son is
running MacOS and is just starting using R and I know nothing about
MacOS and R but we seem to have difficulties in finding something
similar to Tinn for MaC. What are your suggestions?
Thanks a lot!
Troels Ring, MD
Aalborg, Denmark