Open Side Menu Go to the Top
Register
What's your Editor of choice? What's your Editor of choice?

04-12-2011 , 05:54 PM
Quote:
Originally Posted by Ankimo
coders idle on freenode

kiddiez idle on efnet

I idle on both

on another note, work is finally giving me a mbp. Unlikely I'll get the cheap bastards to pay for much software so I may just make an attempt to migrate to vim thanks to this thread.

anyone recommend macvim instead?
I was only on quakenet (for gamers ldo)
What's your Editor of choice? Quote
04-12-2011 , 08:39 PM
Not on quakenet, but on efnet #quake forever back in the day. Man, that seems like eons ago.
What's your Editor of choice? Quote
04-14-2011 , 07:51 AM
dunno if it's been mentioned but i'm really liking Scite editor ATM and works awesome with AHK.
What's your Editor of choice? Quote
04-16-2011 , 11:52 AM
Some vi, but mostly use emacs. I tried eclipse; then wrote a plug-in "EditDetour" that lets me escape to emacs while working in eclipse.
What's your Editor of choice? Quote
04-18-2011 , 10:32 AM
+1 for zenburn
What's your Editor of choice? Quote
04-18-2011 , 10:07 PM
I use VIM for everything, VIM plugins for my browser, any IDE I use must have a vim plugin. Vim all the way, haha.
What's your Editor of choice? Quote
04-19-2011 , 03:51 AM
I think its important to realise that vim on its own is pretty useless... but vim with the relevant plugins to your dev environment is all you will ever need.
What's your Editor of choice? Quote
04-19-2011 , 05:33 AM
Quote:
Originally Posted by MrWooster
I think its important to realise that vim on its own is pretty useless...
Uh, no. Why would a top-notch editor be useless on its own?
What's your Editor of choice? Quote
04-19-2011 , 05:43 AM
That might have been a poor choice of words.... I was trying to make the point that its the plugins for vim that really make it into the super editor it is (the same could also be said for emacs)
What's your Editor of choice? Quote
04-19-2011 , 08:39 AM
I'd disagree. I'd say its the modal editing that really makes it so great. I often use the default install on servers at work to regex the hell out of config files, etc...

Learning vim has saved me countless hours.
What's your Editor of choice? Quote
04-19-2011 , 08:51 AM
I have one custom function to complete words with tab, except when I obviously want to indent but that's it.

Code:
inoremap <Tab> <C-R>=SmartTab()<CR>

function! SmartTab()
	if strpart( getline( '.' ), 0, col( '.' ) - 1 ) =~ '^\s*$'
		return "\<Tab>"
	else
		return "\<C-P>"
	endif
endfunction
So yeah, I'm not sure that plugins are the key for Vim. Certainly not in my experiences.
What's your Editor of choice? Quote
04-19-2011 , 09:32 AM
I use Supertab http://www.vim.org/scripts/script.php?script_id=1643 , it works out the best completion method automatically... this is one of the plugins I use the most.
What's your Editor of choice? Quote
04-19-2011 , 11:09 AM
Thanks. I'll have to read about that one.

What I'm using I pulled from KDE a bajillion years ago.
What's your Editor of choice? Quote
04-21-2011 , 03:45 AM
I was thinking about giving vim another shot. Was bored so I looked for a few color schemes.

http://www.vi-improved.org/colors.php

This site appears to be awesome.
What's your Editor of choice? Quote
04-21-2011 , 09:45 AM
Quote:
Originally Posted by Shoe Lace
I was thinking about giving vim another shot. Was bored so I looked for a few color schemes.

http://www.vi-improved.org/colors.php

This site appears to be awesome.
There is a lot of good, free vim information available online these days as it has made quite the comeback in the past few years. To get started I'd highly recommend The Semi-Official IBM developerWorks Cheat Sheet
What's your Editor of choice? Quote
04-21-2011 , 11:42 AM
I use all of the following editors on a nearly daily basis

WingIDE Professional:
I use this for all python work. Nicest python IDE imo ($$$ though). Has vim and emacs key bindings, an excellent debugger (you can even debug django templates), awesome call tips and intellisense. Can blast out code significantly quicker than in emacs with Wing especially when dealing with a large library like Wx.

Emacs:
Emacs is my main non-python editor for writing other stuff (C, HTML, LaTex, notes, love poems etc). Spend a lot of time in here.

vim:
Making quick edits to files/scripts from the command line, editing files over SSH etc. I'm comfortable with vim but far from a power user. I do enjoy watching Vim ninjas work

Excel VBA IDE
Day job at a major hospital

Last edited by Neko; 04-21-2011 at 11:49 AM.
What's your Editor of choice? Quote
04-21-2011 , 01:26 PM
Quote:
Originally Posted by Neko

WingIDE Professional:
I use this for all python work. Nicest python IDE imo ($$$ though). Has vim and emacs key bindings, an excellent debugger (you can even debug django templates), awesome call tips and intellisense. Can blast out code significantly quicker than in emacs with Wing especially when dealing with a large library like Wx.
Hmm.. This looks interesting, particularly the GAE integration. Looks like it could save me some trips to the docs.
What's your Editor of choice? Quote
04-21-2011 , 01:32 PM
Quote:
Excel VBA IDE
What's your Editor of choice? Quote
04-21-2011 , 01:41 PM
I remember the VBA IDE and the fact that you had to install a plugin to get it to recognize the scroll wheel on the mouse. Those were dark times.
What's your Editor of choice? Quote
04-21-2011 , 01:55 PM
Quote:
Originally Posted by Johnny Douglas
Hmm.. This looks interesting, particularly the GAE integration. Looks like it could save me some trips to the docs.
PyCharm looks like it offers the same set of features for a fraction of the price, especially so now that its on sale for 50% off. I've used their ruby equivalent and reSharper and can say they are both well worth the money.
What's your Editor of choice? Quote
04-21-2011 , 05:55 PM
It seems like you need to be some type of wizard to get vim's color schemes to work properly. Any advice? I've been Googling like a maniac with no luck.

The problem is, no matter what theme I use the background in vim is never white and the other colors seem to be off too. If I do a set background=light within vim it does not change it.

I'm using Putty with the default settings (Windows 7) to login to my dev box (Gentoo). Vim is version 7.3 and I installed it by doing a default "emerge app-service/vim".

My $TERM variable is set to xterm but I also tried putty-256 (I think this was it, I Googled it a while ago).
What's your Editor of choice? Quote
04-21-2011 , 08:38 PM
I wrote my own color set for vim ages ago.

The line that gets a white background in gvim is this

highlight Normal guifg=#000000 guibg=#ffffff

If you're in the console I don't know that offhand.
What's your Editor of choice? Quote
04-21-2011 , 08:55 PM
That has no effect on my screen at all. If I type this:

:highlight Normal ctermfg=grey ctermbg=darkblue

Then it does what it should do but it won't accept hex values for the color and some of the pre-existing color schemes that ship with vim use a combination of both ctermfg/guifg and guibg/ctermbg.

Zzz, it seems like the gui prefix is used for gvim only and cterm is for using vim through a terminal. Is there no way to let Vim know that Putty is capable of handling any color? (I assume it can because you can setup RGB values in the color settings of Putty).

Last edited by Shoe Lace; 04-21-2011 at 09:04 PM.
What's your Editor of choice? Quote
04-21-2011 , 09:08 PM
Do you have your TERM set to something like xterm-256color?
What's your Editor of choice? Quote
04-21-2011 , 09:15 PM
It's set to xterm in Putty and also when logged into the server it says xterm when I echo $TERM.
What's your Editor of choice? Quote

      
m