Skip to content

Commit

Permalink
Alaways use native vim syntax, fixes #582
Browse files Browse the repository at this point in the history
  • Loading branch information
sheerun committed Oct 14, 2020
1 parent e95c5f4 commit 3ac0dd5
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 1,206 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ On top of all language packs from [vim repository](https://github.com/vim/vim/tr
- [vbnet](https://github.com/vim-scripts/vbnet.vim)
- [vcl](https://github.com/smerrill/vcl-vim-plugin)
- [velocity](https://github.com/lepture/vim-velocity)
- [vim](https://github.com/neovim/neovim/tree/master/runtime)
- [vue](https://github.com/posva/vim-vue)
- [xdc](https://github.com/amal-khailtash/vim-xdc-syntax)
- [xml](https://github.com/amadeus/vim-xml)
Expand Down
110 changes: 0 additions & 110 deletions ftplugin/vim.vim

This file was deleted.

108 changes: 0 additions & 108 deletions indent/vim.vim

This file was deleted.

2 changes: 0 additions & 2 deletions packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5154,8 +5154,6 @@ filetypes:
- pattern: "*.vhdl_[0-9]*"
---
name: vim
remote: neovim/neovim:runtime
glob: "**/vim.vim"
filetypes:
- name: vim
patterns:
Expand Down
5 changes: 4 additions & 1 deletion scripts/build
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ def copy_file(package, src, dest)
end

def download(packages)
packages.map { |p| p["remote"] or raise "No remote for: " + p["name"] }.uniq.each_slice(20) do |remotes|
packages.map { |p| p["remote"] }.compact.uniq.each_slice(20) do |remotes|
remotes.map do |remote|
Thread.new do
repo, branch, path, dir = parse_remote(remote)
Expand Down Expand Up @@ -488,6 +488,9 @@ def extract(packages)

output = []
packages.map do |package|
if !package["remote"]
next
end
repo, branch, path, dir = parse_remote(package["remote"])
dirs = package.fetch("dirs", default_dirs)
ignored_dirs = package.fetch("ignored_dirs", [])
Expand Down
Loading

0 comments on commit 3ac0dd5

Please sign in to comment.