mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
updated for version 7.1b
This commit is contained in:
@@ -1,16 +1,17 @@
|
|||||||
" Vim filetype plugin file
|
" Vim filetype plugin file
|
||||||
" Language: CSS
|
" Language: CSS
|
||||||
" Maintainer: Nikolai Weibull <now@bitwi.se>
|
" Maintainer: Nikolai Weibull <now@bitwi.se>
|
||||||
" Latest Revision: 2006-04-19
|
" Latest Revision: 2007-05-08
|
||||||
|
|
||||||
if exists("b:did_ftplugin")
|
if exists("b:did_ftplugin")
|
||||||
finish
|
finish
|
||||||
endif
|
endif
|
||||||
let b:did_ftplugin = 1
|
let b:did_ftplugin = 1
|
||||||
|
|
||||||
let b:undo_ftplugin = "setl com< cms< inc< fo<"
|
let b:undo_ftplugin = "setl com< cms< inc< fo< ofu<"
|
||||||
|
|
||||||
setlocal comments=s1:/*,mb:*,ex:*/ commentstring&
|
setlocal comments=s1:/*,mb:*,ex:*/ commentstring&
|
||||||
setlocal formatoptions-=t formatoptions+=croql
|
setlocal formatoptions-=t formatoptions+=croql
|
||||||
|
setlocal omnifunc=csscomplete#CompleteCSS
|
||||||
|
|
||||||
let &l:include = '^\s*@import\s\+\%(url(\)\='
|
let &l:include = '^\s*@import\s\+\%(url(\)\='
|
||||||
|
@@ -54,7 +54,7 @@ CCommands::~CCommands ()
|
|||||||
void CCommands::SetApplicationObject (IApplication * pApplication)
|
void CCommands::SetApplicationObject (IApplication * pApplication)
|
||||||
{
|
{
|
||||||
// This function assumes pApplication has already been AddRef'd
|
// This function assumes pApplication has already been AddRef'd
|
||||||
// for us, which CDSAddIn did in its QueryInterface call
|
// for us, which CDSAddIn did in it's QueryInterface call
|
||||||
// just before it called us.
|
// just before it called us.
|
||||||
m_pApplication = pApplication;
|
m_pApplication = pApplication;
|
||||||
if (! m_pApplication)
|
if (! m_pApplication)
|
||||||
@@ -494,8 +494,9 @@ static BOOL VimOpenFile (BSTR& FileName, long LineNr)
|
|||||||
{
|
{
|
||||||
|
|
||||||
// OLE automation object for com. with Vim
|
// OLE automation object for com. with Vim
|
||||||
// When the object goes out of scope, it's desctructor destroys the OLE connection;
|
// When the object goes out of scope, it's destructor destroys the OLE
|
||||||
// This is imortant to avoid blocking the object
|
// connection;
|
||||||
|
// This is important to avoid blocking the object
|
||||||
// (in this memory corruption would be likely when terminating Vim
|
// (in this memory corruption would be likely when terminating Vim
|
||||||
// while still running DevStudio).
|
// while still running DevStudio).
|
||||||
// So keep this object local!
|
// So keep this object local!
|
||||||
|
Reference in New Issue
Block a user