Hai Friends,
Is there any separate editor for ruby?
If it is there Please you could tell to me.
where I can getting the package,I am RedHat EL4 version OS.
how i am going to install that package.I heard that one separate editor
is there.
I am not sure,with that I have asking to you.
Please tell me.
Hai Friends,
Is there any separate editor for ruby?
If it is there Please you could tell to me.
where I can getting the package,I am RedHat EL4 version OS.
how i am going to install that package.I heard that one separate editor
is there.
I am not sure,with that I have asking to you.
Please tell me.
Hai Friends,
Is there any separate editor for ruby?
If it is there Please you could tell to me.
where I can getting the package,I am RedHat EL4 version OS.
how i am going to install that package.I heard that one separate editor
is there.
I am not sure,with that I have asking to you.
Please tell me.
by
Vellingiri.
$ vim myfile.rb
Dear Friend,
Other that that vi,emacs,vim,is there any editor is there.
This is a very frequently asked question and there are many options available. Your best bet is probably to search the archives for the last big thread.
Alex Gutteridge
Bioinformatics Center
Kyoto University
···
On 20 Sep 2007, at 17:25, Vellingiri Arul wrote:
7stud -- wrote:
Vellingiri Arul wrote:
Hai Friends,
Is there any separate editor for ruby?
If it is there Please you could tell to me.
where I can getting the package,I am RedHat EL4 version OS.
how i am going to install that package.I heard that one separate editor
is there.
I am not sure,with that I have asking to you.
Please tell me.
by
Vellingiri.
$ vim myfile.rb
Dear Friend,
Other that that vi,emacs,vim,is there any editor is there.
--
Posted via http://www.ruby-forum.com/\.
Why would you want a _separate_ editor program in the first place? Do
you know any example of such an editor suitable exclusively for some
other programming language? Can you estimate how much time/effort
would it take to develop a working editor for every new programming
language?
I use GNU Emacs with ruby-mode and I'm pretty happy with it. Please
no holy wars...
···
On Sep 20, 11:25 am, Vellingiri Arul <hariharan....@rediffmail.com> wrote:
7stud -- wrote:
> $ vim myfile.rb
Dear Friend,
Other that that vi,emacs,vim,is there any editor is there.
Hai Friends,
Is there any separate editor for ruby?
If it is there Please you could tell to me.
where I can getting the package,I am RedHat EL4 version OS.
how i am going to install that package.I heard that one separate editor
is there.
I am not sure,with that I have asking to you.
Please tell me.
by
Vellingiri.
$ vim myfile.rb
Dear Friend,
Other that that vi,emacs,vim,is there any editor is there.
--
Posted via http://www.ruby-forum.com/\.
Good starting point:
Personally I suggest Vim/Emacs for people likely to need a GOOD editor, edit a
lot of textual files, or use different programming languages and not want to
learn a different editor per language.
KATE is a very good editor and very easy to use/learn -- I'm clueless to any
Gnome equivalent.
TerryP.
···
--
Email and shopping with the feelgood factor!
55% of income to good causes. http://www.ippimail.com
Vellingiri Arul wrote:
> 7stud -- wrote:
>> Vellingiri Arul wrote:
>>> Hai Friends,
>>> Is there any separate editor for ruby?
>>> If it is there Please you could tell to me.
>>> where I can getting the package,I am RedHat EL4 version OS.
>>> how i am going to install that package.I heard that one separate editor
>>> is there.
>>> I am not sure,with that I have asking to you.
>>> Please tell me.
>>> by
>>> Vellingiri.
>> $ vim myfile.rb
> Dear Friend,
> Other that that vi,emacs,vim,is there any editor is there.
> --
> Posted viahttp://www.ruby-forum.com/.
Personally I suggest Vim/Emacs for people likely to need a GOOD editor, edit a
lot of textual files, or use different programming languages and not want to
learn a different editor per language.
KATE is a very good editor and very easy to use/learn -- I'm clueless to any
Gnome equivalent.
TerryP.
--
Email and shopping with the feelgood factor!
55% of income to good causes.http://www.ippimail.com
···
On Sep 24, 6:38 pm, "Terry Poulin" <bigbos...@ippimail.com> wrote:
---------------------------------------------------------
I am very happy with Komodo 4.2.
It helps me work with Ruby and Ruby on rails easily.
Personally I suggest Vim/Emacs for people likely to need a GOOD editor,
edit a
lot of textual files, or use different programming languages and not
want to
learn a different editor per language.
Ok, you sound like you might know vim pretty well. Is there a way to
copy text from another file into the file you are editing? I can send
text from the file I am editing to another file, but I want to do the
reverse.
Currently, I know how to mark and copy text in a file I am editing, say
ruby1.rb, then I can type
:set other.rb
and paste what I copied into other.rb. What I want to be able to do is
while editing ruby1.rb, open other.rb, mark and copy some lines from
other.rb, and then paste the lines into ruby1.rb.
Currently, I know how to mark and copy text in a file I am editing, say ruby1.rb, then I can type
:set other.rb
Whoops. That should be:
:split other.rb
and paste what I copied into other.rb.
Then I type:
:w
:q
to save the text to other.rb, which closes other.rb and lets me continue editing ruby1.rb.
What I want to be able to do is while editing ruby1.rb, open other.rb, mark and copy some lines from other.rb, and then paste the lines into ruby1.rb.
Doesn't this only differ in which window has focus while you're marking and pasting? Unless I'm missing something, you:
1. gvim ruby1.rb
2. :split other.rb
3. mark the region in other.rb
4. y
5. C-w l to switch back to ruby1.rb
6. p :w
Which is exactly what you just described, with other.rb and ruby1.rb switched in steps 3 and 5. Did I miss something?