Brian
Fri Mar 02 18:18:05 CST 2007
TDM wrote:
> "Brian Wolven" <brian.wolven@domain.invalid> wrote in message
> news:%23YODqCSXHHA.528@TK2MSFTNGP03.phx.gbl...
>> TDM wrote:
>>> "Jennifer" <J.Evans.1970@gmail.com> wrote in message
>>> news:1172612513.409864.178130@j27g2000cwj.googlegroups.com...
>>>> Does anyone know of a VB Script Editor/Debugger that is similar to
>>>> VBSEdit? I purchased VBSEdit and it crashed. I can't get their tech
>>>> people to respond to emails and I'm ready to move on to something else.
>>>>
>>> OK, I will be the first to vote for VIM(
http://www.vim.org), and likely the
>>> last.
>>>
>>> I tried a free trial of PrimalScript and found that it did not offer me
>>> enough gains
>>> to pony up the doe. I guess I have never really has issues with debugging
>>> scripts
>>> and the editor with PrimalScript does not even come close to VIM.
>> I'm also a long time vi/VIM user, but I'm always looking for new tweaks. Do
>> you have any suggestions for settings, keymappings, syntax hilighting, etc.
>> that you've found particularly helpful for editing scripts?
>
> Sorry, I keep things pretty simple. Here is my _vimrc file.
>
> :colorscheme darkblue
> :syntax on
> :set guifont=lucida_console
> :set columns=132
> :set lines=80
> :set tabstop=4
Well, I kind of like that alternate color scheme, so your post was still helpful. =)
My newly modified _vimrc - with keys configured to switch between the default
and darkblue schemes, depending on my mood - looks like this:
colorscheme darkblue
set nocompatible " must be first
set autoindent
set wrap
set shiftwidth=2
set ignorecase
set ruler
behave xterm
set selectmode=mouse
set guifont=Lucida_Console:h9
set guioptions=egmrLt
set comments=:;---\ ,:;\ ,:'\ ,:'---\ ,:--,:;\
set history=25
set hlsearch
map <F5> :set hls!<bar>set hls?<CR>
:map <F6> :if exists("syntax_on") <Bar>
\ syntax off <Bar>
\ else <Bar>
\ syntax enable <Bar>
\ endif <CR> <CR>
:syntax enable
map <F7> :colorscheme default<CR>
map <F8> :colorscheme darkblue<CR>