diff options
| author | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-03 22:21:25 +0300 |
|---|---|---|
| committer | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-04 00:23:03 +0300 |
| commit | 2eae5db069dc171f74cd863487655f6a88e5384d (patch) | |
| tree | 2d9d05e09978a2a44acbfbb8d651f240df3ca052 /uvim/runtime/ftplugin/hare.vim | |
| parent | 473d922faed49241a5d29d9e37dc4819cd512006 (diff) | |
| download | Project-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/hare.vim')
| -rw-r--r-- | uvim/runtime/ftplugin/hare.vim | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/uvim/runtime/ftplugin/hare.vim b/uvim/runtime/ftplugin/hare.vim deleted file mode 100644 index ebd7fbdcc3..0000000000 --- a/uvim/runtime/ftplugin/hare.vim +++ /dev/null @@ -1,51 +0,0 @@ -vim9script - -# Vim filetype plugin. -# Language: Hare -# Maintainer: Amelia Clarke <selene@perilune.dev> -# Last Change: 2026 Jan 24 -# Upstream: https://git.sr.ht/~sircmpwn/hare.vim - -if exists('b:did_ftplugin') - finish -endif -b:did_ftplugin = 1 - -# Use the Hare compiler. -compiler hare -b:undo_ftplugin = 'compiler make' - -# Formatting settings. -setlocal comments=:// -setlocal commentstring=//\ %s -setlocal formatlistpat=^\\s*-\\s\\+ -setlocal formatoptions+=croqnlj/ formatoptions-=t -b:undo_ftplugin ..= ' | setl cms< com< flp< fo<' - -# Locate Hare modules. -&l:include = '\v^\s*use\s+%(\h\w*\s*\=)?' -&l:includeexpr = 'trim(v:fname, ":", 2)->substitute("::", "/", "g")' -setlocal isfname+=: -&l:path = ',,' .. hare#GetPath() -b:undo_ftplugin ..= ' | setl inc< inex< isf< pa<' - -# Follow the official style guide by default. -if get(g:, 'hare_recommended_style', 1) - setlocal noexpandtab - setlocal shiftwidth=8 - setlocal softtabstop=0 - setlocal tabstop=8 - setlocal textwidth=80 - b:undo_ftplugin ..= ' | setl et< sts< sw< ts< tw<' -endif - -# Highlight incorrect whitespace outside of insert mode. -if get(g:, 'hare_space_error', 1) - augroup HareSpaceError - autocmd! - autocmd InsertEnter * hi link hareSpaceError NONE - autocmd InsertLeave * hi link hareSpaceError Error - augroup END -endif - -# vim: et sts=2 sw=2 ts=8 tw=80 |
