blob: b21de603ea22cb954341a39da7b8ed73f4ec63c2 [file] [log] [blame]
dkearnse30d8e42023-09-18 02:51:22 +10001" Vim filetype plugin file
2" Language: Kotlin
3" Maintainer: Alexander Udalov
4" URL: https://github.com/udalov/kotlin-vim
5" Last Change: 7 November 2021
6" 2023 Sep 17 by Vim Project (browsefilter)
7
8if exists('b:did_ftplugin') | finish | endif
9let b:did_ftplugin = 1
10
11let s:save_cpo = &cpo
12set cpo&vim
13
14setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,://
15setlocal commentstring=//\ %s
16
17setlocal formatoptions-=t formatoptions+=croqnl
18silent! setlocal formatoptions+=j
19
20setlocal includeexpr=substitute(v:fname,'\\.','/','g')
21setlocal suffixesadd=.kt
22
23let b:undo_ftplugin = "setlocal comments< commentstring< ".
24 \ "formatoptions< includeexpr< suffixesadd<"
25
26if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
27 let b:browsefilter = "Kotlin Source Files (*.kt, *kts)\t*.kt;*.kts\n" .
28 \ "All Files (*.*)\t*.*\n"
29 let b:undo_ftplugin .= " | unlet! b:browsefilter"
30endif
31
32let &cpo = s:save_cpo
33unlet s:save_cpo