blob: 9a0b29e0caeda5865c168ae2136a7742581146c1 [file] [log] [blame]
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00001" Vim filetype plugin file
Bram Moolenaar207f0092020-08-30 17:20:20 +02002" Language: Javascript
3" Maintainer: Doug Kearns <dougkearns@gmail.com>
4" Last Change: 2020 Jun 23
5" Contributor: Romain Lafourcade <romainlafourcade@gmail.com>
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00006
7if exists("b:did_ftplugin")
Bram Moolenaar207f0092020-08-30 17:20:20 +02008 finish
Bram Moolenaar1ef15e32006-02-01 21:56:25 +00009endif
10let b:did_ftplugin = 1
11
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000012let s:cpo_save = &cpo
13set cpo-=C
14
15" Set 'formatoptions' to break comment lines but not other lines,
Bram Moolenaar207f0092020-08-30 17:20:20 +020016" and insert the comment leader when hitting <CR> or using "o".
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000017setlocal formatoptions-=t formatoptions+=croql
18
19" Set completion with CTRL-X CTRL-O to autoloaded function.
Bram Moolenaar1ef15e32006-02-01 21:56:25 +000020if exists('&ofu')
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000021 setlocal omnifunc=javascriptcomplete#CompleteJS
Bram Moolenaar1ef15e32006-02-01 21:56:25 +000022endif
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000023
24" Set 'comments' to format dashed lists in comments.
25setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,://
26
27setlocal commentstring=//%s
28
Bram Moolenaar207f0092020-08-30 17:20:20 +020029" Change the :browse e filter to primarily show JavaScript-related files.
30if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
31 let b:browsefilter =
32 \ "JavaScript Files (*.js)\t*.js\n"
33 \ .. "JSX Files (*.jsx)\t*.jsx\n"
34 \ .. "JavaScript Modules (*.es, *.es6, *.cjs, *.mjs, *.jsm)\t*.es;*.es6;*.cjs;*.mjs;*.jsm\n"
35 \ .. "Vue Templates (*.vue)\t*.vue\n"
36 \ .. "JSON Files (*.json)\t*.json\n"
37 \ .. "All Files (*.*)\t*.*\n"
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000038endif
Bram Moolenaar207f0092020-08-30 17:20:20 +020039
40" The following suffixes should be implied when resolving filenames
41setlocal suffixesadd+=.js,.jsx,.es,.es6,.cjs,.mjs,.jsm,.vue,.json
42
43" The following suffixes should have low priority
44" .snap jest snapshot
45setlocal suffixes+=.snap
46
47" Remove irrelevant part of 'path'.
48" User is expected to augment it with contextually-relevant paths
49setlocal path-=/usr/include
50
51" Matchit configuration
52if exists("loaded_matchit")
53 let b:match_ignorecase = 0
54 let b:match_words =
55 \ '\<do\>:\<while\>,'
56 \ .. '<\@<=\([^ \t>/]\+\)\%(\s\+[^>]*\%([^/]>\|$\)\|>\|$\):<\@<=/\1>,'
57 \ .. '<\@<=\%([^ \t>/]\+\)\%(\s\+[^/>]*\|$\):/>'
58endif
59
60" Set 'define' to a comprehensive value
61let &l:define =
62 \ '\(^\s*(*async\s\+function\|(*function\)'
63 \ .. '\|^\s*\(\*\|static\|async\|get\|set\|\i\+\.\)'
64 \ .. '\|^\s*\(\ze\i\+\)\(([^)]*).*{$\|\s*[:=,]\)'
65 \ .. '\|^\s*\(export\s\+\|export\s\+default\s\+\)*\(var\|let\|const\|function\|class\)'
66 \ .. '\|\<as\>'
67
68let b:undo_ftplugin =
69 \ "setl fo< ofu< com< cms< sua< su< def< pa<"
70 \ .. "| unlet! b:browsefilter b:match_ignorecase b:match_words"
Bram Moolenaarc81e5e72007-05-05 18:24:42 +000071
72let &cpo = s:cpo_save
73unlet s:cpo_save
Bram Moolenaar207f0092020-08-30 17:20:20 +020074
75" vim: textwidth=78 tabstop=8 shiftwidth=4 softtabstop=4 expandtab