]> git.draconx.ca Git - vimconf.git/commitdiff
Remove ftplugin/gob.vim.
authorNick Bowler <nbowler@draconx.ca>
Thu, 3 May 2012 00:37:19 +0000 (20:37 -0400)
committerNick Bowler <nbowler@draconx.ca>
Tue, 29 Aug 2017 01:26:37 +0000 (21:26 -0400)
I have no idea what this is for, but it breaks my normal mode commands.
Syntax highlighting still works without it, so I don't think it'll be
missed.

ftplugin/gob.vim [deleted file]

diff --git a/ftplugin/gob.vim b/ftplugin/gob.vim
deleted file mode 100644 (file)
index 92919a3..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-" Vim filetype plugin file
-" Language:     GObject Builder (gob)
-" Maintainer:  Ding-Yi Chen <dchen at redhat.com>
-" Modified from cpp.vim
-" Last Change:  2008 Feb 21
-
-
-" Only do this when not done yet for this buffer
-if exists("b:did_ftplugin")
-  finish
-endif
-
-" Behaves just like C
-runtime! ftplugin/c.vim ftplugin/c_*.vim ftplugin/c/*.vim
-
-" Let the matchit plugin know what items can be matched.
-
-runtime! macros/matchit.vim
-if exists("loaded_matchit")
-    let b:match_ignorecase = 0
-    let b:match_words =
-                \ '\<public\>:\<protected\>:\<private\>:\<signal\>:\<virtual\>:\<override\>'
-    " Ignore ":syntax region" commands, the 'end' argument clobbers if-endif
-    let b:match_skip = 'getline(".") =~ "^\\s*sy\\%[ntax]\\s\\+region" ||
-                \ synIDattr(synID(line("."),col("."),1),"name") =~? "comment\\|string"'
-endif