mirror of
https://github.com/vim/vim.git
synced 2025-07-26 11:04:33 -04:00
runtime(ftplugin): make ft-typescript use javascript.vim
Typescript (and JavascriptReact, TypescriptReact) are just super-sets of Javascript. So to avoid duplication, we should make them source ft-javascript.
This commit is contained in:
parent
d4dbf822dc
commit
f62bec1463
@ -27,23 +27,8 @@ setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,://
|
||||
|
||||
setlocal commentstring=//\ %s
|
||||
|
||||
" Change the :browse e filter to primarily show JavaScript-related files.
|
||||
if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
|
||||
let b:browsefilter =
|
||||
\ "JavaScript Files (*.js)\t*.js\n"
|
||||
\ .. "JSX Files (*.jsx)\t*.jsx\n"
|
||||
\ .. "JavaScript Modules (*.es, *.es6, *.cjs, *.mjs, *.jsm)\t*.es;*.es6;*.cjs;*.mjs;*.jsm\n"
|
||||
\ .. "Vue Templates (*.vue)\t*.vue\n"
|
||||
\ .. "JSON Files (*.json)\t*.json\n"
|
||||
if has("win32")
|
||||
let b:browsefilter ..= "All Files (*.*)\t*\n"
|
||||
else
|
||||
let b:browsefilter ..= "All Files (*)\t*\n"
|
||||
endif
|
||||
endif
|
||||
|
||||
" The following suffixes should be implied when resolving filenames
|
||||
setlocal suffixesadd+=.js,.jsx,.es,.es6,.cjs,.mjs,.jsm,.vue,.json
|
||||
setlocal suffixesadd+=.tsx,.jsx,.ts,.d.ts,.vue,.mjs,.js,.cjs,.json
|
||||
|
||||
" The following suffixes should have low priority
|
||||
" .snap jest snapshot
|
||||
|
14
runtime/ftplugin/javascript_extra.vim
Normal file
14
runtime/ftplugin/javascript_extra.vim
Normal file
@ -0,0 +1,14 @@
|
||||
" Change the :browse e filter to primarily show JavaScript-related files.
|
||||
if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
|
||||
let b:browsefilter =
|
||||
\ "JavaScript Files (*.js)\t*.js\n"
|
||||
\ .. "JSX Files (*.jsx)\t*.jsx\n"
|
||||
\ .. "JavaScript Modules (*.es, *.es6, *.cjs, *.mjs, *.jsm)\t*.es;*.es6;*.cjs;*.mjs;*.jsm\n"
|
||||
\ .. "Vue Templates (*.vue)\t*.vue\n"
|
||||
\ .. "JSON Files (*.json)\t*.json\n"
|
||||
if has("win32")
|
||||
let b:browsefilter ..= "All Files (*.*)\t*\n"
|
||||
else
|
||||
let b:browsefilter ..= "All Files (*)\t*\n"
|
||||
endif
|
||||
endif
|
@ -4,26 +4,7 @@
|
||||
" Last Change: 2024 Jan 14
|
||||
" 2024 May 23 by Riley Bruins <ribru17@gmail.com> ('commentstring')
|
||||
|
||||
if exists("b:did_ftplugin")
|
||||
finish
|
||||
endif
|
||||
let b:did_ftplugin = 1
|
||||
|
||||
let s:cpo_save = &cpo
|
||||
set cpo-=C
|
||||
|
||||
" Set 'formatoptions' to break comment lines but not other lines,
|
||||
" and insert the comment leader when hitting <CR> or using "o".
|
||||
setlocal formatoptions-=t formatoptions+=croql
|
||||
|
||||
" Set 'comments' to format dashed lists in comments.
|
||||
setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,://
|
||||
|
||||
setlocal commentstring=//\ %s
|
||||
|
||||
setlocal suffixesadd+=.ts,.d.ts,.tsx,.js,.jsx,.cjs,.mjs
|
||||
|
||||
let b:undo_ftplugin = "setl fo< com< cms< sua<"
|
||||
runtime! ftplugin/javascript.vim
|
||||
|
||||
" Change the :browse e filter to primarily show TypeScript-related files.
|
||||
if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
|
||||
@ -40,6 +21,3 @@ if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
|
||||
endif
|
||||
let b:undo_ftplugin .= " | unlet! b:browsefilter"
|
||||
endif
|
||||
|
||||
let &cpo = s:cpo_save
|
||||
unlet s:cpo_save
|
||||
|
Loading…
x
Reference in New Issue
Block a user