On 2010-03-24, lmhelp2 wrote:
> Hi again :) ,
> 
> I forgot I had a little additional question (sorry):
> how can I view "Vim"'s "parameters" current values
> like: what are the current values for the "enc" and "fenc" parameters?
> I use my ".vimrc" to set some of these parameters but where can I see 
> all the implicit or default values of all the parameters I do not deal with
> directly?
> In a file? With a command?

To see the values of particular options, such as 'enc' and 'fenc',

    :set enc?
    :set fenc?

To see the values of all options whose values are different from the
default values,

    :set

To see the values of all options except terminal options,

    :set all

or organized by topic,

    :options

For more on this, see

    :help set-option
    :help :options

HTH,
Gary


-- 
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

To unsubscribe from this group, send email to 
vim_use+unsubscribegooglegroups.com or reply to this email with the words 
"REMOVE ME" as the subject.

Reply via email to