> Is there any way to get the name of the current colorscheme
> used in a vim script???
if the scheme is properly written it has a line assigning its
name to the global variable 'colors_name', for example:
let g:colors_name = "biogoo"
so you can query and use that
hth,
sc
if the scheme is properly written it has a line assigning its
On Thursday 15 October 2009, Pablo Giménez wrote:
> Is there any way to get the name of the current colorscheme
> used in a vim script???
name to the global variable 'colors_name', for example:
let g:colors_name = "biogoo"
so you can query and use that
hth,
sc