সরল সমাধান
টাইপ করুন :setfiletype
(পরে একটি স্থান সহ) , তারপরে চাপুন Ctrl-d
।
:help cmdline-completion
ভিএম এর কমান্ড লাইনে স্বতঃপূরণ সম্পর্কে আরও দেখুন ।
জটিল সমাধান
এই সমাধানটি 'runtimepath'
সমস্ত উপলভ্য সিনট্যাক্স ডিরেক্টরিগুলি পেতে বিকল্পটি ব্যবহার করে এবং তারপরে তাদের এক্সটেনশনগুলি সরিয়ে সেই ডিরেক্টরিগুলিতে ভিমস্ক্রিপ্ট ফাইলগুলির একটি তালিকা এনে দেয়। এটি করার নিরাপদ উপায় এটি নাও হতে পারে, সুতরাং উন্নতিগুলি স্বাগত:
function! GetFiletypes()
" Get a list of all the runtime directories by taking the value of that
" option and splitting it using a comma as the separator.
let rtps = split(&runtimepath, ",")
" This will be the list of filetypes that the function returns
let filetypes = []
" Loop through each individual item in the list of runtime paths
for rtp in rtps
let syntax_dir = rtp . "/syntax"
" Check to see if there is a syntax directory in this runtimepath.
if (isdirectory(syntax_dir))
" Loop through each vimscript file in the syntax directory
for syntax_file in split(glob(syntax_dir . "/*.vim"), "\n")
" Add this file to the filetypes list with its everything
" except its name removed.
call add(filetypes, fnamemodify(syntax_file, ":t:r"))
endfor
endif
endfor
" This removes any duplicates and returns the resulting list.
" NOTE: This might not be the best way to do this, suggestions are welcome.
return uniq(sort(filetypes))
endfunction
তারপরে আপনি এই ফাংশনটি যেভাবে চান ব্যবহার করতে পারবেন যেমন তালিকার সমস্ত মান মুদ্রণ করা। আপনি এটি যেমন সম্পন্ন করতে পারে:
for f in GetFiletypes() | echo f | endfor
নোট করুন যে এটি সম্ভবত বেশ খানিকটা কম্প্যাক্ট করা যেতে পারে, পঠনযোগ্যতার জন্য এটি ঠিক এটি। আমি এখানে ব্যবহৃত প্রতিটি ফাংশন এবং কমান্ড ব্যাখ্যা করব না, তবে এখানে তাদের জন্য সমস্ত সহায়ক পৃষ্ঠা রয়েছে:
:help 'runtimepath'
:help :let
:help :let-&
:help split()
:help :for
:help expr-.
:help :if
:help isdirectory()
:help glob()
:help fnamemodify()
:help add()
:help uniq()
:help sort()
:setfiletype
(অর্থাত্Tab
কোনও স্থানের পরে)। এটি সম্পূর্ণ তালিকা কিনা বা কিছু বাফার / ফাইলে কীভাবে এটি ক্যাপচার করবেন তা নিশ্চিত নন।