blob: 5c07088adb76dfd26df1361cc254f64d48e8a22b [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
Doug Kearns93197fd2024-01-14 20:59:02 +01006" 2024 Jan 14 by Vim Project (browsefilter)
dkearnse30d8e42023-09-18 02:51:22 +10007
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")
Doug Kearns93197fd2024-01-14 20:59:02 +010027 let b:browsefilter = "Kotlin Source Files (*.kt, *kts)\t*.kt;*.kts\n"
28 if has("win32")
29 let b:browsefilter .= "All Files (*.*)\t*\n"
30 else
31 let b:browsefilter .= "All Files (*)\t*\n"
32 endif
dkearnse30d8e42023-09-18 02:51:22 +100033 let b:undo_ftplugin .= " | unlet! b:browsefilter"
34endif
35
36let &cpo = s:save_cpo
37unlet s:save_cpo