On 9/25/06, Daniel Nogradi <[EMAIL PROTECTED]> wrote:
Hi vimmers,
I guess it's a simple thing but couldn't find a definite answer yet.
Is there a way to make commands such as
syn off
set foldmethod=expr
local in a sense that they should only effect the window in which they
are issued?
1. Frist, 'set foldmethod=' is already local to window, so there's no problem.
2. 'syn off' is global, but if you, instead of 'syn off' do 'set filetype='
(set filetype to empty), which is window-local, you'll get equivalent result.
Does this work for you ?
Yakov