summaryrefslogtreecommitdiff
path: root/uvim/runtime/ftplugin/hog.vim
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-03 22:21:25 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-04 00:23:03 +0300
commit2eae5db069dc171f74cd863487655f6a88e5384d (patch)
tree2d9d05e09978a2a44acbfbb8d651f240df3ca052 /uvim/runtime/ftplugin/hog.vim
parent473d922faed49241a5d29d9e37dc4819cd512006 (diff)
downloadProject-Tick-2eae5db069dc171f74cd863487655f6a88e5384d.tar.gz
Project-Tick-2eae5db069dc171f74cd863487655f6a88e5384d.zip
NOISSUE rebrand vim to MNV's not Vim
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'uvim/runtime/ftplugin/hog.vim')
-rw-r--r--uvim/runtime/ftplugin/hog.vim40
1 files changed, 0 insertions, 40 deletions
diff --git a/uvim/runtime/ftplugin/hog.vim b/uvim/runtime/ftplugin/hog.vim
deleted file mode 100644
index 61714f2db9..0000000000
--- a/uvim/runtime/ftplugin/hog.vim
+++ /dev/null
@@ -1,40 +0,0 @@
-" Vim filetype plugin
-" Language: hog (snort.conf)
-" Maintainer: . Victor Roemer, <vroemer@badsec.org>.
-" Last Change: Mar 1, 2013
-" 2025 Dec 03 by Vim Project: set undo_ftplugin correctly #18727
-
-if exists("b:did_ftplugin")
- finish
-endif
-let b:did_ftplugin = 1
-
-let b:undo_ftplugin = "setl fo< com< cms< def< inc<"
-
-let s:cpo_save = &cpo
-set cpo&vim
-
-setlocal formatoptions=croq
-setlocal comments=:#
-setlocal commentstring=\c#\ %s
-setlocal define=\c^\s\{-}var
-setlocal include=\c^\s\{-}include
-
-" Move around configurations
-let s:hog_keyword_match = '\c^\s*\<\(preprocessor\\|config\\|output\\|include\\|ipvar\\|portvar\\|var\\|dynamicpreprocessor\\|' .
- \ 'dynamicengine\\|dynamicdetection\\|activate\\|alert\\|drop\\|block\\|dynamic\\|log\\|pass\\|reject\\|sdrop\\|sblock\)\>'
-
-exec "nnoremap <buffer><silent> ]] :call search('" . s:hog_keyword_match . "', 'W' )<CR>"
-exec "nnoremap <buffer><silent> [[ :call search('" . s:hog_keyword_match . "', 'bW' )<CR>"
-
-if exists("loaded_matchit")
- let b:match_words =
- \ '^\s*\<\%(preprocessor\|config\|output\|include\|ipvar\|portvar' .
- \ '\|var\|dynamicpreprocessor\|dynamicengine\|dynamicdetection' .
- \ '\|activate\|alert\|drop\|block\|dynamic\|log\|pass\|reject' .
- \ '\|sdrop\|sblock\>\):$,\::\,:;'
- let b:match_skip = 'r:\\.\{-}$\|^\s*#.\{-}$\|^\s*$'
-endif
-
-let &cpo = s:cpo_save
-unlet s:cpo_save