summaryrefslogtreecommitdiff
path: root/.vim/autoload/omni/cpp/settings.vim
diff options
context:
space:
mode:
authorRené Neumann <rene.neumann@in.tum.de>2012-09-04 16:20:28 +0200
committerRené Neumann <rene.neumann@in.tum.de>2012-09-04 16:20:29 +0200
commit9d8238cef09d8cb7c270b616ec56a335e0ac0854 (patch)
treea7857c65ec06a48dd575d604539d331a90c01463 /.vim/autoload/omni/cpp/settings.vim
parent08ae3f83268783edd51dd97a749c088007f7fea4 (diff)
downloaddotfiles-9d8238cef09d8cb7c270b616ec56a335e0ac0854.tar.gz
dotfiles-9d8238cef09d8cb7c270b616ec56a335e0ac0854.tar.bz2
dotfiles-9d8238cef09d8cb7c270b616ec56a335e0ac0854.zip
Move to bundles in vim -- also remove old craft
Diffstat (limited to '.vim/autoload/omni/cpp/settings.vim')
-rw-r--r--.vim/autoload/omni/cpp/settings.vim96
1 files changed, 0 insertions, 96 deletions
diff --git a/.vim/autoload/omni/cpp/settings.vim b/.vim/autoload/omni/cpp/settings.vim
deleted file mode 100644
index 6683d3a..0000000
--- a/.vim/autoload/omni/cpp/settings.vim
+++ /dev/null
@@ -1,96 +0,0 @@
-" Description: Omni completion script for cpp files
-" Maintainer: Vissale NEANG
-" Last Change: 26 sept. 2007
-
-function! omni#cpp#settings#Init()
- " Global scope search on/off
- " 0 = disabled
- " 1 = enabled
- if !exists('g:OmniCpp_GlobalScopeSearch')
- let g:OmniCpp_GlobalScopeSearch = 1
- endif
-
- " Sets the namespace search method
- " 0 = disabled
- " 1 = search namespaces in the current file
- " 2 = search namespaces in the current file and included files
- if !exists('g:OmniCpp_NamespaceSearch')
- let g:OmniCpp_NamespaceSearch = 1
- endif
-
- " Set the class scope completion mode
- " 0 = auto
- " 1 = show all members (static, public, protected and private)
- if !exists('g:OmniCpp_DisplayMode')
- let g:OmniCpp_DisplayMode = 0
- endif
-
- " Set if the scope is displayed in the abbr column of the popup
- " 0 = no
- " 1 = yes
- if !exists('g:OmniCpp_ShowScopeInAbbr')
- let g:OmniCpp_ShowScopeInAbbr = 0
- endif
-
- " Set if the function prototype is displayed in the abbr column of the popup
- " 0 = no
- " 1 = yes
- if !exists('g:OmniCpp_ShowPrototypeInAbbr')
- let g:OmniCpp_ShowPrototypeInAbbr = 0
- endif
-
- " Set if the access (+,#,-) is displayed
- " 0 = no
- " 1 = yes
- if !exists('g:OmniCpp_ShowAccess')
- let g:OmniCpp_ShowAccess = 1
- endif
-
- " Set the list of default namespaces
- " eg: ['std']
- if !exists('g:OmniCpp_DefaultNamespaces')
- let g:OmniCpp_DefaultNamespaces = []
- endif
-
- " Set MayComplete to '.'
- " 0 = disabled
- " 1 = enabled
- " default = 1
- if !exists('g:OmniCpp_MayCompleteDot')
- let g:OmniCpp_MayCompleteDot = 1
- endif
-
- " Set MayComplete to '->'
- " 0 = disabled
- " 1 = enabled
- " default = 1
- if !exists('g:OmniCpp_MayCompleteArrow')
- let g:OmniCpp_MayCompleteArrow = 1
- endif
-
- " Set MayComplete to dot
- " 0 = disabled
- " 1 = enabled
- " default = 0
- if !exists('g:OmniCpp_MayCompleteScope')
- let g:OmniCpp_MayCompleteScope = 0
- endif
-
- " When completeopt does not contain longest option, this setting
- " controls the behaviour of the popup menu selection when starting the completion
- " 0 = don't select first item
- " 1 = select first item (inserting it to the text)
- " 2 = select first item (without inserting it to the text)
- " default = 0
- if !exists('g:OmniCpp_SelectFirstItem')
- let g:OmniCpp_SelectFirstItem= 0
- endif
-
- " Use local search function for variable definitions
- " 0 = use standard vim search function
- " 1 = use local search function
- " default = 0
- if !exists('g:OmniCpp_LocalSearchDecl')
- let g:OmniCpp_LocalSearchDecl= 0
- endif
-endfunc